Visual Basic (Declaration) | |
---|---|
Public Overloads Function ReadGeoKeys( _ ByVal fileName As String, _ ByVal pageNumber As Integer _ ) As RasterCollection(Of RasterTagMetadata) |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public RasterCollection<RasterTagMetadata> ReadGeoKeys( string fileName, int pageNumber ) |
C++/CLI | |
---|---|
public: RasterCollection<RasterTagMetadata> ReadGeoKeys( 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 GeoKey tags.
Return Value
A collection of 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.To read a specific geo key stored in a file, use ReadGeoKey and to enumerate all the geo keys stored in a file use EnumGeoKeys.
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 stream containing the image data, use ReadGeoKeys.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Reference
RasterCodecs ClassRasterCodecs Members
Overload List
GeoKeysSupported Method
ReadGeoKeys(String,Int32) Method
EnumGeoKeys(String,Int32) Method
CommentsSupported Method
GeoKeysSupported Method
GeoKeys Property
RasterImage.GeoKeys
Working with Markers
Implementing TIFF Comments and Tags
TIFF File Comments
Implementing GeoKeys (GeoTIFF tags)
RasterCommentMetadataType