Sorry Ralph, no idea... I am wondering myself about the RGB, CMYK and Lab conversion functions. When you have an RGB image in Photoshop you can have RGB as...
Hello Charles,
to figure out this I programmed my converter plugin. But the formulas are quite complex and I broke the work months ago (the converter is...
Hello,
I've upload a complete list of all photoshop blending modes (including soft light) here:
www.simpelfilter.de/en/grundlagen/mixmods.html
Hope it can...
Hi Ralph, looks interesting, but I don't find wise to mix german and english in the same page. I would have wait to finish the translation before publishing it...
BTW - here's a similar document from Adobe: http://partners.adobe.com/public/developer/en/pdf/blend_modes.pdf And here's maybe the mother of all blending mode...
Does anyone know how the rgb2lab function is implemented in FM? I need to know where my Lab values come from :) Charles ... Talk is cheap. Use Yahoo! Messenger...
... and if I had known this links two months ago I had spent a few hours for better things than figuring out the soft light math. The adobe pdf is from end...
Is it possible to use color or luminosity blending modes in FM? Thew work in HSL color space, right? How do you make modifications in HSL color space with FM?...
You can use the RGB2HSL function to convert to HSL space, do your funky stuff, and then HSL2RGB to get back again. There are demos in FMs source codes folder I...
Hi,
what's wrong with this code? If the zoom factor is so high that the image is bigger than preview and I try to drag the preview with left mouseclick, a...
Hi, I had most blending modes listed in pseudo-FM code (using 0-255 range) at http://www.vanderlee.com/tut_fm_mixingmodes.html. This was before Adobe added the...
This is taken directly from my Unplugged-X sourcecode: switch(mixingMode) { case 1: // Multiply case 2: // Screen case 3: // Overlay case 4: // Soft light ...
Hi, I'm not sure entirely, but it might have something to do with the fact that you don't check whether a previewCoord was actually set. I don't know if the ...
My gut-feeling tells me: snprintf(&str1,"R: %f.2",av1); (note the ampersant "&") regards, Martijn ... From: yep me To: FMML@yahoogroups.com Sent: Saturday,...
Gives the same memory access violation... Is this the best way to try and put a value in my GUI that I can update? 2) I also wonder if there's a way to put...
Also, setCtlTextv allows a formatting string and parameters, so (I think) you can write: setCtlTextv(66, "R: %f.2", av1); directly, so you can ignore str1...
Brilliant, thanks! How about the other questions: 2) I also wonder if there's a way to put text on the clipboard from a plug-in? 3) And is there a good example...
Glad it worked, Charles! I don't think there's a way to access the clipboard, but I'm not a real Windows programmer so I may be wrong. I think there's probably...
Am 08.04.2006 um 01:46 schrieb Martijn van der Lee:
> The versions of Color Dodge and Burn are different from mine > though; have
> you tested your versions...
I overlooked a small detail; you're using sNprintf instead of sprintf, which means the 2nd argument should be the maximum size of the string. Since you're...
Thanks Martijn :) There were 2 more mistakes in that one statement, bringing the total to 4 (!) R has a special meaning and so \R should be used the .2 for two...
Can anybody show me an example of how to get a save dialog to choose a place to save a textfile? The only example I could find was a settingsfile with a fixed...
Found it :) SavePreset.ffp pshoplifter <pshoplifter@...> wrote: Can anybody show me an example of how to get a save dialog to choose a place to save a...
Hey team, I've been away a while but am interested in getting my ps development back up. I'm after making a modified 'white noise' function. instead of just ...
Hi One of my users complained about an error I have never seen before. "Can't allocate proxy preview buffer for 48-bit image!" What does that mean? Is there a...
Hi Jan, I suspect that the error was in fact: "Can't allocate proxy preview buffer" full point. This user was probably running out of memory , and thus the...
Hi, I have indications that the built-in variables wholeWidth and wholeHeight are zero in Ulead PhotoImpact 8.02 (and possibly other versions). Unfortunately I...