如何检查 jpeg 是 RGB 还是 CMYK 格式?
我正在使用 c++、gdi+、WINDOWS。 如何检查 jpeg 是 RGB 还是 CMYK?
I am using c++, gdi+,WINDOWS.
How to check whether a jpeg is a RGB or CMYK?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 IJG libjpeg 库,则可以打开 JPEG 文件,读取标头,并查看它是灰度(单色)、RGB 还是 CMYK。 (实际上,有几个免费的 JPEG 库,但 IJG libjpeg 可能是最常用的。)您可以在以下位置找到 libjpeg 源:
http://www.ijg.org/files/jpegsrc.v8c.tar.gz
如何读取标头的大致示例如下:
If you use the IJG libjpeg library, you can open the JPEG file, read the header, and see whether is it grayscale (monochrome), RGB, or CMYK. (Actually, there are several free JPEG libraries, but the IJG libjpeg is probably the most commonly used.) You can find libjpeg sources at:
http://www.ijg.org/files/jpegsrc.v8c.tar.gz
An approximate example of how to read the header would be something like: