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...
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...
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...
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...
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 ... ...
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, 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...
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) ...
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...
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...
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...
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...
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...
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 ......
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;...
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...
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);...
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....
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 ...
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...
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...
... 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...
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...