I'm and infrequent user of IM and most of the times I just use it to make thumbnails but my current project is to make a lowres CMYK PDF but I'm having problems with the output colour.
In its simplest form the command is:
convert input.pdf output.pdf
which gives me incorrect colour i.e. A red that has a CMYK value of:
0% cyan
100% Magenta
100% Yellow
0% black
is being converted too:
0% cyan
77% Magenta
83% Yellow
0% black
Could this be down to GhostScript? my full command is this:
Code: Select all
/usr/bin/convert -colorspace CMYK -profile "$iccProfilePath" -units PixelsPerInch -define pdf:use-trimbox=true -density 150 "$image1" -resize 2480x2480 -colorspace CMYK -profile "$iccProfilePath" -compress jpeg "$lowRes"