Hi, Would this be of help to you? http://freeimage.sourceforge.net/features.html Numerous formats are supported and the source code is available so that you...
The example that shows the use of RADIOBUTTON in the FilterMeister documentation does not work. I never goes beyond the first option. I substituted a sharpen...
I made several filters using portions of some of the examples in the code library. Some of these filters say they are copyrighted. I let a few friends have...
Hi Harry, I put the code below. I can't find it in the examples now. I remember that it said copyright. I think there were just initials and not a full name. I...
This amy have already been ask in the past, but does FM support ShellExecute or CreateProcess or some method of launching an external process? GaryB...
... It sure does. I use the following to launch a browser to my website: if(shellExec("open","http://www.redpawmedia.com", NULL, NULL) != -1) ErrorOk("Failed...
Hi Jamie, Thank you! I really like the effects of that filter code. Great for edges and great for simplifying images to look like paintings. I made a single...
I'm curious as to which example this comes from. Is it something from a more recent build? The code below, obviously incomplete so I closed up the loops and...
Hi Harry, I will let you know. I'm not really making it's widely available. I'm just going to allow some friends on Digital Nuts (yahoo/pBase group) to pass it...
Hi Shifty, I don't know where I got the code. It was somewhere on the FM website I'm sure. I've only had FM since May 24 this year. I didn't put all the code...
Jim, you might have copied the code it from http://groups.yahoo.com/group/ FMML/message/3010 . As I said, it's public and you are invited to use it. This forum...
Hi folks, when I use setPixel to draw stuff on an ownerdraw control it won't refresh unless I explicitly draw it again. Anybody knows a fix? I remember this...
That's normal Windows behaviour. I believe there's an event in FM which is called for the control whenever it needs to be repainted, try looking in the...
Hi, The event is called FME_DRAWITEM. You need to place all your setPixel code there, otherwise the ownerdraw control won't be updated if the user moves a ...
Hi Mehdi,
excuse me for this late response. I didn't have time last weeks for working on filters and trying it. But your hints were right, especially the...
Hi..! when ever i launch my filter at the first sroke it works well. If i try for the next image the size of the preview window is reduced and then all of my...
Hi venki, You need to resize the preview each time your plugin is executed again. Place the code for the preview resizing in OnFilterstart, but make sure it is...
I need to find the difference between two floats. I saw that filtermeister supports for the 'dif' function but it works for only two integers. In my work i...
Hi, fabs(a - b); where a and b are the float variables ofcourse. I don't quite know what you mean by "positive and negative floats", do you mean that you want...