Error processing SSI file
LEADTOOLS Image File Support (Leadtools.Codecs assembly)

Show in webframe

ReadTag(Stream,Int32,Int32) Method








A Stream containing the input file image data.
1-based index of the page from which to read the tag.

Tag to identify the data in the TIFF file. Use the same tag that you specified in the WriteTag. Examples of registered tags are:

Value Meaning
0x8298 Copyright comment
0x8769 General Exif comments
0x8825 Exif GPS comments
0x80A4 Annotation TIFF tag
Gets the specified tagged data from a TIFF stream.
Syntax
'Declaration
 
Public Overloads Function ReadTag( _
   ByVal stream As Stream, _
   ByVal pageNumber As Integer, _
   ByVal id As Integer _
) As RasterTagMetadata
'Usage
 
Dim instance As RasterCodecs
Dim stream As Stream
Dim pageNumber As Integer
Dim id As Integer
Dim value As RasterTagMetadata
 
value = instance.ReadTag(stream, pageNumber, id)
- (nullable LTRasterTagMetadata *)readTag:(NSUInteger)tagId 
                               fromStream:(LTLeadStream *)stream 
                               pageNumber:(NSInteger)pageNumber 
                                    error:(NSError **)error
            
public RasterTagMetadata readTag(ILeadStream stream, int pageNumber, int id)
 function Leadtools.Codecs.RasterCodecs.ReadTag(Stream,Int32,Int32)( 
   stream ,
   pageNumber ,
   id 
)

Parameters

stream
A Stream containing the input file image data.
pageNumber
1-based index of the page from which to read the tag.
id

Tag to identify the data in the TIFF file. Use the same tag that you specified in the WriteTag. Examples of registered tags are:

Value Meaning
0x8298 Copyright comment
0x8769 General Exif comments
0x8825 Exif GPS comments
0x80A4 Annotation TIFF tag

Return Value

The tag data.
Remarks

This method is provided to support TIFF tags that you define. If no such tag exists in the image, this method will return a null reference.

To read all the tags stored in a file, use ReadTags

You can use TagsSupported to determine whether a certain file format supports tags.

Example
For an example, refer to DeleteTag.
Requirements

Target Platforms

See Also

Reference

RasterCodecs Class
RasterCodecs Members
Overload List
Implementing TIFF Comments and Tags
EnumTags(string, int) Method
EnumTags(Stream, int) Method

Error processing SSI file