CFX_RESIZER
 
 
 

You can use it to resize images on the server. You can also generate thumbnails by looping on all directory images. CFX_Resizer is extremely fast and will accepts JPG, GIF, PNG, TIFF, BMP files

CFX_Resizer could be used in the following appliactions:

- Newsletter
- E-mailing
- Online samples images distribution
- E-commrece
- Content management tools
- etc ...

For Coldfusion 4.5, 5, MX
Windows NT, 2000, XP

USD $ 59

Usage:

It is very easy to use :

1- Register the cfx_resizer.dll on Coldfusion admin panel .

2- Use as follows :

<cfx_resize
original_file="c:\images\file1.jpg"
modified_file="c:\smalliamges\file1.jpg"
width="150"
height="100">

To Adjust automatically the height from the weight length use -1 and vice versa
Example :

<cfx_resize
original_file=”c:\images\file1.jpg”
modified_file=”c:\smalliamges\file1.jpg”
width=”-1”
height=”100”>

Attributes could be provided as Coldfusion variables too :
Example :

<cfset myPath = GetDirectoryFromPath(ExpandPath("*.*")) >

<CFFILE action="UPLOAD" filefield="image" destination="#myPath#\BigImages" nameconflict="MakeUnique">

<cfx_resize original_file=# myPath #&#CFFILE.ServerFile#
modified_file= # myPath #&"_"&#CFFILE.ServerFile#>
width=”-1”
height=”100”>

* In trial version, images are converted to 200 pixels width.