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

后端 未结 4 836
梦毁少年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:18

    On mac, you could use sips command. For example,

    sips --matchTo '/System/Library/ColorSync/Profiles/Generic RGB Profile.icc' CMYKinput.pdf --out RGBoutput.pdf
    

    And RGB pdf can be converted into CMYK in the same way (change 'Generic RGB Profile.icc' to 'Generic CMYK Profile.icc').

    Tested on OSX 10.12.

提交回复
热议问题