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

<!--- Read in the existing image to a new variable name. --->
<cfimage
	action="read"
	source="#objImage#"
	name="objNewImage"
	/>
 
<!--- Now, add a border to the new image. --->
<cfimage
	action="border"
	source="#objNewImage#"
	thickness="2"
	color="##0000CC"
	name="objNewImage"
	/>
 
<!--- Now, output both the original image and the image. --->
<cfimage
	action="writetobrowser"
	source="#objImage#"
	/>
 
<cfimage
	action="writetobrowser"
	source="#objNewImage#"
	/>

For Cut-and-Paste