Foundeo's CFImageEffects Component For ColdFusion 8

<!---
	Read in the test image to which we will be
	applying the given effects.
--->
<cfimage
	action="read"
	source="./girl_with_fan.jpg"
	name="objImage"
	/>
 
<!---
	Let's add a reflection to the image. This will make
	the image appear as if it were resting on a glossy
	or shiney surface.
--->
<cfset objNewImage = objEffects.ApplyReflectionEffect(
	<!--- Image. --->
	objImage,
 
	<!--- Background color of canvas. --->
	"FFFFFF",
 
	<!--- Height of reflection. --->
	75,
 
	<!---
		Starting opactiy. This is how transparent the
		reflection is as the very bottom of the original
		image.
	--->
	30
	) />
 
<!--- Write new image to the browser. --->
<cfimage
	action="writetobrowser"
	source="#objNewImage#"
	/>

For Cut-and-Paste