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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 2013 - 2042 of 9969   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2013
I think there is a bug in FM If you work with 16 bit layers, the preview is transparent allthough the filter behaves properly when applied. Even if the code...
Jan Esmann
very_secret_dk
Offline Send Email
Jan 2, 2004
6:37 pm
2014
Hi, I already mentioned that problem in the release notes of the next FM version and posted a notice about this problem on this list a few months ago. It will...
Harald Heim
haraldheim2001
Offline Send Email
Jan 2, 2004
7:39 pm
2015
Is there any 8bf-File-Format-Documentation available?...
achim-schneider@...
filtercafe
Offline Send Email
Jan 3, 2004
12:43 pm
2016
hi I need a simple code to find and replace all the continuous pixels where the count is more than the selection. plez give me a simple code through main. bye...
udayakumarlm
Offline Send Email
Jan 3, 2004
12:47 pm
2017
You can set the ctl-Range with setCtlRange(). This ist valid only for mouse-activitiy. If the control-value is changed by the keyboard (PageUp/PageDown for...
achim-schneider@...
filtercafe
Offline Send Email
Jan 3, 2004
12:48 pm
2018
Hi Achim, That would be the Photoshop SDK. The latest version of it costs something, but you can find earlier version on the Photoshop 4 - 6 CDs. Harry ... ...
Harald Heim
haraldheim2001
Offline Send Email
Jan 3, 2004
3:57 pm
2019
Hi, I'm not sure if I understand you. Can you explain in more detail? Harry...
Harald Heim
haraldheim2001
Offline Send Email
Jan 3, 2004
3:57 pm
2020
Achim, I cannot reproduce this problem. Can you give us any code or steps to reproduce the problem? Harry ... From: achim-schneider@......
Harald Heim
haraldheim2001
Offline Send Email
Jan 3, 2004
3:57 pm
2021
Here comes some code: The problem is reproduceable by changeing the value of Comtrol 1. It should only accept odd-values beginning from 3 (3,5,7,9,...). But if...
achim-schneider@...
filtercafe
Offline Send Email
Jan 3, 2004
4:49 pm
2022
Achim, there is currently no feature to have a slider accept only uneven numbers, so your definition range=(3,31) means that the slider can have all values...
Harald Heim
haraldheim2001
Offline Send Email
Jan 3, 2004
6:57 pm
2023
Hallo, Here is my sample code for dynamic trackbar: createCtl(i+71, CC_TRACKBAR, "", (int)((670.0-15.0*ctl(24)+i*30.0)/Wscal), (int)(110/Yscal), (int) ...
Jacek Zagaja
jack_zagaja
Offline Send Email
Jan 3, 2004
7:24 pm
2024
Thanks for your statement. But isn't this a popular problem for FD's, to define significant control-values as filter- input. When the behaver between...
achim-schneider@...
filtercafe
Offline Send Email
Jan 3, 2004
8:01 pm
2025
Hi all, I'm thinking about using histograms in a filter but am wondering how best to go about it. If I'm going to record all the colours in an image I'm going...
Shifty Geezer
ungleblunk
Offline Send Email
Jan 4, 2004
11:00 am
2026
Hi, I once posted a histogram "calculator" which allocated memory as needed, minimizing the average memory profile a great deal at the cost of some minimal...
Martijn van der Lee
mwvdlee
Offline Send Email
Jan 4, 2004
11:16 am
2027
Hi let me explain it. if there is an image that has to be processed the plugin starting from the left top cornor it should look for the same colored pixels in...
Udaya Kumar.L
udayakumarlm
Offline Send Email
Jan 4, 2004
12:12 pm
2028
Hi all, I've come a cropper trying to get my options files saved and loaded. I've gone through all the tutes and examples I can find, but they all deal with...
Shifty Geezer
ungleblunk
Offline Send Email
Jan 4, 2004
12:51 pm
2029
Thanks for this info. I've looked through the forum but couldn't find any links or info. Does anyone have any links to this? Shifty Geezer ...
Shifty Geezer
ungleblunk
Offline Send Email
Jan 4, 2004
3:30 pm
2030
Hi, I'm using fprintf for writing numbers and strings, e.g. fprintf(FileNr, "%s\n", str0) Harry ... From: Shifty Geezer [mailto:shifty_geezer@...] ...
Harald Heim
haraldheim2001
Offline Send Email
Jan 4, 2004
7:17 pm
2031
How do you read those strings back in? Char by char? Shifty Geezer Shifty_Geezer@... ... From: Harald Heim To: FMML@yahoogroups.com Sent: Sunday,...
Shifty Geezer
ungleblunk
Offline Send Email
Jan 4, 2004
7:41 pm
2032
Hi, You can read it e.g with: fgets (str0,254,FileNr); memset (str0+strlen(str0)-1, 0 ,1); The second statement adds a zero at the end of the string. Harry ......
Harald Heim
haraldheim2001
Offline Send Email
Jan 4, 2004
8:32 pm
2033
Could someone please take a look at this and tell me what's wrong? My fprintf isn't writing anything to the file. OnCtl(n): { int status,oflags, SETTINGS_FILE;...
Shifty Geezer
ungleblunk
Offline Send Email
Jan 7, 2004
11:54 am
2034
if (SETTINGS_FILE=fopen( str0, "w")){ SHOULD BE >>>>>> if (SETTINGS_FILE==fopen( str0, "w")){ I've done that myself. an easy typo !! Conrad. ... From: Shifty...
crcm_admin
crcmnet
Offline Send Email
Jan 7, 2004
12:24 pm
2035
Thanks! An important bug though it didn't fix the problem. if (status == 0) { //Success : Write options file if (SETTINGS_FILE==fopen( str0, "w")){ Info(str0);...
Shifty Geezer
ungleblunk
Offline Send Email
Jan 7, 2004
1:13 pm
2036
I don't think you want to use: if (SETTINGS_FILE==fopen( str0, "w")){ because you don't want to compare the value of SETTINGS_FILE with the result of fopen....
Kohan Ikin
syneryder
Offline Send Email
Jan 7, 2004
1:39 pm
2037
You must call fclose to close the file when you are finished writing to it. Otherwise, the last data you wrote is still sitting in a buffer -- calling fclose ...
Alex Hunter
afhsys
Offline Send Email
Jan 7, 2004
2:16 pm
2038
Huzzah! Thanks for the pointer. It all works lovely now. Shifty Geezer Shifty_Geezer@... ... From: Alex Hunter To: FMML@yahoogroups.com Sent:...
Shifty Geezer
ungleblunk
Offline Send Email
Jan 7, 2004
6:59 pm
2039
Hi folks, i discovered that i'm using controls outside the documented range (see below) because the FM-compiler doesn't warned me. My highest declared Control...
achim-schneider@...
filtercafe
Offline Send Email
Jan 7, 2004
9:16 pm
2040
I've looked in the forum too, but no success. I'm interested too. Gruß Achim ... From: Shifty Geezer To: FMML@yahoogroups.com Sent: Sunday, January 04, 2004...
achim-schneider@...
filtercafe
Offline Send Email
Jan 7, 2004
9:22 pm
2041
... It took me a while to find, but I think the topic you want to look for is "Unique Colour Counting". It spans quite a few posts and I haven't found the ffp...
Kohan Ikin
syneryder
Offline Send Email
Jan 8, 2004
2:40 am
2042
Now I remember! That was indeed the one. The FFP code should be there somewhere, I've tried looking on my own harddrive but couldn't find it (probably due to...
Martijn van der Lee
mwvdlee
Offline Send Email
Jan 8, 2004
6:42 am
Messages 2013 - 2042 of 9969   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