如何在java中检查给定图像是否是CMYK?

发布于 2024-12-03 12:35:20 字数 661 浏览 0 评论 0原文

对于我的项目,我需要检测图像是否是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小嗷兮 2024-12-10 12:35:20

在我看来,你使用了错误的类。这些是其他支持 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文