diff --git a/bigtiff/parse.cpp b/bigtiff/parse.cpp index c155316e..dae89ac6 100644 --- a/bigtiff/parse.cpp +++ b/bigtiff/parse.cpp @@ -97,7 +97,10 @@ bool is4ByteType(uint16_t type) bool is8ByteType(uint16_t type) { return isRationalType(type) - || type == tiffDouble; + || type == tiffDouble + || type == unsigned64 + || type == signed64 + || type == tiffIfd8; } constexpr bool isBigEndianPlatform()