Skip to main content
Inspiring
May 2, 2008
Question

WTF: coldfusion.image.Image$ReadImageMetadataException: ISO Speed Ratings

  • May 2, 2008
  • 1 reply
  • 557 views
I am trying to write out a photo using the cfimage and I am getting this error:

An exception occured while performing the writetobrowser cfimage action.coldfusion.image.Image$ReadImageMetadataException: ISO Speed Ratings

Here is the code. Any ideas???

<cfset objImage = ImageRead( "assets/property/964317_old_house_23.jpg" ) />
<cfset objWatermark = ImageNew("assets/images/sold.gif") />
<cfset ImageSetAntialiasing(objImage,"on") />
<cfset ImageSetDrawingTransparency(objImage,50) />
<cfset ImagePaste(objImage, objWatermark, (objImage.GetWidth() - objWatermark.GetWidth()),
(objImage.GetHeight() - objWatermark.GetHeight())) />
<cfimage action="writetobrowser" source="#objImage#"/>
This topic has been closed for replies.

1 reply

Inspiring
May 2, 2008
Hi,

This thread has some info for you..
May 9, 2008
Does the fix here help?