←Select platform

ReadGeoKeys(string,int) Method

Summary

Reads all the GeoKey data found in a TIFF file.

Syntax

C#
VB
Objective-C
WinRT C#
C++
public RasterCollection<RasterTagMetadata> ReadGeoKeys( 
   string fileName, 
   int pageNumber 
) 
Public Overloads Function ReadGeoKeys( _ 
   ByVal fileName As String, _ 
   ByVal pageNumber As Integer _ 
) As Leadtools.RasterCollection(Of RasterTagMetadata) 
- (nullable NSArray<LTRasterTagMetadata *> *)readGeoKeysFromFile:(NSString *)file  
                                                      pageNumber:(NSInteger)pageNumber  
                                                           error:(NSError **)error 
             
 function Leadtools.Codecs.RasterCodecs.ReadGeoKeys(String,Int32)(  
   fileName , 
   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 GeoKeys, an empty collection will be returned. If the file format does not support GeoKeys, an exception will be thrown.

Remarks

To read a specific GeoKey stored in a file, use ReadGeoKey and to enumerate all the GeoKeys stored in a file use EnumGeoKeys.

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

To load all the GeoKeys stored in a stream containing the image data, use ReadGeoKeys.

Example

For an example, refer to ReadTags.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Codecs Assembly