Learning ColdFusion 8: CFImage Part I - Reading And Writing Images

<!--- Grab the image from the give source URL. --->
<cfimage
	action="READ"
	source="http://farm1.static.flickr.com/183/392739661_70619076b7.jpg"
	name="objImage"
	/>
 
<!--- Write the image to the browser. --->
<cfset ImageWriteBase64(
	objImage,
	"./waterfall.txt",
	"JPG"
	) />

For Cut-and-Paste