Foundeo's CFImageEffects Component For ColdFusion 8

<!---
	This time, when applying the drop shadow, let use the
	optional parameters to really gain control over the
	look and feel.
--->
<cfset objNewImage = objEffects.ApplyDropShadowEffect(
	<!--- The image. --->
	objImage,
 
	<!--- Background color of the canvas. --->
	"FFFFFF",
 
	<!--- Shadow color. --->
	"333333",
 
	<!--- Shadow width. --->
	10,
 
	<!---
		Shadow distance. This is the offset of the shadow
		effect from the border of the original image.
	--->
	0
	) />
 
<!--- Write new image to the browser. --->
<cfimage
	action="writetobrowser"
	source="#objNewImage#"
	/>

For Cut-and-Paste