Re: [Gimp-user] editing an open image with python in interactive (console) mode

2006-11-11 Thread xes garcia
Note I said gimp.image_list(), not pdb['gimp-image-list'](). There is a difference. -Yosh yes that's it. it worked tx a lot. ___ Gimp-user mailing list Gimp-user@lists.XCF.Berkeley.EDU https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

Re: [Gimp-user] editing an open image with python in interactive (console) mode

2006-11-10 Thread David Gowers
gimp.image_list() returns a list of images that are open. If your installation of gimp does not do this, it is broken.I usually usei = gimp.image_list()[0], to get the most recently opened image. On 11/11/06, xes garcia <[EMAIL PROTECTED]> wrote: > gimp.image_list() will return a list of Image obje

Re: [Gimp-user] editing an open image with python in interactive (console) mode

2006-11-10 Thread xes garcia
gimp.image_list() will return a list of Image objects for all the images GIMP knows about. -Yosh yes I tried that but didnt work this only lists the number of images opened with gimp but not the image objects. at least I don't know how to make it work this way __

Re: [Gimp-user] editing an open image with python in interactive (console) mode

2006-11-10 Thread Manish Singh
On Sat, Nov 11, 2006 at 02:00:38AM +0100, xes garcia wrote: > hi all > I'm starting with python gimp related stuff > i want to edit an open image with python console > I've checked existing scripts and all of them are functions that are > first declared and then registered in gimp's plugin reposit

[Gimp-user] editing an open image with python in interactive (console) mode

2006-11-10 Thread xes garcia
hi all I'm starting with python gimp related stuff i want to edit an open image with python console I've checked existing scripts and all of them are functions that are first declared and then registered in gimp's plugin repository in order to execute them but I want to edit an open image using