魔法++将 JPEG 从 CMYK 转换为 RGB 色彩空间
我使用 ImageMagick Magick++ API 来处理我的 C++ 程序中的图像。它从 PDF 文件中读取图像。有些图像具有 CMYK 色彩空间。如何正确地将此类图像转换为 RGB?
I use the ImageMagick Magick++ API to work with images in my C++ program. It reads images out of PDF files. There are some Images that have a CMYK colorspace. How can I convert such images to RGB correctly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我现在解决了。我使用了
image->channel(AllChannels)
方法。颜色和以前不完全一样,但是可以用。I solved it now. I used the
image->channel(AllChannels)
method. The colors are not exactly the same as before, but it is usable.