Page 1 of 1

Color Problem while converting CMYK EPS to jpg

Posted: 2006-01-16T20:23:14-07:00
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

Posted: 2006-01-17T09:08:48-07:00
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