Description
You can use this function to retrieve all metadata about the image including exif, IPTC, camera-specific information.
Returns
A structure containing information about the image.
You can use this function to retrieve all metadata about the image including exif, IPTC, camera-specific information.
A structure containing information about the image.
ImageGetEXIFMetadata(name)
cfimage, ImageGetEXIFMetadata, ImageGetEXIFTag, ImageGetBlob, ImageGetBufferedImage, ImageGetHeight,
ImageGetIPTCTag, ImageGetWidth, ImageInfo, IsImage, IsImageFile
ColdFusion 11: Added this function.
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>