Learning ColdFusion 8: CFImage Part II - Tag Based Image Manipulation

<!---
	Take the modified image and resize it 75% of
	it's original size.
--->
<cfimage
	action="resize"
	source="#objImage#"
	height="75%"
	width="75%"
	name="objImage"
	/>
 
<!--- Write the new image to the browser. --->
<cfimage
	action="writetobrowser"
	source="#AddImageInfo( objImage )#"
	/>

For Cut-and-Paste