JScript EXIF

EXIF is an interface wrapper accessible as a property of the Document object that makes the EXIF data accessible to scripts.

Methods and properties

Example

// display a message with camera model if it exists
if (Document.EXIF != null && Document.EXIF.Exists)
  Application.MessageBox(Document.EXIF.GetValueByName("Model"), "Model", false);

speech bubble iconRecent comments

user icon