Search the web
Sign In
New User? Sign Up
FMML · FilterMeister plug-in discussion group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 5514 - 5543 of 9972   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5514
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...
yep me
pshoplifter
Offline Send Email
Apr 6, 2006
11:05 pm
5515
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...
simpelfilter
Offline Send Email
Apr 7, 2006
2:39 pm
5516
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...
simpelfilter
Offline Send Email
Apr 7, 2006
2:55 pm
5517
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...
extrabigmehdi
Offline Send Email
Apr 7, 2006
3:55 pm
5518
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...
Mario Klingemann
coma2mario
Offline Send Email
Apr 7, 2006
4:31 pm
5519
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...
yep me
pshoplifter
Offline Send Email
Apr 7, 2006
5:02 pm
5520
... 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...
simpelfilter
Offline Send Email
Apr 7, 2006
8:03 pm
5521
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?...
Jim Clatfelter
jimclatfelter
Offline Send Email
Apr 7, 2006
8:31 pm
5522
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...
Shifty Geezer
ungleblunk
Offline Send Email
Apr 7, 2006
9:14 pm
5523
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...
simpelfilter
Offline Send Email
Apr 7, 2006
9:24 pm
5524
Thanks Shifty, I'll look for the demos. Jim...
Jim Clatfelter
jimclatfelter
Offline Send Email
Apr 7, 2006
9:59 pm
5525
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...
Martijn van der Lee
mwvdlee
Offline Send Email
Apr 7, 2006
11:46 pm
5526
This is taken directly from my Unplugged-X sourcecode: switch(mixingMode) { case 1: // Multiply case 2: // Screen case 3: // Overlay case 4: // Soft light ...
Martijn van der Lee
mwvdlee
Offline Send Email
Apr 7, 2006
11:50 pm
5527
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 ...
Martijn van der Lee
mwvdlee
Offline Send Email
Apr 7, 2006
11:59 pm
5528
1) Can't figure out why updating this statictext goes wrong: ctl[66]: StaticText(notify), "R: ",Position=(490,128), Size=(30,11) and later: snprintf(str1,"R:...
yep me
pshoplifter
Offline Send Email
Apr 8, 2006
12:04 pm
5529
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,...
Martijn van der Lee
mwvdlee
Offline Send Email
Apr 8, 2006
12:51 pm
5530
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...
yep me
pshoplifter
Offline Send Email
Apr 8, 2006
1:01 pm
5531
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...
Pete Bailey
xerographics...
Offline Send Email
Apr 8, 2006
1:07 pm
5532
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...
yep me
pshoplifter
Offline Send Email
Apr 8, 2006
1:15 pm
5533
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...
Pete Bailey
xerographics...
Offline Send Email
Apr 8, 2006
1:40 pm
5534
Hi Martin, it gives the same memory acces violation. Now I wrote: if (n == CTL_PREVIEW && e == FME_MOUSEMOVE){ xp = getPreviewCoordX();...
simpelfilter
Offline Send Email
Apr 8, 2006
2:02 pm
5535
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...
simpelfilter
Offline Send Email
Apr 8, 2006
2:20 pm
5536
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...
Martijn van der Lee
mwvdlee
Offline Send Email
Apr 8, 2006
2:49 pm
5537
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...
yep me
pshoplifter
Offline Send Email
Apr 8, 2006
3:45 pm
5538
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...
pshoplifter
Offline Send Email
Apr 12, 2006
1:41 pm
5539
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...
yep me
pshoplifter
Offline Send Email
Apr 12, 2006
10:20 pm
5540
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 ...
Steven Andrews
olryx2
Offline Send Email
Apr 14, 2006
8:42 am
5541
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...
jan.esmann@...
very_secret_dk
Offline Send Email
Apr 14, 2006
9:20 am
5542
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...
extrabigmehdi
Offline Send Email
Apr 14, 2006
2:08 pm
5543
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...
Jamie London
jamesbondzw
Offline Send Email
Apr 14, 2006
10:04 pm
Messages 5514 - 5543 of 9972   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help