Article Advocates - Blogging and Content Management System
Welcome!

Resizing Images in ColdFusion

3
Submitted by Teo Graca | RSS Feed | Add Comment | Bookmark Me! print

It is important to be able to resize uploaded images to required specifications. This functionality is available in ColdFusion using the cfimage tag.

CFIMAGE used Resize an image:

  required attributes
    action="resize"
    height="number of pixels|percent%"
    source="absolute pathname|pathname relative to the web root|URL|#cfimage variable#"
    width="number of pixels|percent%"
  optional attributes
    destination="absolute pathname|pathname relative to the web root"
    isBase64="yes|no"
    name="cfimage variable"
    overwrite="yes|no"

details on the cfimage tag

This Article (c) 2007 by Teo Graca

Contact Us
Support and Sales
Contact Us


Associated Articles:
Customizing the FCKeditor Tool Bar in ColdFusion - CFTextArea - ColdFusion's CFTextArea form element uses the FCKeditor Tool Bar and can be modified in two ways, wh...
ColdFusion - CFTRANSACTION and Failed Inserts Due To Heavy Use - I was getting primary key violations, even though I was using cftransaction around the select max(id...

Related Tags (related articles): Resizing Images (1), ColdFusion (3)