将CMYK pdf转换为RGB会导致白线和一些字体问题


3

我使用以下命令将pdf从CMYK转换为RGB - 我无法访问这些PDF的生成。我这样做的原因是为了让iPod设备上的颜色看起来正确。

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

当我运行它时会出现一些白线,页面某些部分的字体混乱。源pdf文件中不存在这些问题。

谢谢!

Answers:


1

这是实现你想要的错误命令。试试这个(使用完整的Ghostscript命令行而不是ps2pdf它周围的包装器):

gs \
 -o converted.pdf \
 -sDEVICE=pdfwrite \
 -sProcessColorModel=DeviceRGB \
 -sColorConversionStrategy=sRGB \
 -sColorConversionStrategyForImages=sRGB \
  some.pdf
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.