<!--- Build our "Test" image url on the local server. ---> <cfset imageUrl = ( "http://" & cgi.server_name & getDirectoryFromPath( cgi.script_name ) & "monkey.jpg" ) /> <!--- Request the file content of the image. ---> <cfhttp result="get" method="get" url="#imageUrl#" /> <!--- Write the image to the browser. ---> <cfimage action="writetobrowser" source="#get.fileContent#" />