cfimage error
I am writing code to resize a relevant image on my system. But though I have followed the coding rules correctly, I keep getting an error that:
The images/consumer/ image format is not supported on this operating system. | |
| Use GetReadableImageFormats() and GetWriteableImageFormats() to see which image formats are supported. | |
What is wrong with my code? TIA
Here is my code:
<<cfset imgTypes = GetReadableImageFormats()>
<cfoutput query="ConsumerSimpleSearch">
<tr>
<td width="10%"><!--- creating a resized version of uploaded image of product. --->
<cfimage source="images/consumer/#Cnsmr_ProductIMAGE#" action="resize" width="100" height="60" name="resizedImg" format= "#imgTypes#">
<cfimage source="#resizedImg#" action="writeToBrowser"><!---img src="images/consumer/#Cnsmr_ProductIMAGE#"---></font></td>
<td width="90%"><font size="+2">#Cnsmr_ProductDESCRIPTION# </font> <font size="+2"><a href="showProductDetail.cfm?Cnsmr_ProductID=#URLEncodedFormat(TRIM(Cnsmr_ProductID))#">#Cnsmr_ProductMODELNo# </font> </a>
<font size="+2">#Cnsmr_ProductMODELYEAR# </font> <font size="+2">#Cnsmr_ProductPRICE#</font> <font size="+2">#User_id#</font>
</td>
</tr> <br> </br>
</table>
</cfoutput>
