Retrieves the Exchangeable Image File Format (EXIF) headers in an image as a CFML structure.
imageGetEXIFMetadata(name)
→ returns struct
someImage.getEXIFMetadata()
CF 11+ Lucee 4.5+ Extract the EXIF meta data from exiv sample page (http://www.exiv2.org/sample.html)
imgObj = imageRead("http://www.exiv2.org/include/img_1771.jpg");
x = imgObj.getEXIFMetadata();
writeDump(x);
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.