Prawn可以生成CMYK格式的PDF吗?
我的客户说生成的 PDF 必须是 CMYK 格式。大虾可以这样做吗?
我在文档中找不到答案。
My client says that the generated PDFs must be in CMYK format. Can Prawn do this?
I can't find the answer in the documentation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,大虾可以做到这一点。这个主题好像被文档省略了,所以你可以看一下源代码。 此示例演示了 Prawn 对 CMYK 图像和颜色的支持。例如,Prawn::Graphics::Color#fill_color 采用一个参数或四个参数。如果提供单个参数,则它应该是 6 位 HTML 颜色。如果提供 4 个参数,则假定颜色为 CMYK 值。
Yes, Prawn can do this. This topic seems to be omit by documentation, so that you can look at source code. This example demonstrates Prawn's support for CMYK images and colors. For example, Prawn::Graphics::Color#fill_color take either one argument or four arguments. If a single argument is provided, it should be a 6 digit HTML color. If 4 arguments are provided, the color is assumed to be a CMYK value.