2
votes
1answer
128 views

eps cmyk color matplotlib output

I need to output my plots in EPS with the CMYK color space. Unfortunately this particular format is requested by the journal I am submitting my work to! This discussion was the only one I could find ...
0
votes
1answer
728 views

Ghostscript: Convert PDF into CMYK EPS

is it possible to convert a PDF into a CMYK EPS using ghostscript? The following command works fine - but the result is RGB I guess: gswin32c.exe -sDEVICE=epswrite -o test.eps test.pdf This ...
4
votes
0answers
713 views

RMagick: Convert CMYK EPS to RGB PNG maintaining transparent background

I've spent a long time trying to go from a CMYK EPS to a RGB PNG using RMagick and Rails. Hopefully this will be of use to someone: def convert_image_from_cmyk_to_rgb( image ) #puts image.alpha? ...