Getting The URL Of ColdFusion 8's Temporary Images

Posted November 9, 2007 at 3:56 PM by Ben Nadel

Tags: ColdFusion

ColdFusion 8 has some awesome image functionality, one piece of which is the ability to write temporary images to the browser. This can be done with the ColdFusion 8 CFImage tag and the action WriteToBrowser. When you do this, ColdFusion writes the image as a temporary file to a directory which acts as a mini file servlet (or something - not sure on the details). This temporary image is available for a few minutes and then ColdFusion automatically deletes it.

This is really cool, but unfortunately, the action itself writes the IMG tag directly into the response output buffer. This can cause problems if you want to do anything else with the image other than simply displaying it. For example, if you wanted to add a CSS class or even load it into a Javascript image object you would be out of luck.

To get around this, I created a tiny little ColdFusion function that encapsulates the Write-To-Browser action and instead of writing the IMG tag, all it does is return the URL of the image that was generated. Like my post on styling the WriteToImage tag action, this function also works by writing the IMG tag output to a variable buffer rather than the page output buffer.

  • <cffunction
  • name="ImageGetUrl"
  • access="public"
  • returntype="string"
  • output="false"
  • hint="Returns the URL of the temporary image generated from the passed in ColdFusion image object.">
  •  
  • <!--- Define arguments. --->
  • <cfargument
  • name="Source"
  • type="any"
  • required="true"
  • hint="The ColdFusion image object who's URL we want to get."
  • />
  •  
  • <cfargument
  • name="Format"
  • type="string"
  • required="false"
  • default="png"
  • hint="The file type of the image we want to use."
  • />
  •  
  • <!--- Define the local scope. --->
  • <cfset var LOCAL = {} />
  •  
  •  
  • <!--- Store the output of the image. --->
  • <cfsavecontent variable="LOCAL.Output">
  •  
  • <!--- Write the image the output buffer. --->
  • <cfimage
  • action="writetobrowser"
  • source="#ARGUMENTS.Source#"
  • format="#ARGUMENTS.Format#"
  • />
  •  
  • </cfsavecontent>
  •  
  •  
  • <!---
  • Extract the URL of the temporary image. This will give
  • us an array of the matches, which should only be one.
  • --->
  • <cfset LOCAL.URL = REMatch(
  • "(?i)src\s*=\s*""[^""]+",
  • LOCAL.Output
  • ) />
  •  
  • <!---
  • Clean up the SRC that we extracted. We can think of the
  • value a double-quote delimited list in which our true
  • SRC value is the last item.
  • --->
  • <cfset LOCAL.URL = ListLast( LOCAL.URL[ 1 ], """" ) />
  •  
  • <!--- Return the URL. --->
  • <cfreturn LOCAL.URL />
  • </cffunction>

The function takes the same arguments that the CFImage / WriteToBrowser action tag (minus the Base64 encoding) and then just returns the URL of the temporary file that ColdFusion 8 writes to the server. I figured it could be used in this kind of a manor:

  • <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  • <html>
  • <head>
  • <title>ColdFusion 8 Temporary Image URL</title>
  • </head>
  • <body>
  •  
  • <cfoutput>
  •  
  • <h1>
  • Getting The Source of a Temporary ColdFusion Image
  • </h1>
  •  
  • <!--- Read the image into a ColdFusion image object. --->
  • <cfimage
  • action="read"
  • source="./cute_blonde.jpg"
  • name="imgGirl"
  • />
  •  
  • <!---
  • Get the source of the temporary image. This action
  • will write the image to a temporary file which will
  • exist for only a few minutes.
  • --->
  • <cfset strImageURL = ImageGetUrl( imgGirl, "png" ) />
  •  
  • <p>
  • URL: #strImageURL#
  • </p>
  •  
  • <p>
  • <img
  • src="#strImageURL#"
  • width="#imgGirl.GetWidth()#"
  • height="#imgGirl.GetHeight()#"
  • alt="Cute blonde girl"
  • title="This is a temporary photo generated by ColdFusion 8"
  • border="0"
  • />
  • </p>
  •  
  • </cfoutput>
  •  
  • </body>
  • </html>

Not a lot going on here; it just solved a problem that I was working on and I thought I would share the solution. The only thing you have to be careful of here is that the image itself might be deleted on the server shortly after the referencing page has rendered. This can cause problems if your page Javascript is expecting the image to persist.

Now, you might say, if you need the URL, why not write the image to the file system yourself and use that URL. The benefit of my method is that you don't have to worry about any file management and you don't have to worry about the relative web path - ColdFusion takes care of that for you.




Reader Comments

There are no comments posted for this web log entry.

Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
Jun 18, 2013 at 3:39 PM
Experimenting With The Amazon Simple Storage Service (S3) API Using ColdFusion
Hi Ben, THANKS! While not bleeding edge, it is new to me & I like learning new things every day! ... read »
Jun 18, 2013 at 12:30 PM
Disabling Auto-Correct And Auto-Capitalize Features On iPhone Inputs
Also spellcheck="false" should be mentioned as part of html5 specs ... read »
Jun 18, 2013 at 8:40 AM
Using Named Functions Within Self-Executing Function Blocks In Javascript
Hi Ben, you forgot to mention the most important thing for named self-executing functions - they can be referenced by name ONLY inside their execution context (which is parens in this case), it mean ... read »
dee
Jun 18, 2013 at 7:01 AM
My Safari Browser SQLite Database Hello World Example
hai ben, this program is really good i could understand the concept but i dint know how to save it and how to open it as you have done in the video can u give that details pls ... read »
Jun 18, 2013 at 6:04 AM
Clearing Inline CSS Properties With jQuery
Thanks a lot for for post! It helped me a lot... after being stuck since 24 hrs.. found solution from your post. Thanks again! ... read »
Jun 18, 2013 at 2:31 AM
SOTR 2013 - The Best Conference I Never Went To
I keep watching it, should keep me happily distracted until SotR14 ;) ... read »
Jun 17, 2013 at 9:45 PM
What If All User Interface (UI) Data Came In Reports?
@Jonah, As I was reading what you wrote, it occurred to me that maybe I do something similar to that in some of my client-side code. In an application I'm working on, there are a bunch of unrelated ... read »
Jun 17, 2013 at 9:36 PM
Object Thinking By David West
@Jonah, Please, don't feel bad at all. I appreciate all that you have contributed to the conversation. And, the more points of view I get, the more confident I am that I will some day, some how und ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools