Write to browser is similar to file upload. It stores the temporary file for 
that one request then deletes it after. You can always write the image to a 
file of your choice.
<cfset src = expandpath("myjpg.jpg")>

<cfimage source="#Imageobj#" action="write" destination="#src#" overwrite="yes">

Then on your output page, 

<cfif fileexists(src)>
<img src="#myjpg.jpg#">
</cfif> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326846
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to