How to get rid of -dUseCIEColor
Posted: 2011-03-25T10:24:56-07:00
Hi,
when I convert a CMYK-PDF into a JPEG (convert -density 300 lala.pdf lala.jpg) the following deletate is used:
This produces the following command:
I want to get rid of the -dUseCIEColor option. I tried to remove the appropriate
%s
from the command-attribute of the delegate. But this does not work.
Any help is appreciated. Best,
Ronald
when I convert a CMYK-PDF into a JPEG (convert -density 300 lala.pdf lala.jpg) the following deletate is used:
Code: Select all
<delegate decode="ps:color" restrain="True" command=""@PSDelegate@" -q -dQUIET -dPARANOIDSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dEPSCrop -dAlignToPixels=0 -dGridFitTT=0 "-sDEVICE=pnmraw" -dTextAlphaBits=%u -dGraphicsAlphaBits=%u "-g%s" "-r%s" %s "-sOutputFile=%s" "-f%s" "-f%s""/>
This produces the following command:
Code: Select all
convert: `%s': %s "gswin32c.exe" -q -dQUIET -dPARANOIDSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dEPSCrop -dAlignToPixels=0 -dGridFitTT=0 "-sDEVICE=bmpsep8" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-g2008x2833" "-r300x300" -dUseCIEColor "-sOutputFile=C:/Users/ploe09/AppData/Local/Temp/magick-YKZ1z80s" "-fC:/Users/ploe09/AppData/Local/Temp/magick-KjYBln0Z" "-fC:/Users/ploe09/AppData/Local/Temp/magick-Kd6bYGGj".
%s
from the command-attribute of the delegate. But this does not work.
Any help is appreciated. Best,
Ronald