[Gimp-user] python plug-ins not getting loaded

2009-04-03 Thread Steven Howe
-in in the procedure browser. Then perhaps just a clarification question. What's the difference between a procedure and a plug-in? I've noted that some (if not all) python scripts, in the /usr/lib/gimp/2.0/plug-ins can be found under procedure browser not the plug-in browser. Steven Howe

[Gimp-user] Computing percent area of color in a picture

2009-03-30 Thread Steven Howe
area covered by a color on a layer? Thanks, Steven Howe ___ Gimp-user mailing list Gimp-user@lists.XCF.Berkeley.EDU https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

[Gimp-user] Can Gimp calculate area of a color?

2009-03-25 Thread Steven Howe
Howdy, I'm making a mosaic. I've used gimp to strip out extraneous background artifacts posterize the picture down to a sixteen colors. separated the colors onto different layers. Now I'd like to know either by area (cm, or inch) or percentage of the picture each of the colors (so I can figure

[Gimp-user] Waited All day to respond to my rant's responses.

2007-04-05 Thread Steven Howe
. Access to trip menu items, maybe even with presets; open/close files/displays of images passed in on the command string; documentation of undocumented features. Rant reply over. Steven Howe ___ Gimp-user mailing list Gimp-user

Re: [Gimp-user] how to close an open window

2007-04-04 Thread Steven Howe
, Steven Howe wrote: Hello, seems at least one question a day. Close a window. How? I have the image object. What now? You can only close a window for an image you had created yourself. You tell GIMP to close displays, and the only way you get hold of a display object is creating

[Gimp-user] how to close an open window

2007-04-03 Thread Steven Howe
Hello, seems at least one question a day. Close a window. How? I have the image object. What now? Steven Howe ___ Gimp-user mailing list Gimp-user@lists.XCF.Berkeley.EDU https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

[Gimp-user] looking for examples; scriptfu or python tool/color tools/curves... functions

2007-04-02 Thread Steven Howe
Any example code (python preferred, but if I must learn script-fu ...), please send my way. Thanks, Steven Howe ___ Gimp-user mailing list Gimp-user@lists.XCF.Berkeley.EDU https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

[Gimp-user] seeking file path of open image

2007-04-02 Thread Steven Howe
' ) ... and use the *pdb.gimp_file_save()*. So the question is, how to get the full pathname for an image? Thanks for all the good an quick support. Steven Howe ___ Gimp-user mailing list Gimp-user@lists.XCF.Berkeley.EDU https://lists.XCF.Berkeley.EDU

[Gimp-user] howto trigger an existing menu item from a gimp-python script

2007-04-01 Thread Steven Howe
That about says it. At the end of an existing script, I would like to pop open an existing gimp menu item (Image/Image/Canvas Size...) and if possible prefill the width and height boxes. Thanks, Steven Howe ___ Gimp-user mailing list Gimp-user

[Gimp-user] question

2007-03-30 Thread Steven Howe
of images, list of image_ids). So, what is the method to resolve image_id to an 'image' ? Thanks, Steven Howe ___ Gimp-user mailing list Gimp-user@lists.XCF.Berkeley.EDU https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

Re: [Gimp-user] question

2007-03-30 Thread Steven Howe
Howe Manish Singh wrote: 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