without negate option, but replaced

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
tsuzu

without negate option, but replaced

Post by tsuzu »

I use ImageMagick 6.5.7 on windows to convert from PDF to EPS, which command is "convert -trim aaa.pdf aaa.eps"
Those PDF are almost based on Photo and illustration.

Now, some EPS is replaced each pixel with its complementary color without negate option.
So I do use "negate option" , and that is converted appropriately.
I do not know why those EPS is replaced without negate option.
Could you show me the condition that ImageMagick replace its color without option.

Thanks in advance.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: without negate option, but replaced

Post by fmw42 »

your pdf files may be cmyk format, so try

convert -colorspace rgb aaa.pdf -trim aaa.eps
tsuzu

Re: without negate option, but replaced

Post by tsuzu »

Thanks to you, I can solve the problem !
Those PDF are CMYK format as you said. Thank you very much!
Post Reply