[Gimp-developer] PyGimp: letting the use pick coordinates

2009-07-06 Thread Ryan Krauss
I am using the GIMP and a Wacom tablet as a digital blackboard for a course I am teaching this summer. With Python and PyGimp, it is going really well (other than my bad hand writing made worse by the tablet - it is weird writing on the tablet and having to look to the screen to see what you have

[Gimp-developer] Creating a layer from a selection or pasting to a specified x, y coorinate

2009-07-06 Thread Ryan Krauss
OK, so following Alexia's suggestion, I am going to plan on selecting ahead of time the rectangle I want my text to paste into. The upper left corner of this selection will then be the upper left corner that I want to paste my png to. How do I do that? I thought about creating a layer the same

Re: [Gimp-developer] Improvement for measurement tool

2009-07-06 Thread Chris Mohler
On Mon, Jul 6, 2009 at 2:57 AM, Dirk Sohlergimp-developer...@kamerastars.de wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chris Mohler schrieb: | What the heck - I added it as a (very) simple plug-in: | http://registry.gimp.org/node/17235 I can’t find the menu option

Re: [Gimp-developer] Improvement for measurement tool

2009-07-06 Thread Chris Mohler
On Sun, Jul 5, 2009 at 9:42 PM, Alec Burgessbura...@gmail.com wrote: Works on Windows 2.6.6 but message is displayed in Error console (which I have as one of panels in main dock) not on the status bar. Is this somehow configurable? Note: IMO this is a feature not a bug since it allows user

Re: [Gimp-developer] Improvement for measurement tool

2009-07-06 Thread Rob Antonishen
Bug?: The entry Filters - Measurement - Path is always enabled whether or not any path exists (expected) but in Filters-Repeat Path,  Filters-Reshow Path and Filters-Recently Used-Path it always shows as Disabled (grayed out). Is this an easy fix? I see the same thing here - I'm not sure

Re: [Gimp-developer] Improvement for measurement tool

2009-07-06 Thread Chris Mohler
On Mon, Jul 6, 2009 at 12:41 PM, Rob Antonishenrob.antonis...@gmail.com wrote: Bug?: The entry Filters - Measurement - Path is always enabled whether or not any path exists (expected) but in Filters-Repeat Path,  Filters-Reshow Path and Filters-Recently Used-Path it always shows as Disabled

Re: [Gimp-developer] Creating a layer from a selection or pasting to a specified x, y coorinate

2009-07-06 Thread Ryan Krauss
OK, I think I have solved my problem. You have to know what to search for in the pdb. I think this will do what I need: pdb.gimp_layer_set_offsets There is nothing in the pdb browser for moving a layer, you have to offset it. On Mon, Jul 6, 2009 at 10:15 AM, Ryan Krauss ryanli...@gmail.com

Re: [Gimp-developer] Improvement for measurement tool

2009-07-06 Thread Sven Neumann
Hi, On Sun, 2009-07-05 at 22:42 -0400, Alec Burgess wrote: Works on Windows 2.6.6 but message is displayed in Error console (which I have as one of panels in main dock) not on the status bar. Is this somehow configurable? Note: IMO this is a feature not a bug since it allows user to change

Re: [Gimp-developer] starting out developing with python-fu

2009-07-06 Thread Sven Neumann
Hi, On Mon, 2009-07-06 at 00:47 -0400, sergio wrote: i am currently working on figuring out how python fu works by following some of the tutorials i see online.. in trying to get a simple one running, and am having problems... running listing [1], i get: Traceback (most recent call

Re: [Gimp-developer] [Gegl-developer] GEGL-0.1.0

2009-07-06 Thread Sven Neumann
Hi, On Sat, 2009-07-04 at 12:45 +0100, Øyvind Kolås wrote: GEGL 0.1.0 ⎺⎺ Congratulations to this release. Will the gegl.org web-site be updated anytime soon? Note to all users of GIMP 2.6: The gimp-2.6 releases that we have done so far will not work with GEGL 0.1.0 (or babl 0.1.0).

Re: [Gimp-developer] Improvement for measurement tool

2009-07-06 Thread Chris Mohler
On Mon, Jul 6, 2009 at 2:55 PM, Sven Neumanns...@gimp.org wrote: On Sun, 2009-07-05 at 22:42 -0400, Alec Burgess wrote: Bug?: The entry Filters - Measurement - Path is always enabled whether or not any path exists (expected) but in Filters-Repeat Path,  Filters-Reshow Path and Filters-Recently

Re: [Gimp-developer] Improvement for measurement tool

2009-07-06 Thread Chris Mohler
On Sun, Jul 5, 2009 at 9:42 PM, Alec Burgessbura...@gmail.com wrote: Whether paths are Active or not does not appear to change results - it still shows the measurement. I've updated the plug-in at the registry (http://registry.gimp.org/node/17235). If in doubt which is which, I added 'Version

Re: [Gimp-developer] Improvement for measurement tool

2009-07-06 Thread Sven Neumann
Hi, On Mon, 2009-07-06 at 16:58 -0500, Chris Mohler wrote: I had a little trouble finding docs on the named parameters (I ended up using help(gimpfu.register) in the console). I've pasted the new register() below - one thing seemed strange: the 'params' parameter seems to require that I add

Re: [Gimp-developer] Improvement for measurement tool

2009-07-06 Thread Chris Mohler
On Mon, Jul 6, 2009 at 5:19 PM, Sven Neumanns...@gimp.org wrote: Hi, On Mon, 2009-07-06 at 16:58 -0500, Chris Mohler wrote: I had a little trouble finding docs on the named parameters (I ended up using help(gimpfu.register) in the console).  I've pasted the new register() below - one thing

Re: [Gimp-developer] Improvement for measurement tool

2009-07-06 Thread Sven Neumann
Hi, On Mon, 2009-07-06 at 17:32 -0500, Chris Mohler wrote: When using the old, unnamed register() parameters, if you leave 'params' empty, the main plug-in function still receives two parameters - the current image and drawable. Using the new, named register() parameters does not seem to do

Re: [Gimp-developer] Improvement for measurement tool

2009-07-06 Thread Chris Mohler
On Mon, Jul 6, 2009 at 5:45 PM, Sven Neumanns...@gimp.org wrote: Hi, On Mon, 2009-07-06 at 17:32 -0500, Chris Mohler wrote: When using the old, unnamed register() parameters, if you leave 'params' empty, the main plug-in function still receives two parameters - the current image and