Created attachment 6931 [PATCH] Fix typo in exif tag for image height In the file tumbler/plugins/ffmpeg-thumbnailer/ffmpeg-thumbnailer.c the if condition at line 500 matches the previous if condition at line 498: 498 if (tag == 0x0100) 499 exif->thumb.thumb_tiff.width = value; 500 else if (tag == 0x0100) 501 exif->thumb.thumb_tiff.height = value; According to [1], Exif.Image.ImageLength (here called height) is tag 0x0101. Found by cppcheck. [1] http://www.exiv2.org/tags.html
Correction: The excerpt above is actually from the file tumbler/plugins/jpeg-thumbnailer/jpeg-thumbnailer.c
Sorry for the delay, patch has been applied to git master and it will be included in the next release.