Re: [Gimp-developer] Rotational Motion Blur

2010-08-21 Thread gg
On 08/18/10 19:09, yahvuu wrote: On 18.08.2010 12:50, g...@catking.net wrote: On 08/18/10 11:07, Tor Lillqvist wrote: A motion blur is a retinal effect that has a time dependence. Is motion blur actually something people perceive with their eyes and brain, or something that only exists in

Re: [Gimp-developer] Another set of feature-wishes regarding Guides

2010-08-21 Thread oliver
On Sat, Aug 07, 2010 at 07:07:00PM +0200, Tobias Ellinghaus wrote: Am Samstag, 7. August 2010 schrub oli...@first.in-berlin.de: Hello, 1) it is possible to make guides invisible/visible and to make them magnetic/nonmagnetic. Both features are independent, which is good for some

[Gimp-developer] Scripting-Questions

2010-08-21 Thread oliver
1) image.add-layer: how can I insert at the lowest position? 2) how can I script Fit canvas to layers? 3) gimp.* / pdb.* and so on: which names using for Python, when looking at the procedure browser? For example: i could not find out, how to call gimp-file-load-layer

Re: [Gimp-developer] Scripting-Questions

2010-08-21 Thread Jerry Baker
Hi Oliver, 1) Insert a layer at lowest position... The image.add_layer method position argument is what you need to specify. 0 places a new layer at the top, 1 would be under the first layer, 2 under the second layer, etc... image.layers give you the list of layers in the image. Use