A structure containing information about the image.
imageGetMetadata(image)
returns struct
someImage.getMetadata()
Name | Type | Required | Default | Description |
---|---|---|---|---|
name | string | Yes | The image on which this operation is performed. |
CF11+ 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#">
CF11+ Extract the meta data from an image
imgObj = imageRead("http://www.exiv2.org/include/img_1771.jpg");
metaData = imgObj.getMetadata();
writeDump(metaData);