I use EXIFTOOL meanwhile. I created an XMP template containing EXIF and IPTC. Prior converting the TIFF into JPG I run EXIFTOOL. While conversation from TIFF to JPG these data will be kept.
These are the codes (I run them automatically as a batch file afterwards Capture1 has convertered my RAW into TIFF):
EXIFTOOL
Code: Select all
exiftool -tagsfromfile "%LOCALAPPDATA%\CaptureOne\_capture1-skripte\exif\exif.xmp" -all:all -overwrite_original %1
MAGICK
Code: Select all
magick %1[0] -quality 95 -sampling-factor 4:2:2 -set filename:ausgabe "%%d\\%%t" %%[filename:ausgabe].jpg
The EXIF and IPTC data will not be shown at Irfanview but with EXIFTOOL and with Photoshop. Therefore it seems to me that Irfanview has a bug.
Thanks for your support! From my point of view this topic is closed.
P.S.: I considered your comment that CONVERT, MOGRIFY etc are only for compatibility reasons and they were replaced by MAGICK.