我在尝试在 pdf 中插入图像同时更改其色彩空间时遇到了一些麻烦。现在我有一个 png 单色图像(8 位,1 位深度),其中 1 是黑色,0 是透明的(类似于蒙版)。我想将此图像插入 pdf 文件并将色彩空间更改为分离,因为它需要使用专色打印。有没有办法做到这一点?
目前我试过这个:
<</Type /XObject
/Subtype /Image
/Width 800
/Height 600
/ColorSpace <</CS0 6 0 R>>
/BitsPerComponent 1
/Filter /FlateDecode
/DecodeParms <</Predictor 15 /Colors 1 /BitsPerComponent 1 /Columns 800>>
这是分离色彩空间:
6 0 obj
[/Separation /White 10 0 R
<<
/FunctionType 2
/N 1
/Range [0 1 0 1 0 1 0 1]
/C1 [1 0 0 0]
/Domain [0 1]
/C0 [0 0 0 0]
我还尝试添加内联的色彩空间定义,但没有奏效。