ImageGetexiftag()

Reads the given EXIF/IPCT tag information for a given file. If the image does not support it, an exception will be thrown

Usage

STRING = ImageGetexiftag( name, tag )
Argument Summary
name the image object
tag the name of the tag to retrieve

Calling

Supports named-parameter calling allowing you to use the function like:

ImageGetexiftag(
   name=?, 
   tag=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageGetexiftag( ArgumentCollection={
   name : ?, 
   tag : ?
} );