将 YCCK jpeg 转换为 RGB
我有一个 jpeg 图像,其颜色在 YCCK 颜色空间中编码。我已经使用 libjpeg 在 C++ 中对其进行了解码。如何将其转换为 RGB?
将其转换为 CMYK 对我来说也很有用,因为我知道如何使用 ICC 颜色配置文件将 CMYK 转换为 RGB。
I have a jpeg image with the colors encoded in the YCCK color space. I have already decoded it in C++ using libjpeg. How can I convert it to RGB?
Converting it to CMYK would also be useful for me, since I know how to convert from CMYK to RGB using ICC color profiles.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请查看此处。
首先,转换为 RGB 格式,如下:
然后,转换为 CMYK 图像,如下:
K 通道的值不加修改地写入。
Have a look here.
First, conversion is done into RGB format as:
After that, conversion to CMYK image is performed as follows:
The values of K channel are written without modification.