We've added CMY (not CMYK yet) input to gimp-print. CMYK is going to prove considerably more troublesome. -- Robert Krawitz <rlk@...>...
Robert L Krawitz
rlk@...
Apr 1, 2001 7:00 pm
12898
Hi, ... Since it does not break the existing API it shouldn't hurt to include such a change. I'm however not happy about the code-duplication the patch...
Sven Neumann
sven@...
Apr 2, 2001 12:12 am
12899
Hi all, A friend of mine who uses perlfu and scriptfu a lot was complaining a little to me recently that there is no document which summarrises the API changes...
Dave Neary
dave.neary@...
Apr 2, 2001 3:45 pm
12900
I was wondering why Win32 has different data files, like brushes, and why are they no distributed like the rest of data files (in core or in extras)? Do I have...
Guillermo S. Romero /...
famrom@...
Apr 2, 2001 5:15 pm
12901
... You should probably ask tml or the gimpwin-users list about this. Zach -- xach@... Zachary Beane http://www.xach.com/ ...
Zachary Beane
xach@...
Apr 2, 2001 5:20 pm
12902
As you may know, I am working at the Dutch translation of The Gimp. In order to be able to translate standard graphics terms (like Hue/Saturation/Value) I...
Branko Collin
collin@...
Apr 2, 2001 8:56 pm
12903
... I can not tell you if you should or not, but you can read it on line, and then decide yourself if the text put in good paper is useful for you. Go to...
Guillermo S. Romero /...
famrom@...
Apr 2, 2001 9:48 pm
12904
... I don't really understand what your saying here. There are two issues you mention, which aren't terribly related: 1) the default scale factor This is...
Austin Donnelly
austin@...
Apr 3, 2001 9:38 am
12905
Hi all - I am finally getting around to updating a few plugins I wrote back in the 1.0 days. I notice that there is a "gimp-plugin-template" directory on...
Dan Pape
dpape@...
Apr 3, 2001 3:07 pm
12906
Hi, I have just moved the patch gimp-china-010306-0 into the patches directory on ftp.gimp.org (sorry that it took so long, but I have been quite busy lately)....
Sven Neumann
sven@...
Apr 4, 2001 5:05 pm
12907
... That would be nice indeed. -- Servus, Daniel _______________________________________________ Gimp-developer mailing list ...
egger@...
Apr 4, 2001 10:51 pm
12908
Hi, I don't know who's currently "responsible" for the whirl&pinch plugin, so I post my patch to this list. I have modified whirl&pinch slightly to use...
Georg Acher
acher@...
Apr 5, 2001 5:05 pm
12909
... I do not have the power to decide if it gets accepted, but if Gimp speed up in some areas is just about things like that, please, the people in charge (aka...
Guillermo S. Romero /...
famrom@...
Apr 5, 2001 5:26 pm
12910
... Nominally it's either mine or Federico's, but I don't think either of us is active in development. ... I was under the impression that whirlpinch used tile...
Kelly Martin
kmartin@...
Apr 5, 2001 5:37 pm
12911
... Hm, it does not. The issue with whirlpinch is that there's only a weak locality relationship between destionation pixels (which are iterated across the...
Kelly Martin
kmartin@...
Apr 5, 2001 5:46 pm
12912
... That is right, but destination and source for themselves have good locality (ie. the next pixel isn't 500 pixels away from the last). I have tried...
Georg Acher
acher@...
Apr 5, 2001 6:36 pm
12913
... Tiles are 64x64 by default, and changing them is a bad idea because it makes your .xcf files nontransportable. Kelly ...
Kelly Martin
kmartin@...
Apr 5, 2001 6:44 pm
12914
Hi, I just looked into bumpmap.c and tried to figure out if it can profit from blocking and played a bit with the code. It seems that there is some major ...
Georg Acher
acher@...
Apr 5, 2001 9:57 pm
12915
Hi! I hope everyone are back from CeBit, because I have a patch which I really want to be added to GIMP 1.3.x. The patch in question is named Gradient-Fu and...
Shlomi Fish
shlomif@...
Apr 6, 2001 7:06 am
12916
... Have a look at the gimp_pixel_rgns_register() and gimp_pixel_rgns_process() functions. They do similar blocking on a per-tile basis. Most plugins should...
Austin Donnelly
austin@...
Apr 6, 2001 9:46 am
12917
Oops - I missed out some vital pixel region initialisation. ... /* set up the source and dest regions */ gimp_pixel_rgn_init (&src_rgn, drawable, x, y, x_step,...
Austin Donnelly
austin@...
Apr 6, 2001 9:50 am
12918
The speedup that you see is probably mainly caused by better caching. There is a bug in the tile cache size for the plugin. The cache is under most...
Ernst Lippe
ernstl@...
Apr 6, 2001 12:56 pm
12919
I think this is yet another tile-cache problem. ... This is an important observation. ... I agree, but the current algorithm writes two rows (top and bottom)...
Ernst Lippe
ernstl@...
Apr 6, 2001 1:59 pm
12920
... I suspect this is because the libgimp tile cache is too small. Libgimp allows a plugin to ask libgimp to cache a small (or not so small, if it wants to...
Kelly Martin
kmartin@...
Apr 6, 2001 2:14 pm
12921
... For bumpmap, it is of course a tile cache problem, for whirl&pinch I'm not sure, since the performance boost differed very much on the Alpha vs. P5 vs....
Georg Acher
acher@...
Apr 6, 2001 2:18 pm
12922
... If the algorithm is pixel-by-pixel (each output pixel depends only on exactly one input pixel from each region being iterated over, and those regions are...
Kelly Martin
kmartin@...
Apr 6, 2001 2:26 pm
12923
... The sizes may be different indeed and there also an option for tiling (repeating) the bitmap. ... When the output pixel depends on neighboring pixels (e.g....
Ernst Lippe
ernstl@...
Apr 6, 2001 4:24 pm
12924
... Not on its own. However, if you iterate the output region with the pixel region iterator, and use a pixel fetcher like the one in whirlpinch for the input...
Kelly Martin
kmartin@...
Apr 6, 2001 4:38 pm
12925
... Actually, the core could do with a tile convolution, since currently it copies data into a tempbuf before convolving it. This makes some tools more...
Austin Donnelly
austin@...
Apr 7, 2001 10:34 am
12926
... What do you mean by that? ... Well, I had to put some routines in separate functions so they can be used by both the PDB functions and the GUI ones. But I...