How to convert PDF from CMYK to RGB, for displaying on iPad?

后端 未结 4 837
梦毁少年i
梦毁少年i 2021-02-03 15:22

According to this question:

Displaying PDF documents on iPad - Color Problems

some PDFs don\'t display right on iOS devices due to colors not being in RGB. It\'s

4条回答
  •  一向
    一向 (楼主)
    2021-02-03 16:14

    We use Ghostscript to convert from CMYK to RGB when generating PDFs from Postscript files. It should also work for PDF-to-PDF conversions.

    The followind command line is used:

    gs -sDEVICE=pdfwrite -dBATCH -dNOPAUSE -dCompatibilityLevel=1.4 -dColorConversionStrategy=/sRGB -dProcessColorModel=/DeviceRGB -dUseCIEColor=true -sOutputFile=output.pdf input.ps
    

提交回复
热议问题