Java:使用 javax.imageio.ImageIO.read() 加载 png 图像而不使用索引(如 BufferedImage.TYPE_4BYTE_ABGR)
我正在尝试使用 javax.imageio.ImageIO.read() 方法加载 PNG 图像。但是,我希望结果类型为“BufferedImage.TYPE_4BYTE_ABGR”,但它最终作为索引图像(“BufferedImage.TYPE_BYTE_INDEXED”)。当原始图像被索引时,有什么方法可以将图像加载为未索引的图像吗?大约有 120 张图像,因此手动将它们全部取消索引会花费很长时间。
I am trying to load a PNG image using the javax.imageio.ImageIO.read() method. However, I want the resulting type to be "BufferedImage.TYPE_4BYTE_ABGR", but it ends up as an indexed image ("BufferedImage.TYPE_BYTE_INDEXED"). Is there any way to load an image as unindexed, when the original image is indexed? There are about 120 images, so it would take too long to make them all unindexed by hand.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不反对使用 JAI,您可以为 RenderedImage 创建渲染链(BufferedImage 实现该接口)并向该链添加格式操作:
JAI.create("format",...) 带有渲染的操作使用 JAI.KEY_REPLACE_INDEX_COLOR_MODEL 键进行提示。
一种纯 ImageIO 方法是创建一个所需类型的新 BufferedImage,并将从 ImageIO.read 加载的图像绘制到新的 BufferedImage 中:
If you're not opposed to using JAI, you can create a rendering chain for the RenderedImage (BufferedImage implements the interface) and add a format operation to the chain:
JAI.create("format",...) operation with a rendering hint with a key of JAI.KEY_REPLACE_INDEX_COLOR_MODEL.
A pure-ImageIO approach would be to create a new BufferedImage of the type you want and draw the one loaded from ImageIO.read into the new BufferedImage: