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

<!---
	Take the original image and add a border (save
	it into a new image variable).
--->
<cfimage
	action="border"
	source="#objOriginalImage#"
	color="##333355"
	thickness="2"
	name="objImage"
	/>
 
<!--- Write the new image to the browser. --->
<cfimage
	action="writetobrowser"
	source="#AddImageInfo( objImage )#"
	/>

For Cut-and-Paste