On 3/11/07, Joao S. O. Bueno Calligaris <[EMAIL PROTECTED]> wrote:

On Sunday 11 March 2007 01:25, Tony Freeman wrote:
> OK, I found this site ... I'll be studying this for a while :-)
>
> http://developer.gimp.org/plug-in-template.html

You really be better trying out pythhon scripts first.

Only if you intend to perform image processing  - like performign some
algorithm on a pixel by pixel basis you'd have some advantage
writting a plug-in in C nowadays.

The URL you did not find is:
Onm the python console, btw, start with:

from gimpfu import *


You don't need to do that, the python console does it when starting up.

img = gimp.list_images()[0]


img = gimp.image_list()[0]
is correct.
_______________________________________________
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

Reply via email to