Reads all the tags stored in a TIFF file, along with the offsets for each tag.
public IAsyncOperation<IVector<RasterTagMetadata>> ReadTagsWithOffsetsAsync(
ILeadStream stream,
int pageNumber,
IVector<long> offsets
)
Public Function ReadTagsWithOffsetsAsync( _
ByVal stream As ILeadStream, _
ByVal pageNumber As Integer, _
ByVal offsets As IVector(Of Long) _
) As IAsyncOperation(Of IVector(Of RasterTagMetadata))
public IAsyncOperation<IVector<RasterTagMetadata>> ReadTagsWithOffsetsAsync(
ILeadStream stream,
int pageNumber,
IVector<long> offsets
)
function Leadtools.Codecs.RasterCodecs.ReadTagsWithOffsetsAsync(
stream ,
pageNumber ,
offsets
)
public:
IAsyncOperation<IVector<RasterTagMetadata^>^>^ ReadTagsWithOffsetsAsync(
ILeadStream^ stream,
int pageNumber,
IVector<int64>^ offsets
)
stream
A ILeadStream containing the input image data.
pageNumber
1-based index of the page from which to read the tags.
offsets
An array that contains the offsets for each tag.
When this method completes, it returns a collection of RasterTagMetadata containing all the tags found in the file. If the file does not contain any tags, an empty collection will be returned. If the file format does not support tags, an exception will be thrown.
To read a specific tag stored in a file, use ReadTag and to enumerate all the tag ids (but not the data) stored in a file use EnumTags.
This method will throw an exception if the file format does not support tags. To determine whether a file format supports tags, use TagsSupported. You can also automatically load all the tags stored in a file during a load operation by setting the CodecsLoadOptions.Tags property to true. The tags data will be stored in the resulting image RasterImage.Tags collection.
To load all the tags stored in a disk file, use ReadTags.
ReadTag(String,Int32,Int32) Method
Implementing TIFF Comments and Tags
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