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

<!--- Read in the binary image data. --->
<cffile
	action="READBINARY"
	file="#ExpandPath( './lady.jpg' )#"
	variable="binImage"
	/>
 
<!--- Read the binary directly into an image object. --->
<cfimage
	action="INFO"
	source="#binImage#"
	structname="objImageInfo"
	/>

For Cut-and-Paste