Foundeo's CFImageEffects Component For ColdFusion 8

<!---
	Let's apply the default drop shadow. This affect
	returns a new image object with the applied affect,
	leaving our original untouched.
--->
<cfset objNewImage = objEffects.ApplyDropShadowEffect(
	objImage
	) />
 
<!--- Write new image to the browser. --->
<cfimage
	action="writetobrowser"
	source="#objNewImage#"
	/>

For Cut-and-Paste