1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-06-27 03:29:16 +02:00

Fixed lat/lon reference parsing in big endian EXIF entries

Closes #218
This commit is contained in:
2019-08-11 09:26:54 +02:00
parent b72a9e67fe
commit 680104fec3
2 changed files with 6 additions and 2 deletions

View File

@ -17,6 +17,7 @@ public:
TIFFFile(QIODevice *device);
bool isValid() const {return _ifd != 0;}
bool isBE() const {return _be;}
quint32 ifd() const {return _ifd;}
bool seek(qint64 pos) {return _device->seek(_offset + pos);}