Convert RGB jpeg to CMYK eps

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Russ

Convert RGB jpeg to CMYK eps

Post by Russ »

Im trying to convert an RGB jpeg image to a CMYK eps, but the eps file is always created with an RGB colourspace. This is what im doing;

Code: Select all

convert image.jpg -profile "SNAP2007.icc" image_cmyk.eps
I can convert to a cmyk jpeg, just not a CMYK eps, so im wondering if i'm missing a command or if this conversion is supported?

I'm using Imagemagick 6.6.5 Q16 and Ghostscript 8.71.

Thanks.
Russ

Re: Convert RGB jpeg to CMYK eps

Post by Russ »

If anyone's interested - I've gotten this to work by using postscript level 3;

Code: Select all

convert image.jpg -profile "SNAP2007.icc" image_cmyk.eps3
Post Reply