convert CMYK EPS to RGBA PNG with clip (with profile)
Posted: 2009-05-11T08:49:32-07:00
Hi all,
I have a CMYK EPS witha clip path inside, and I want to generate a png width the path clipped, so basically the picture with a transparent background, and I need to use icc profiles to make the conversion.
here is a sample of what I tried:
I'm getting crazy :p turning and trying options in every way.
Could you help me ?
I have a CMYK EPS witha clip path inside, and I want to generate a png width the path clipped, so basically the picture with a transparent background, and I need to use icc profiles to make the conversion.
here is a sample of what I tried:
Code: Select all
#leads to a full transparent image:
convert 841267.eps -alpha On -background transparent -clip-path #1 -profile ../media/icc/ISOcoated.icc -profile ../media/icc/AdobeRGB1998.icc -depth 8 -resize 500x500 841267_clip+adobergb.png
# leads to a black background image:
convert 841267.eps -alpha On -clip -profile ../media/icc/ISOcoated.icc -profile ../media/icc/AdobeRGB1998.icc -depth 8 -resize 500x500 841267_clip+adobergb.png
Could you help me ?