Java:使用 javax.imageio.ImageIO.read() 加载 png 图像而不使用索引(如 BufferedImage.TYPE_4BYTE_ABGR)

发布于 2024-11-01 22:15:35 字数 209 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

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

发布评论

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

评论(1

极度宠爱 2024-11-08 22:15:35

如果您不反对使用 JAI,您可以为 RenderedImage 创建渲染链(BufferedImage 实现该接口)并向该链添加格式操作:

JAI.create("format",...) 带有渲染的操作使用 JAI.KEY_REPLACE_INDEX_COLOR_MODEL 键进行提示。

一种纯 ImageIO 方法是创建一个所需类型的新 BufferedImage,并将从 ImageIO.read 加载的图像绘制到新的 BufferedImage 中:

BufferedImage image = ImageIO.read(inputFile);
BufferedImage convertedImage = new BufferedImage(image.getWidth(), 
    image.getHeight(), BufferedImage.TYPE_4BYTE_ABRG);
convertedImage.createGraphics().drawRenderedImage(image, null);

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:

BufferedImage image = ImageIO.read(inputFile);
BufferedImage convertedImage = new BufferedImage(image.getWidth(), 
    image.getHeight(), BufferedImage.TYPE_4BYTE_ABRG);
convertedImage.createGraphics().drawRenderedImage(image, null);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文