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



fileName
A String containing the input file name.
pageNumber
1-based index of the page from which to read the comments.
Gets all the comment fields stored in a file.

Syntax

Visual Basic (Declaration) 
Public Overloads Function ReadComments( _
   ByVal fileName As String, _
   ByVal pageNumber As Integer _
) As RasterCollection(Of RasterCommentMetadata)
Visual Basic (Usage)Copy Code
Dim instance As RasterCodecs
Dim fileName As String
Dim pageNumber As Integer
Dim value As RasterCollection(Of RasterCommentMetadata)
 
value = instance.ReadComments(fileName, pageNumber)
C# 
public RasterCollection<RasterCommentMetadata> ReadComments( 
   string fileName,
   int pageNumber
)
C++/CLI 
public:
RasterCollection<RasterCommentMetadata> ReadComments( 
   String^ fileName,
   int pageNumber
) 

Parameters

fileName
A String containing the input file name.
pageNumber
1-based index of the page from which to read the comments.

Return Value

A collection of RasterTagMetadata containing all the comment fields information found in the file. If the file does not contain any comments, an empty collection will be returned. If the file format does not support comment fields, an exception will be thrown.

Example

For an example, refer to RasterCodecs.ReadTags(String,Int32).

Remarks

Some file formats can contain comments, and some cannot, and each file format has its own set of comment types. When you save a file, the comments in the RasterImage object can be saved in the file. The index into the array (specified using a constant) determines the type of comment.

To read a specific comment field stored in a file, use ReadComment.

This method will throw an exception if the file format does not support comments fields. To check if a file format supports comment fields, use RasterCodecs.CommentsSupported. You can also automatically load all the comment fields stored in a file during a load operation by setting the CodecsLoadOptions.Comments property to true. The comment fields data will be stored in the result image RasterImage.Comments collection.

To load all the comments stored in a stream, use ReadComments.

Requirements

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

See Also