Re: [Gimp-developer] Gimp Plug-in for Retrieving Text Layers

2004-12-02 Thread Sven Neumann
Hi, [EMAIL PROTECTED] writes: I am having difficulties enumerating, and identifying layers in a Gimp Plug-in. Is there a good source for code that shows how to do this? My need is to save the text information found in a Gimp document/image into another file. To do this, I need

Re: [Gimp-developer] Gimp Plug-in for Retrieving Text Layers

2004-12-02 Thread David Neary
Hi Bill, [EMAIL PROTECTED] wrote: I am having difficulties enumerating, and identifying layers in a Gimp Plug-in. Is there a good source for code that shows how to do this? Not really - the usual way is to do something like this: gint nlayers, i; gint *layers =

Re: [Gimp-developer] Gimp Plug-in for Retrieving Text Layers

2004-12-02 Thread Sven Neumann
Hi, David Neary [EMAIL PROTECTED] writes: Not really - the usual way is to do something like this: gint nlayers, i; gint *layers = gimp_image_get_layers(image_id, nlayers); /* layers[0] is the top layer */ for (i = 0; i nlayers; i++) { /* Do stuff with layers[i] */ /* layer is a

RE: [Gimp-developer] Re: 2.2 splash screen competition

2004-12-02 Thread Austin Donnelly
My favourite so far is the colourful paint pots by Metin Amiroff: http://www.gimp.org/contest/gallery.cgi?display=imagename=20041202090612748 6 Or maybe the paint tubes by Andreas Nilsson, I can't decide: http://www.gimp.org/contest/gallery.cgi?display=imagename=20041202090610747 8 I think

Re: [Gimp-developer] Re: 2.2 splash screen competition

2004-12-02 Thread Tino Schwarze
On Thu, Dec 02, 2004 at 01:49:39PM -, Austin Donnelly wrote: My favourite so far is the colourful paint pots by Metin Amiroff: http://www.gimp.org/contest/gallery.cgi?display=imagename=20041202090612748 6 Or maybe the paint tubes by Andreas Nilsson, I can't decide:

[Gimp-developer] Some tests of GIMP startup time over NFS

2004-12-02 Thread Raphaël Quinet
Hi all, On Monday, there was a brief discussion on irc about the GIMP startup time when the files are fetched over NFS. Using NFS or any other remote file system, all read/writes/stats are more expensive than from a local disk. The discussion was about what could be improved to make the GIMP

Re: [Gimp-developer] Gimp Plug-in for Retrieving Text Layers

2004-12-02 Thread David Neary
Hi, Sven Neumann wrote: OK, now I will have to kill you both. Well, perhaps not but I can only strongly discourage to do it this way. You must not rely on the text parasite and it's content. Sorry - wrote that before I got your reply :) I know you were hoping to implement text transforms

Re: [Gimp-developer] Gimp Plug-in for Retrieving Text Layers

2004-12-02 Thread Joao S. O. Bueno Calligaris
On Thursday 02 December 2004 09:50, Sven Neumann wrote: Hi, David Neary [EMAIL PROTECTED] writes: Not really - the usual way is to do something like this: gint nlayers, i; gint *layers = gimp_image_get_layers(image_id, nlayers); /* layers[0] is the top layer */ for (i = 0; i

Re: [Gimp-developer] Re: 2.2 splash screen competition

2004-12-02 Thread Carol Spears
On Thu, Dec 02, 2004 at 02:22:44AM -0800, Manish Singh wrote: This has been moved to: http://www.gimp.org/contest/contest.cgi Current submissions can be seen at: http://www.gimp.org/contest/gallery.cgi thank you for this! thank you Manish and Helvetix. are the web servers handling

Re: [Gimp-developer] Best way for limit distance

2004-12-02 Thread Joseph Heled
Thanks for the suggestion. Using Joao [EMAIL PROTECTED] lead I use for now python-fu with the numarray extension. As far as I know such speedups are something scrip-fu is not capable off, and I truly hope one day script-fu will be phased out and python-fu (or any other sane scripting language)

[Gimp-developer] writing plug-ins

2004-12-02 Thread Simbul
Hi all, I'm a student and as a university project I have to write a document about writing plug-ins in gimp (and create a plug-in as well). I already managed to discover some pieces of information scattered through the net, but it seems to me it's not enough to write a complete document. I've

Re: [Gimp-developer] Gimp Plug-in for Retrieving Text Layers

2004-12-02 Thread BillC
This is a response to the Why would you need to have the text? Well, when writing a filter to save a file, or generate a file set. Some old IBM file formats allow you to optimize your image with text objects and rules (horizontal or vertical lines). If I could determine the text content, I

Re: [Gimp-developer] Best way for limit distance

2004-12-02 Thread Øyvind Kolås
On Fri, 03 Dec 2004 10:12:37 +1300, Joseph Heled [EMAIL PROTECTED] wrote: BTW, all this was part of a small evaluation of CCD noise removal method. If you are interested, the details are in http://pages.quicksilver.net.nz/pepe/d70/Nikon_D70_on_Linux.html#ISONoise The results are quite

Re: [Gimp-developer] Best way for limit distance

2004-12-02 Thread Joseph Heled
I am using gimp-2.2-pre2. I certainly get totally different results than you for the same setting. I would appreciate some advice on how to find out how can that be, -Joseph Øyvind Kolås wrote: On Fri, 03 Dec 2004 10:12:37 +1300, Joseph Heled [EMAIL PROTECTED] wrote: BTW, all this was part of a

Re: [Gimp-developer] Best way for limit distance

2004-12-02 Thread Joseph Heled
Øyvind Kolås wrote: http://pippin.gimp.org/tmp/despeckle_adaptive_non_recursive_radius_1_black_level_0_white_level_256.png.html might be similar to what you want (note that I have run it on the jpeg version of your original.) running with a radius of 1. /pippin I was careless and did not realize

Re: [Gimp-developer] intltool 0.30 produces XML error in gimp-tips.xml

2004-12-02 Thread Brion Vibber
On Dec 1, 2004, at 5:57 AM, Sven Neumann wrote: Brion Vibber [EMAIL PROTECTED] writes: What I don't understand here is why does fink use autogen.sh at all? It doesn't; *I* do when I build Gimp from CVS to test it. OK then. I have changed the warning in autogen.sh. Hopefully it is more clear now.