[Gimp-user] question

2007-03-30 Thread Steven Howe
pdb.gimp_get_image_list() returns a list of ids, which are 32bit integers, not a list of images. I know this as I tried in a pygimp console (with two images open): ( listLen, theList) = pdb.gimp_image_list() print listLen 2 print theList (3,2) for item in theList:

Re: [Gimp-user] question

2007-03-30 Thread Manish Singh
On Fri, Mar 30, 2007 at 12:10:15PM -0700, Steven Howe wrote: pdb.gimp_get_image_list() returns a list of ids, which are 32bit integers, not a list of images. I Use gimp.image_list() instead, which returns a list of Image objects. -Yosh ___ Gimp-user

Re: [Gimp-user] question

2007-03-30 Thread Steven Howe
Thanks Manish; next question, where is the list of 'gimp' calls? the pdb didn't report this item. Under linux, In an ordinary terminal when I run python and import gimp, and type (help gimp) the process terminates with an error messgae. Is there a list of 'gimp' calls some where? Thanks Steven

Re: [Gimp-user] question

2007-03-30 Thread Joao S. O. Bueno Calligaris
On Friday 30 March 2007 16:40, Steven Howe wrote: Thanks Manish; next question, where is the list of 'gimp' calls? the pdb didn't report this item. Under linux, In an ordinary terminal when I run python and import gimp, and type (help gimp) the process terminates with an error messgae. Is