Color Problem while converting CMYK EPS to jpg

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
rahulrr

Color Problem while converting CMYK EPS to jpg

Post by rahulrr »

Greetings,

I am trying to convert CMYK EPS image to jpg file. Command i am using is -->
convert -density 400 [input.eps] -profile [USWebCoatedSWOP.icc] -profile [sRGB.icc] -geometry 630x428 +profile '*' -quality 75 [output.jpg]

following is the URL of eps file.
http://202.41.212.85/~imagemagick/shoe_orig.eps

I am getting different result in different verions of GS.

Using IM 6.1.6 & GS 8.01 i am getting proper colors in jpg file.
following is the URL of jpg file.
http://202.41.212.85/~imagemagick/shoe_good.jpg

Using IM 6.1.6 & GS 8.14 i am not getting proper colors in jpg file.
following is the URL of jpg file.
http://202.41.212.85/~imagemagick/shoe_bad.jpg

I also tried same command in IM 6.2.5 & GS 8.53 but still i am not getting proper resutls.

Is this a bug ? or am I doing some thing wrong here?
I appreciate any help.


Regards,
Rahul
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

We get good results with this command:
  • convert -density 400 shoe.eps -colorspace rgb -resize 630x428 -strip -quality 75 shoe.jpg
With ImageMagick 6.2.6 you can use this command as well to bypass using profiles:
  • convert -density 400 -colorspace rgb shoe.eps resize 630x428 -strip -quality 75 shoe.jpg
Post Reply