I was hoping to get some assistance with an intermediate ImageMagick issue I'm encountering.
I have IM working well processing hundreds of EPS files, converting them to various sized PNG formats. For 98% of the files, the process works great. But I've run into a number of EPS files that when converted, the colors shift. I assume this has to do with color profiles or colorspaces, but I've tinkered with RGB/CMYK settings and nothing I do seems to help.
Here's an example:
Original EPS file: http://dl.dropbox.com/u/17139059/original.eps
What it looks like on screen (correct colors): http://dl.dropbox.com/u/17139059/origin ... n_shot.png
Code: Select all
convert original.eps convert.png
(The green is much brighter)
I've tried things like:
Code: Select all
convert -colorspace cmyk original.eps -colorspace rgb convert.png
convert -colorspace cmyk original.eps convert.png
Any suggestions or a point in the right direction would be appreciated!
-Mike