LEADTOOLS Image File Support (Leadtools.Codecs assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
ReadGeoKeys(Stream,Int32) Method
See Also 
Leadtools.Codecs Namespace > RasterCodecs Class > ReadGeoKeys Method : ReadGeoKeys(Stream,Int32) Method



stream
A System.IO.Stream containing the input TIFF image data.
pageNumber
1-based index of the page from which to read the GeoKey tags.
stream
A System.IO.Stream containing the input TIFF image data.
pageNumber
1-based index of the page from which to read the GeoKey tags.
Read all the GeoKey data found in a stream.

Syntax

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

Parameters

stream
A System.IO.Stream containing the input TIFF image data.
pageNumber
1-based index of the page from which to read the GeoKey tags.

Return Value

A collection of Leadtools.RasterTagMetadata containing all the GeoKey tags found in the file. If the file does not contain any geo keys, an empty collection will be returned. If the file format does not support geo keys, an exception will be thrown.

Example

For an example, refer to RasterCodecs.ReadTags.

Remarks

To read a specific geo key stored in a file, use ReadGeoKey(String,Int32,Int32) and to enumerate all the geo keys stored in a file use EnumGeoKeys(String,Int32).

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

To load all the geo keys stored in a disk file, use RasterCodecs.ReadGeoKeys.

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also