public IDictionary<string, string> ReadMetadataItems(
string fileName,
int pageNumber
)
Public Overloads Function ReadMetadataItems( _
ByVal fileName As String, _
ByVal pageNumber As Integer _
) As IDictionary(Of String,String)
public:
IDictionary<String^,String^>^ ReadMetadataItems(
String^ fileName,
int pageNumber
)
fileName
A String containing the name of the image file from which the metadata should be read.
pageNumber
1-based index to the page number from which the metadata should be read.
Returns a Dictionary. of key, value pairs for the file metadata items.
The file referenced by filename
must be a file format that supports XMP. For example PNG, PDF, JPEG, TIFF, SVG, DOC, DOCX, XLS, XLSX, PPT and PPTX. The possible values for the metadata keys are:
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Color;
using Leadtools.Svg;
public static void ReadMetadataItemsExample()
{
// The source file
string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "random.dxf");
using (var codecs = new RasterCodecs())
{
bool isMetadataItemsSupported;
using (var fileInfo = codecs.GetInformation(srcFileName, false))
{
Console.WriteLine("Format {0}", (int)fileInfo.Format);
//Check if Metadata supported for the specified file format.
isMetadataItemsSupported = RasterCodecs.MetadataItemsSupported(fileInfo.Format);
Console.WriteLine("isMetadataItemsSupported {0}", isMetadataItemsSupported);
}
if (isMetadataItemsSupported)
{
IDictionary<string, string> metadata = null;
try
{
//Read Metadata Items
metadata = codecs.ReadMetadataItems(srcFileName, 1);
}
catch (RasterException ex)
{
Console.WriteLine(ex.Message);
}
Console.WriteLine("Items count {0}", metadata.Count);
foreach (var item in metadata)
{
//Key Ex: RasterCodecs.FileMetadataKeyAuthor;
Console.WriteLine("{0}: {1}", item.Key, item.Value);
}
}
}
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images";
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document