Retrieves the specified EXIF tag in an image.
image.getEXIFTag( tagName=string )
Returns: any
Argument |
Description |
tagName
string,
required
|
The EXIF tag name to be returned.
|
Examples
img = imageNew("", 105, 100, "rgb", "yellow");
writeDump(img.GetEXIFTag('width'));
writeDump(img.GetEXIFTag('height'));
See also