Reads all the metadata markers (COM and APPn) from a file.
public Leadtools.RasterCollection<RasterMarkerMetadata> ReadMarkers(
string fileName
)
Public Overloads Function ReadMarkers( _
ByVal fileName As String _
) As Leadtools.RasterCollection(Of RasterMarkerMetadata)
public Leadtools.RasterCollection<RasterMarkerMetadata> ReadMarkers(
string fileName
)
- (nullable NSArray<LTRasterMarkerMetadata *> *)readMarkersFromFile:(NSString *)file error:(NSError **)error
function Leadtools.Codecs.RasterCodecs.ReadMarkers(String)(
fileName
)
public:
Leadtools.RasterCollection<RasterMarkerMetadata^>^ ReadMarkers(
String^ fileName
)
fileName
A String containing the input file name.
A collection of RasterMarkerMetadata objects containing the metadata marker data.
This method reads all the metadata markers from a file, and returns a collection of the markers.
For Exif files, this metadata collection will contain all the Exif and GPS comments, stored in APP1. It will also contain the audio information stored in APP2.
If the file contains no marker, then this method will return an empty collection.
This example will read all the markers from an EXIF file
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Color;
using Leadtools.Svg;
using LeadtoolsExamples.Common;
void ReadMarkersFromFileExample(string exifFileName)
{
RasterCodecs codecs = new RasterCodecs();
RasterCollection<RasterMarkerMetadata> markers = codecs.ReadMarkers(exifFileName);
Console.WriteLine("{0} markers found with the following ID's:", markers.Count);
foreach (RasterMarkerMetadata marker in markers)
Console.WriteLine(marker.Id);
codecs.Dispose();
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing
Imports Leadtools.ImageProcessing.Color
Imports Leadtools.Drawing
Imports Leadtools.Svg
Private Sub ReadMarkersFromFileExample(ByVal exifFileName As String)
Dim codecs As RasterCodecs = New RasterCodecs()
Dim markers As RasterCollection(Of RasterMarkerMetadata) = codecs.ReadMarkers(exifFileName)
Console.WriteLine("{0} markers found with the following ID's:", markers.Count)
For Each marker As RasterMarkerMetadata In markers
Console.WriteLine(marker.Id)
Next marker
codecs.Dispose()
End Sub
Products |
Support |
Feedback: ReadMarkers(String) Method - Leadtools.Codecs |
Introduction |
Help Version 19.0.2017.6.16
|
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.