What's the best way to convert a .eps (CMYK) to a .jpg (RGB) with Image Magick
- by Slinky
Hi All,
I have a bunch of .eps files (CMYK) that I need to convert to .jpg (RGB) files.
The following command sometimes gives me under or over saturated .jpg images, when compared to the source EPS file:
$cmd = "convert -density 300 -quality 100% -colorspace RGB ".$epsURL." -flatten -strip ".$convertedURL;
Is there a smarter way to do…