A structure containing information about the image.
imageGetMetadata(image)
→ returns struct
someImage.getMetadata()
CF 11+ Extract the meta data from an image
<cfimage action="read" name="myImage" source="http://www.exiv2.org/include/img_1771.jpg">
<cfset metaData = imageGetMetadata(myImage)>
<cfdump var="#metaData#">
CF 11+ Extract the meta data from an image
imgObj = imageRead("http://www.exiv2.org/include/img_1771.jpg");
metaData = imgObj.getMetadata();
writeDump(metaData);