如何在 Java 中确定图像的颜色空间?
我正在尝试确定 Java 中图像的颜色空间。我相信这在 BufferedImage 类中被称为“imageType”。这行代码给我带来了麻烦 - 我不知道该将什么作为第三个参数:
BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
我将使用 Graphics2D 类将多个图像拼接到 BufferedImage 中。我使用的一些图像可能是 RGB 格式,其他图像可能是 ARGB、4 字节 ARGB 等......
有什么方法可以以编程方式确定图像的颜色空间?或者如果没有,是否有办法在拼接之前将所有图像转换为相同的色彩空间?
I am trying to determine an image's color space in Java. I believe this is referred to as "imageType" in the BufferedImage class. This is the line of code which causes me trouble - I don't know what to put as the third argument:
BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
I'm going to stitch several images together into the BufferedImage using the class Graphics2D. Some images I use may be in RGB format, others in ARGB, 4-byte ARGB etc...
Is there any way I can programatically determine the color spaces of the images? Or if not, is there a way of converting all images into the same color space before stitching?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ColorConvertOp
类可用于将图像从一种颜色空间转换为另一种颜色空间。BufferedImage。 getType()
可用于确定图像使用的颜色空间。The
ColorConvertOp
class can be used to convert an image from one ColorSpace to another.BufferedImage.getType()
can be used to determine the color space used by the image.