I run a website where people can submit photos that they like. This last week, I began processing those images (specifically to resolve some image-orientation issues). That processing involves:
- fix the photo orientation using ImageMagick
- strip the embedded thumbnails using exiftool (b/c they may be oriented incorrectly)
While processing the images, I ran into this output from the exiftool
Quote
Warning: [minor] Entries in IFD0 were out of sequence. Fixed. - /Users/Tom/PhotoProblems/ce0585c9-4ffb-4c84-96ce-9661c4c598fa.jpeg
Error: [minor] Suspicious ExifIFD offset for Padding - /Users/Tom/PhotoProblems/ce0585c9-4ffb-4c84-96ce-9661c4c598fa.jpeg
0 image files updated
1 files weren't updated due to errors
My exact invocation was:
bin/Image-ExifTool-10.19/exiftool -thumbnailimage= ~/PhotoProblems/ce0585c9-4ffb-4c84-96ce-9661c4c598fa.jpeg
The image file is attached. I'm running version 10.19 on Mac OS X.
Note: I might actually just use imageMagick to strip all the metadata off instead of trying to selectively remove the thumbnail. That seems safer long-term anyway. However, I still wanted to report this for the benefit of the community.
Thanks for all your hard work!