Hi Gary, ... Yes, I'm sure Delphi can import and use ActiveX controls too. Although I've never tried using them myself, I've only ever installed 3rd party...
A small search on Google ("create activex delphi") returned numerous pages dedicated to creating ActiveX controls with Delphi. From what I can find, building...
Hi Harry, I've just switched to broadband (2 MBit - big grin!) and am wondering the right way to change my email address for this list. Shifty Geezer ...
Shifty, You can do it at http://groups.yahoo.com/group/FMML/ Or you can unsubscribe and subscribe again by sending an email to the following addresses: ...
Mehdi, If you set isTileable = true, then you need to adapt your code to the fact that the FET handler is called repeatedly and only processes a part of the ...
Mehdi, I only have 512 MB RAM and when I try to enlarge a 1024x768 image by 800 percent to 8192 x 6144 pixel in Photoshop CS with your plugin, I get a error ...
Hi all, Just found an odd bug. Check the following code, for some reason, only the first test fails. All parts of that statement seem to work independantly...
Hi, I hope I'm mistaken but it seems to me isTileable is pretty much useless for an "enlarging" plug-in. Since you can't access pixels outside the current tile...
well the isTileable property is a true mystery for me. I can't understand how a plugin could work properly with tiles if each calculated values needs to read...
Martijn, Image enlarging is basically the same as blurring, only that you fit in missing pixels. Anyway, you can specify a padding area around a tile with ...
Hi Mehdi, As far as I can see you would just need to add the following to make it work in tiles: OnFilterStart:{ isTileable=true; needPadding=1; return false; ...
Hi Martijn, You are right. It is a bug. Currently you can't set the alpha channel to zero with psetp(). I found and fixed it. The bug was basically a safety...
Hi, Thinking a bit more about this problem I think it may avoid quite some problems for beginners if the mentioned safetly measure would be kept active. If...
hi harry, thanks for your clarifications since the area i use to get the values, (the small selection to enlarge) does not correspond to the final area to...
Hi, I understand the safety measure and why it exists, on the other hand it does criple the functionality of psetp(). The problem with being forced to read ...
Harry, As I understand it you would propose scaling with a "nearest neighbor" method first, then "blurring" the image. Hadn't thought of that and indeed, that...
Hi Martijn, I guess the best solution would be to have a set_psetp_mode() function that lets you switch between the current behaviour of psetp(), which would...
Hi Mehdi, ... Ok, I see. What about the following idea: You keep isTileable to false, store the image in an array. After the user pressed OK, you set...
Hi Martijn, Sorry, I guess I had the ResizeMagic plugin from FSoft in mind when I wrote my last statement. It saves the image to disk after it is run the first...
hi harry, ... isTileable > to true and read the image values from the array instead of the image itself. How would you store the array ? (assuming that you...
Hi Mehdi, ... Yes, you would need to store it to a file. But I don't see why you would need to store it across invocations. ... While I recently updated the...
Hi Sally, Genuine Fractals (GF) is a file format plugin, so it should work in PSP and other applications that support file format plugins, although I haven't ...
... But it was your idea ... (or what ?) first invocation: set isTileable to false and store data in an array. second invocation: set isTileable to true, get...
Hi, Since I never used Genuine Fractals before I checked the internet for "before-after" examples. In my humble opinion "it" could be done better: looking at...
Hi Roberto, I guess you will see the difference if you test it yourself and compare the result to Photoshop or any other enlarging plugin. You probably won't ...
Mehdi, ... No, I meant only one invocation: The original image is read into an array while the dialog is displayed and isTileable=false. After OK is pressed...
Whooow! I never said it's easy! I just said I would try to realize if . Anyway, I aggree GF example on your website definately looks the best of all 5 or 6 (?)...