Convert CMYK EPS to RGB PNG maintaining transparency
Posted: 2011-07-27T03:11:32-07:00
Hello all
Really hoping someone can help me as I've been looking at this for ages and just can't quite get to the answer. I'm trying to convert a EPS CMYK file with a transparent background to a RGB PNG. Sounds simple, right? I started with this command:
The transparency remained but the colours look terrible. I thought this was down to profiles, so I then tried specifying the profiles I wanted to use with:
The colours look perfect but now I have lost the transparency (it's turned to white). So, next I tried:
However, this gives the error:
I don't want to use an option like "-transparent white" as I have white in some of my images that I want to keep as white.
Does anyone what the command I need is? Below are the links to the EPS and ICC files I am using.
Your help is really appreciated. Thanks!
INPUT EPS FILE - http://myfreefilehosting.com/f/401e91a1b2_0.36MB
COLOR PROFILE (CMYK) - USWebCoatedSWOP.icc http://myfreefilehosting.com/f/95908d3385_0.53MB
COLOR PROFILE (RGB) - sRGB.icc http://myfreefilehosting.com/f/1f4d8771eb_0.1MB
Really hoping someone can help me as I've been looking at this for ages and just can't quite get to the answer. I'm trying to convert a EPS CMYK file with a transparent background to a RGB PNG. Sounds simple, right? I started with this command:
Code: Select all
convert -colorspace rgb input_cmyk_transparent.eps output_rgb.png
Code: Select all
convert input_cmyk_transparent.eps output_rgb.png -profile USWebCoatedSWOP.icc -profile SRGB.icc output_rgb.png
Code: Select all
convert -colorspace rgb input_cmyk_transparent.eps output_rgb.png -profile USWebCoatedSWOP.icc -profile SRGB.icc output_rgb.png
Code: Select all
color profile operates on another colorspace `icc'
Does anyone what the command I need is? Below are the links to the EPS and ICC files I am using.
Your help is really appreciated. Thanks!
INPUT EPS FILE - http://myfreefilehosting.com/f/401e91a1b2_0.36MB
COLOR PROFILE (CMYK) - USWebCoatedSWOP.icc http://myfreefilehosting.com/f/95908d3385_0.53MB
COLOR PROFILE (RGB) - sRGB.icc http://myfreefilehosting.com/f/1f4d8771eb_0.1MB