Convert PDF to CMYK but ignore black?

大城市里の小女人 提交于 2020-01-13 19:01:17

问题


I am converting an RGB PDF to CMYK using the following command:

/usr/local/bin/gs -dSAFER -dBATCH -dNOPAUSE -dNOCACHE -sDEVICE=pdfwrite \ 
-sColorConversionStrategy=CMYK -sColorConversionStrategyForImages=CMYK \
-dProcessColorModel=/DeviceCMYK -dEncodeColorImages=false \
-dEncodeGrayImages=false -dEncodeMonoImages=false -sOutputFile=CMYK.PDF RGB.PDF

The resulting file is 100% CMYK, however anything that was 100% black in the RGB PDF is now:

C: 72%
M: 68%
Y: 67%
K: 89%

The result is that black is a slightly dark grey when really it should be black.

Is there anything I need to add to this command to ensure black remains as black during the conversion?


回答1:


With the current version of pdfwrite you are restricted to the colour conversions in the software, and there is nothign you can do about this.

The colour management is undergoing serious revision, and the next release should make it possible to deal with this.



来源:https://stackoverflow.com/questions/21751887/convert-pdf-to-cmyk-but-ignore-black

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!