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

<!---
	Grab the image from the give source URL and save
	it to disk (at the relative web path).
--->
<cfimage
	action="CONVERT"
	source="http://farm1.static.flickr.com/240/458712628_2d6eff71e2.jpg"
	destination="funny.gif"
	overwrite="true"
	name="objImage"
	/>
 
<!--- Write the image to the browser. --->
<cfimage
	action="WRITETOBROWSER"
	source="#objImage#"
	format="jpg"
	/>

For Cut-and-Paste