Add border of 'cmyk(0,0,0,255)' is about 5 times slower than
Posted: 2007-08-15T08:39:48-07:00
Adding border of 'cmyk(0,0,0,255)' is about 5 times slower than 'cmyk(255,0,0,0)'
I process CMYK images appr. 5600x3600, and try to add black border with
It takes 75 sec on my machine. Then I try
and it finishes in only 15 seconds! Why?
The same difference (depending on border color) is when I add border with
and
version is 6.3.5.6
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