Foundeo's CFImageEffects Component For ColdFusion 8

<!---
	This time, let's round the corners with a black
	background so that we can really see what is going
	on in the canvas.
--->
<cfset objNewImage = objEffects.ApplyRoundedCornersEffect(
	<!--- Image. --->
	objImage,
 
	<!--- Background color of canvas. --->
	"000000",
 
	<!--- Roundedness. --->
	50
	) />
 
<!--- Write new image to the browser. --->
<cfimage
	action="writetobrowser"
	source="#objNewImage#"
	/>

For Cut-and-Paste