Gets a list of all metadata models stored in the image.

Syntax

rv = Send_Message(Ctrl, "OLE.GetMetaDataModels")

Returns

@FM delimited list of metadata models

Remarks

The GetMetaDataModels method enumerates all the metadata models stored in the image. In most images, metadata is grouped or categorized into models. So, it is sufficient to say that this method will tell you what groups of data you can view. There are currently 11 recognized models, or groups of metadata:

Name
Comments
ExifMain
ExifAdvanced
ExifGPS
ExifMaker
ExifInterop
IPTC
XMP
GeoTiff
Animation
Custom

The model names in this list can be used in the GetMetaData or GetMetaDataTag methods.

Example

// Get the list of meta data models 
Models = Send_Message(@Window:".OLE_PICTURE", "OLE.GetMetaDataModels") 

// Get the meta data for the first model 
Tags = Send_Message(@Window:".OLE_PICTURE", "OLE.GetMetaData", Models<1>)

See Also

GetMetaDataGetMetaDataTag

  • No labels