FUNCTION:IMAGEGETEXIFMETADATA
last edited by
gef
on 03-Oct-2011
imageGetExifMetadata
Description
Retrieves the Exchangeable Image File Format (EXIF) headers in an image as a CFML structure.
Usage Syntax
imageGetExifMetadata(any name): struct
Return Information
| Return Type |
| struct |
Arguments
The arguments for this function are set. You can not use other arguments except the following ones.
| Name | Type | Required | Description |
| name | any | Yes | The image on which this operation is performed. |
<cfset oImg = ImageRead(“img.jpg”)> <cfdump eval=imageGetEXIFMetadata(oImg)> <cfdump var=”#imageGetEXIFTag(oImg, “width”)>
The tags defined inside a picture are not limited. The function simply returns the key & values stored as EXIF data inside a picture.
History
Railo 3.3: Introduced this function
SideBar
User Login