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

<!---
	Take the modified image and rotate it 180 degrees.
	This will essentially flip the image up-side-down.
--->
<cfimage
	action="rotate"
	source="#objImage#"
	angle="180"
	name="objImage"
	/>
 
<!--- Write the new image to the browser. --->
<cfimage
	action="writetobrowser"
	source="#AddImageInfo( objImage )#"
	/>

For Cut-and-Paste