Home | Play DC (vB2) | Rules | Versions | Rewards Program | Sponsors | Java Junkie | Other Games | My Bookmarks | Log In | Register

Resizing Images in ColdFusion

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

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


Welcome!

Search Dungeon Chess


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...