Type Default Value Read Only Static Description
Byte[] None Yes No The byte sequence of all the Gps data.
Notes

This property allows you to access the raw Gps data as it was stored in the Exif metadata.

For details of the way in which Exif data can be parsed, please refer to http://www.exif.org.

Example

[C#]

Metadata metadata = new Metadata(Server.MapPath("rez/exif.jpg"));
byte[] bytes = metadata.Exif.Gps;
// parse bytes


This example illustrates how to get the raw gps Exif data for your own parser.