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?".
I'm trying to resize an eps that has a clipping path embeded in CMYK colorspace.
First: when I resize "convert -channel cmyk -density 72 -scale 99999x200 test.eps testresize.eps" i get a color shifting. It looks like it's converted to RGB as what the color looks like but the file still in CMYK.
Second: I'm never able to keep the clipping path. How should I do it?
ImageMagick does not scale your clipping path. ImageMagick is primarly a pixel processor. We suspect it is not suited for your needs. You need a program that performs the scaling in vector space. Even better you can always wrap Postscript with a scale operation. That might be your best option.