GroupDocsGists
10/19/2017 - 11:37 AM

GetXMPPropertiesGifImage.cs

// For complete examples and data files, please go to https://github.com/groupdocsmetadata/GroupDocs_Metadata_NET
// initialize GifFormat
GifFormat gifFormat = new GifFormat(Common.MapSourceFilePath(filePath));

// get XMP data
XmpProperties xmpProperties = gifFormat.GetXmpProperties();

// show XMP data
foreach (string key in xmpProperties.Keys)
{
    XmpNodeView xmpNodeView = xmpProperties[key];
    Console.WriteLine("[{0}] = {1}", xmpNodeView.Name, xmpNodeView.Value);
}