使用 GDI+制作“添加了 CMYK 的 PNG”?
我想从 System.Drawing.Bitmap 创建一个 PNG 文件,并使用 CMYK 定义颜色。
我可以创建 PNG OK,但如何定义“使用 CMYK”?
我查看了保存方法的编码器参数参数,但在我看来它们没有涵盖我需要的内容?
任何指针/示例表示赞赏。
谢谢
I want to create a PNG file from a System.Drawing.Bitmap with the colours defined using CMYK.
I can create the PNG OK but how do I define 'with CMYK' ?
I've looked at the encoderparameters argument to the save method but it seems to me they don't cover what I need ?
Any pointers/samples appreciated.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PNG 格式设计用于传输图形以在计算机屏幕上显示。 PNG 文件只能传输灰度或 RGB/RGBA 图像数据;您不能有 CMYK PNG 文件: http://www .w3.org/TR/2003/REC-PNG-20031110/#11IHDR
The PNG format was designed for transferring graphics for display on computer screens. PNG files may only transfer grayscale or RGB/RGBA image data; you can't have a CMYK PNG file: http://www.w3.org/TR/2003/REC-PNG-20031110/#11IHDR