ImageGetEXIFTag()
Retrieves the specified EXIF tag in an image.
Requires Extension: Image extension
ImageGetEXIFTag( image=any, tagName=string );
Returns: any
Argument | Description |
---|---|
image
any,
required
|
The image on which this operation is performed. Alias: name |
tagName
string,
required
|
The EXIF tag name to be returned. |
Examples
Function Example
img = imageRead('https://avatars1.githubusercontent.com/u/10973141?s=280&v=4')
writeDump(imageGetEXIFTag(img,'width'));
writeDump(imageGetEXIFTag(img,'height'));
See also
- Image manipulation
- image.getEXIFTag()
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)