From 9acc1c56a70624e74e930b403acb4bda50b47bfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Walenciak?= Date: Sun, 24 Sep 2017 16:07:26 +0200 Subject: [PATCH] adding ifd8 and long longs to is8ByteType() --- src/image.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/image.cpp b/src/image.cpp index ea78911b..0fe268d8 100644 --- a/src/image.cpp +++ b/src/image.cpp @@ -221,6 +221,8 @@ namespace Exiv2 { bool Image::is8ByteType(uint16_t type) { return isRationalType(type) + || isLongLongType(type) + || type == Exiv2::tiffIfd8 || type == Exiv2::tiffDouble ; }