ImageReflection()

Creates a reflection of the image

Usage

BOOLEAN = ImageReflection( name )
Argument Summary
name the image object

Calling

Supports named-parameter calling allowing you to use the function like:

ImageReflection(
   name=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageReflection( ArgumentCollection={
   name : ?
} );

Extra

<cfset im  = ImageRead( "http://www.openbluedragon.org/images/logo.gif" )>

<cfset ImageReflection( image=im )>
<cfset b = ImageWriteBase64( image=im, format="jpg", inhtmlformat=true )>

<img src="<cfoutput>#b#</cfoutput>" />