如何在java中检查给定图像是否是CMYK?
对于我的项目,我需要检测图像是否是 CMYK。 jai 中是否有任何课程或者是否有其他可能有帮助的图书馆?
我尝试读取 CMYK 文件并显示它,但颜色弄乱了。
RenderedOp image1 = JAI.create("stream", stream);
ScrollingImagePanel panel = new ScrollingImagePanel(image1, image1.getWidth(), image1.getHeight());
JFrame window = new JFrame("JAI Sample Program");
window.add(panel);
window.pack();
window.show();
如果我尝试通过以下代码检测 CMYK,它会考虑图像 RGB:
if (image1.getColorModel().getColorSpace().getType()==ColorSpace.TYPE_CMYK) {
System.out.println("CMYK");
}
if (image1.getColorModel().getColorSpace().getType()==ColorSpace.TYPE_RGB) {
System.out.println("RGB");
}
For my project I need to detect if an image is CMYK. Is there any class in jai or is there any other library which might be helpfull?
I try to read a CMYK file and disply it but the color got messed up.
RenderedOp image1 = JAI.create("stream", stream);
ScrollingImagePanel panel = new ScrollingImagePanel(image1, image1.getWidth(), image1.getHeight());
JFrame window = new JFrame("JAI Sample Program");
window.add(panel);
window.pack();
window.show();
And it consider the image rgb if I try to detect CMYK by the following code:
if (image1.getColorModel().getColorSpace().getType()==ColorSpace.TYPE_CMYK) {
System.out.println("CMYK");
}
if (image1.getColorModel().getColorSpace().getType()==ColorSpace.TYPE_RGB) {
System.out.println("RGB");
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,你使用了错误的类。这些是其他支持 CMYK 图像的:
https://docs.oracle.com/ javase/7/docs/api/java/awt/color/ColorSpace.html
It seems to me, you use wrong classes. These are others that support CMYK images:
https://docs.oracle.com/javase/7/docs/api/java/awt/color/ColorSpace.html