Reason is Photoshop tag 37724, Photoshop saves Image in this block, but ImageMagick color Conversion only touches Real image.
i think somehow Photoshop first loads image from this block, so profile Information and Image Data mismatch.
Older versions of ImageMagick would just ignore the block and throw it away, so resulting Image would always looks fine. Current ImageMagick should have option to ignore tag:
http://www.imagemagick.org/script/comma ... php#define
tiff:ignore-tags=comma-separate-list-of-tag-IDs
Allows one or more tag ID values to be ignored.
But for me -define tiff:ignore-tags=37724 does nothing.
Current solution for me:
exiftool -overwrite_original -imageSourceData= output.tif
maybe somoene can help how to properly use ignore-tags