Preserve EXIF while conversation from TIF to TIF/TIF to JPG
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Preserve EXIF while conversation from TIF to TIF/TIF to JPG
If you feel this is a bug or needs enhancement, then write to the Bugs or Developers forum.
- whugemann
- Posts: 289
- Joined: 2011-03-28T07:11:31-07:00
- Authentication code: 8675308
- Location: Münster, Germany 52°N,7.6°E
Re: Preserve EXIF while conversation from TIF to TIF/TIF to JPG
I just ran into the same problem when converting RAW into TIFF, see https://imagemagick.org/discourse-serve ... 71#p167971.
It took me some time to find out that the problem was created solely by ImageMagick that deleted the Exif information during the conversion TIFF --> TIFF. And yes, there is no way of changing this by -define or -set. So this is a bug that I am going to report.
The solution is Exiftool by means of which you may just transplant the Exif information from one image to another:
It took me some time to find out that the problem was created solely by ImageMagick that deleted the Exif information during the conversion TIFF --> TIFF. And yes, there is no way of changing this by -define or -set. So this is a bug that I am going to report.
The solution is Exiftool by means of which you may just transplant the Exif information from one image to another:
Code: Select all
magick input.tiff output.tiff
exiftool -overwrite_original -TagsFromFile input.tiff output.tiff
Wolfgang Hugemann
- whugemann
- Posts: 289
- Joined: 2011-03-28T07:11:31-07:00
- Authentication code: 8675308
- Location: Münster, Germany 52°N,7.6°E
Re: Preserve EXIF while conversation from TIF to TIF/TIF to JPG
This is the official answer of the development team:
The TIFF delegate library has support for EXIF but we found it to be buggy. It often caused faults and exposed a security vector. We eventually disabled EXIF. Until we see improved support for EXIF in the TIFF delegate library, you will instead need to rely on post EXIF tools to copy, edit, or inject EXIF data.
Wolfgang Hugemann