Joe, Elements does not give you access to Channels -- and I can't see why I should use somebody else's filter when I can create my own. And you guessed exactly...
Duncan: Â ... My approach would be to use Layers and Channels and do everything manually unless I had a very large number of images that I had to work with...
I was away from office a few days but I've seen that my photos "create" a debate. ... But you have to admit that using auto-levels on a mixed photo makes quite...
... <snipped> ... Hi bikemikeit, I think the difference is that Photoshop clips a percentage of the pixels near black and near white. Clipping results in more...
... Andrea, here is a piece of code that will do histogram stretching between a lower and an upper threshold. It will not just chop off the ends but perform a...
... SUPER!!! Thanks a lot! This is what I was searching for. I've made some tests and I obtain good results with values of 5/250, that is a 2% clipping. Thank...
Here's a different way of thinking about 'percent of clipping'. I would express it by the fraction of the image area that has been clipped (and that is the...
There have been re-occuring discussions relative to loading one or more image templates into FM to use as tiles. Answers on how to do this have ranged from " I...
There are good ideas in Lance's message. I can think of several applications that might be of use to FM members. - Opening bitmaps for texturing - Opening...
Lance, Search through the FMML e-mails for a devdll and you'll find a dll for reading many file formats. The FM code is in a couple of the e-mails. Because...
Sorry everyone - I know this has been asked many times before, but I've spent the last hour searching the Wiki and past threads and still can't find it....
Hi, ... It is, but it's a bit more complicated. 1. You have to load FM in Resource Hacker (AfhFM04Beta8.8bf). 2. Store the resource FMTEMPLATE/132/1033 in a...
Many thanks, Paul. I imagined (and hoped!) that there would be a nice, easy, built-in solution. *sigh*... Must have dreamed it... I've spent most of this...
... The "compile" Macro that Scite4FilterMeister will also start reshack.exe as one of the steps in the process. I am not sure wether I included this version...
Hi, I got reports about two of my plugins (created with FM) crashing Photoshop CS3/CS4 under Windows 7. Did anyone notice such a problem with his FM plugins...
Hi harry, I just tested a bit on a fresh windows 7 and didn't find any problems. Cheers Jan ... From: Harald Heim To: FMML@yahoogroups.com Sent: Saturday,...
Hi, Thanks for checking. Seems the crash reports were a coincidence. One guy had a problem with a corrupted .ini file and the other used an older plugin ...
Hello Everyone! I am a newby and this is my first post. I'm having great fun learning FM, but I'm stuggling with the code below which uses quickmedan with the...
Hi Alun, What happens when you set the preview to 100%, does the effect then render correctly in both the preview & the final image? A quick glance at your...
Hi Kohan, The problem still occurs with the preview set to 100%. The code is based on the test_posterize.ffp and test_quickMedian in the FM democodes folder....
Hi Alun, I think this works better. Cheers Jan %ffp ctl(0): "Median Radius ", range=(1,3), val=3 ForEveryTile: { int tmp =0; int medianRadius = ctl(0); int...
Hi Jan, Thankyou for you effort! It does work better now. Adjusting the slider after rescaling/zooming the preview renders the preview correctly. Grabbing and...
Hi Alun, thanks, I am happy to help. Actually as a matter of good form you need to add onFilterEnd: { freeArray(1); return false; } And you could incoporate...
... I only took a quick look at the code and haven't played with quickMedian myself, so I'm sorry if I've sent you off on a wild goose chase! It could be...
Hi Jan, I discovered freeArray when searching the wiki to gain an understanding of the code you posted yesterday. I tried to apply it, because I thought the...
Hi Kohan, I took onboard what you said originally, and use this code... OnFilterStart:{setZoom(1); return false;} ...which I disable when testing preview...