Added tag for GPS info
This commit is contained in:
parent
0a74bc8b34
commit
3f1d54f2a7
3
TIFF.cpp
3
TIFF.cpp
@ -64,7 +64,8 @@ static const std::map<TiffTag, std::string> tagDescriptions = {
|
|||||||
{OPCODE_LIST_1, "Opcode list 1"},
|
{OPCODE_LIST_1, "Opcode list 1"},
|
||||||
{OPCODE_LIST_2, "Opcode list 2"},
|
{OPCODE_LIST_2, "Opcode list 2"},
|
||||||
{OPCODE_LIST_3, "Opcode list 3"},
|
{OPCODE_LIST_3, "Opcode list 3"},
|
||||||
{NOISE_PROFILE, "Noise profile"}
|
{NOISE_PROFILE, "Noise profile"},
|
||||||
|
{GPS_INFO, "GPS info (offset to IFD)"}
|
||||||
};
|
};
|
||||||
|
|
||||||
std::ostream &operator<<(std::ostream &stream, Compression compression) {
|
std::ostream &operator<<(std::ostream &stream, Compression compression) {
|
||||||
|
|||||||
1
TIFF.h
1
TIFF.h
@ -58,6 +58,7 @@ enum TiffTag: uint16_t {
|
|||||||
EXPOSURE_TIME = 0x829A,
|
EXPOSURE_TIME = 0x829A,
|
||||||
F_NUMBER = 0x829D,
|
F_NUMBER = 0x829D,
|
||||||
EXIF_IFD = 0x8769,
|
EXIF_IFD = 0x8769,
|
||||||
|
GPS_INFO = 0x8825,
|
||||||
ISO_SPEED_RATINGS = 0x8827,
|
ISO_SPEED_RATINGS = 0x8827,
|
||||||
DATE_TIME_ORIGINAL = 0x9003,
|
DATE_TIME_ORIGINAL = 0x9003,
|
||||||
FOCAL_LENGTH = 0x920A,
|
FOCAL_LENGTH = 0x920A,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user