<!--- Read in the image using an absolute path. ---> <cfset objImage = ImageRead( ExpandPath( "./lady.jpg" ) ) > <!--- Read in the image using a web-relative path. ---> <cfset objImage = ImageRead( "./lady.jpg" ) > <!--- Read in the image using a URL. ---> <cfset objImage = ImageRead( "http://localhost/testing/cf8/lady.jpg" ) />