I process CMYK images appr. 5600x3600, and try to add black border with
Code: Select all
convert -colorspace CMYK -depth 8 -density 150 -compress Zip -border 5 -bordercolor 'cmyk(0,0,0,255)' -debug 'All' -monitor 1.tif 2.tif
Code: Select all
convert -colorspace CMYK -depth 8 -density 150 -compress Zip -border 5 -bordercolor 'cmyk(255,0,0,0)' -debug 'All' -monitor 1.tif 2.tif
The same difference (depending on border color) is when I add border with
Code: Select all
montage -colorspace CMYK -depth 8 -density 150 -compress Zip -geometry +5+5 -background 'cmyk(0,0,0,255)' -debug 'All' -monitor 1.tif 2.tif
Code: Select all
montage -colorspace CMYK -depth 8 -density 150 -compress Zip -geometry +5+5 -background 'cmyk(255,0,0,0)' -debug 'All' -monitor 1.tif 2.tif
version is 6.3.5.6
Code: Select all
xpress@computer:~$ convert -version
Version: ImageMagick 6.3.5 08/15/07 Q8 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2007 ImageMagick Studio LLC