Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
EnumTags(Stream,Int32) Method
See Also 
Leadtools.Codecs Namespace > RasterCodecs Class > EnumTags Method : EnumTags(Stream,Int32) Method



stream
A Stream containing the input file image data.
pageNumber
1-based index of the page from which to enumerate the tags.
Enumerates all the tags in a stream.

Syntax

Visual Basic (Declaration) 
Public Overloads Sub EnumTags( _
   ByVal stream As Stream, _
   ByVal pageNumber As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterCodecs
Dim stream As Stream
Dim pageNumber As Integer
 
instance.EnumTags(stream, pageNumber)
C# 
public void EnumTags( 
   Stream stream,
   int pageNumber
)
C++/CLI 
public:
void EnumTags( 
   Stream^ stream,
   int pageNumber
) 

Parameters

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

Example

For an example, refer to EnumTags.

Remarks

This method will fire the TagFound event for each tag found in the stream.

Currently, only TIFF and Exif files contain tags.

For multipage TIFF files, you can enumerate the tags from a particular page. Specify the page number whose tags to enumerate.

This method enumerates the standard TIFF tags and the user tags. Standard TIFF tags are less than 32767. User TIFF tags are usually between 32768 and 65535.

To enumerate the tags stored in a disk file, use EnumTags.

To read a tag value, use ReadTag and to read all the tags in a file, use RasterCodecs.ReadTags(String,Int32).

For general information about TIFF tags, refer to Implementing TIFF Comments and Tags.

Do not attempt to use DeleteTag to delete tags from inside the TagFound event. If you want to delete tags that you enumerate, use this event to add the tags to a list. Upon returning from EnumTags, you can delete all the tags from the list.

You can use RasterCodecs.TagsSupported to check if a certain file format supports tags.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also