GroupDocsGists
10/19/2017 - 11:38 AM

GetXMPPropertiesGifImage.vb

' For complete examples and data files, please go to https://github.com/groupdocsmetadata/GroupDocs_Metadata_NET
' initialize GifFormat
Dim gifFormat As New GifFormat(Common.MapSourceFilePath(filePath))

' get XMP data
Dim xmpProperties As XmpProperties = gifFormat.GetXmpProperties()

' show XMP data
For Each key As String In xmpProperties.Keys
    Dim xmpNodeView As XmpNodeView = xmpProperties(key)
    Console.WriteLine("[{0}] = {1}", xmpNodeView.Name, xmpNodeView.Value)