I am trying to merge three TIF files with CMYK colors into one. This is the command I used:
Code: Select all
magick *.tif -background white +smush 700 ./combined.tif
Somehow, the colorspace gets messed up. I tried several variations of the command, up until downloading the US Web Coated (SWOP) ICC Color profile and telling imagemagick to use it:
Code: Select all
magick *.tif -colorspace CMYK -background white +smush 700 -profile ./USWebCoatedSWOP.icc ./combined.tif
IrfanView opens the TIF just fine but shows the broken colors.