Hi, Thanks for your interesting results. However, I'm a bit skeptical about the results. I ran your code on my computer (Pentium 2.4 GHz) and here are my...
Hi, There are some more problems with the testcase as given in that they do not do a fair comparison. This is an incomplete list of problems I found; The lower...
Hi Shifty, I guess it is the same problem that Steve reported some time ago. The titlebar switches from XP style to classic style. As I don't use a titlebar in...
Hi, I just discovered the color dode and burn modes in the blend() function are incorrect. To be precise, the math I did a few years ago to "reverse engineer"...
The formulas for Dodge and Burn are: Burn : f(a,b) = 1 - (1 - a) / b Dodge : f(a,b) = a / (1 - b) I only found out about the blend function couple of weeks...
Hi all :) Is there a way to put a few numbers (filter parameters) on the clipboard? Right now I can save them in a .ini file, but putting them on the clipboard...
Hi, I'll see that I add a function later for pasting the content of an array onto the clipboard. I already a putArrayString() function that will lets you fill...
Hi, This little problem cost me a few hours to figure out; the srcp() and pgetp() functions, which extract entire pixels (all channels) from the image in one...
Hi Martijn, In the case of srcp() that problem should only occur if you have set isTileable to true, because in that case you can only access the pixels that ...
Harald, This little piece of code shows the problem; %ffp ForEveryTile: { for (y = 0; y < Y; ++y) { for (x = 0; x < X; ++x) { psetp(x, y, srcp(x, y)); } } ...
Hi Martijn, The problem is caused by psetp(). Sorry, seems I didn't add any code that clips the coordinates. I'll fix that. However, I don't see any sense in...
well , i 'm also thinking of a way to save whole array beetween invokation of the filter ... i mean , when the user move certain sliders or interact with the...
Your wish has nothing to do with clipboard it seems (any temporary file should do). My use for it is to let a user paste the settings of the plugin to a...
How can I determine when the mouse *leaves* the preview area? At the moment I've a plugin where I want the original source to show when the mouse is over the...
... There's already a few templates on the Wiki (look on the front page, under Documentation style templates... at the bottom of each page is text that you can...
... Doh! I looked through those but for some reason never found the Function template. Man, I don't half make things difficult for myself!! Shifty Geezer ...
... LOL nevermind. Always takes me a while to find them again too when I'm editing the Wiki (which is probably why I have a copy of the template in my web...
For those of you who like Crimson as an alternate editor for FilterMeister, version 3.70 is now out. This versions includes drag 'n drop, which removes the...
I get an "invalid CGL" error since I tried to save my filter parameters as doubles instead of integers, I must have done something silly, but didn't figure it...
The value returned by fopen() is always an *integer* handle, regardless of the format of the data you are storing in the file. So change "double ParFile" back...
Thanks very much, I knew it had to be something simple :) There is another remaining problem however (isn't there always? ;) Parameters z1 to z9 are treated...
In addition to previous post: it seems to be the fact that z1 and z9 are first and last in the list of parameters to be written to the file that somehow causes...
Ah yes, this is probably related to a bug that was noted quite some time ago: The FM compiler generates incorrect code if the parameter list in a function...
Thanks Alex, that worked. Reading in the parameters however, (three sampled colors) does not work. There's no error message, and I tested that it does go...
Short answer: Use the format specifier %lf (not %f) when scanning a double value with one of the scanf family of functions. (That's a lower case letter 'l'...
Hi everyone, after lurking for quite a while on this list finally I have a problem which I thought to be real simple, but it turns out that it's quite hard to...
Hi Mario, Well, I consider the Brightness/Contrast feature of Photoshop and other image applications one of the worst methods to to adjust contrast and ...
I absolutely agree with you - the contrast slider is complete crap and I never use it - but unfortunately the design guide of one world's biggest companies...
Hi, After just having released my latest plug-in; UnPlugged-X, I'm now working on adding some functionality to my Halftone plug-in. One of the features I want...