Code: Select all
D:\>ImageMagick_693_Q8\convert -density 300 Diet7up.eps ^
-profile D:\ImageMagick_693_Q8\USWebCoatedSWOP.icc ^
-profile D:\ImageMagick_693_Q8\AdobeRGB1998.icc ^
-resize 128x128 -quality 95 test.jpg
However, when looking at the verbose information for your EPS file, I see it already has a USWebCoatedSWOP.icc profile. So the following is sufficient (leaving out the first profile that your file already contains).
Code: Select all
D:\>ImageMagick_693_Q8\convert -density 300 Diet7up.eps ^
-profile D:\ImageMagick_693_Q8\AdobeRGB1998.icc ^
-resize 128x128 -quality 95 test.jpg