Whatever message this page gives is out now! Go check it out!
ImageGetMetadata(image) |
Parameter | Description |
image | Required. The ColdFusion image on which this operation is performed. |
<cfimage action="read" name="myImage" source="../../MasterImages/sky.jpg">
<cfset getMetaData = ImageGetMetadata(myImage) >
<cfoutput>
Image Height : #getMetaData["Image Height"]#<BR>
Image Width : #getMetaData["Image Width"]#<BR>
Exif Version : #getMetaData["Exif Version"]#<BR>
</cfoutput>