Learning ColdFusion 8: CFImage Part I - Reading And Writing Images

<!---
	Read in the image file. This will read in the binary
	image into an object of coldfusion.image.Image.
--->
<cfimage
	action="INFO"
	source="#ExpandPath( './lady.jpg' )#"
	structname="objImageInfo"
	/>
 
<!---
	The CFImage tag above stores the image information
	into a struct, objImageInfo. Dump out this struct.
--->
<cfdump
	var="#objImageInfo#"
	label="CFImage : Info Read"
	/>

For Cut-and-Paste