Added
Link Here
|
0 |
- |
1 |
--- src/core/raster/qgsexiftools.cpp.orig 2023-05-26 12:01:31 UTC |
|
|
2 |
+++ src/core/raster/qgsexiftools.cpp |
3 |
@@ -94,7 +94,7 @@ QVariant decodeExifData( const QString &key, Exiv2::Ex |
4 |
case Exiv2::signedLong: |
5 |
case Exiv2::unsignedLongLong: |
6 |
case Exiv2::signedLongLong: |
7 |
- val = QVariant::fromValue( it->toLong() ); |
8 |
+ val = QVariant::fromValue( it->toInt64() ); |
9 |
break; |
10 |
|
11 |
case Exiv2::tiffDouble: |
12 |
@@ -108,7 +108,7 @@ QVariant decodeExifData( const QString &key, Exiv2::Ex |
13 |
case Exiv2::signedByte: |
14 |
case Exiv2::tiffIfd: |
15 |
case Exiv2::tiffIfd8: |
16 |
- val = QVariant::fromValue( static_cast< int >( it->toLong() ) ); |
17 |
+ val = QVariant::fromValue( static_cast< int >( it->toInt64() ) ); |
18 |
break; |
19 |
|
20 |
case Exiv2::date: |