Converting CMYK pdf to RGB results in white lines and some font problems

3

1

I use the following command to convert a pdf from CMYK to RGB - I dont have access to the generation of these PDFs. The reason I'm doing it is so that the colours look correct on an iPod device.

ps2pdf -dPDFSETTINGS=/screen -dOptimize=true -dUseCIEColor some.pdf converted.pdf

When I run this there are some white lines that appear and the fonts on some parts of the page are messed up. These problems are not present on the source pdf files.

Thanks!

Arilan

Posted 2011-03-10T17:03:27.910

Reputation: 133

Answers

1

This is the wrong command to achieve what you want. Try this one instead (using the full Ghostscript commandline instead of the ps2pdf wrapper around it):

gs \
 -o converted.pdf \
 -sDEVICE=pdfwrite \
 -sProcessColorModel=DeviceRGB \
 -sColorConversionStrategy=sRGB \
 -sColorConversionStrategyForImages=sRGB \
  some.pdf

Kurt Pfeifle

Posted 2011-03-10T17:03:27.910

Reputation: 10 024