将一个 BufferedImage 绘制到另一个 BufferedImage 上会改变 RGBA 值。

3

我在尝试复制BufferedImage对象时遇到了问题。

我使用drawImage (BufferedImage image, int x, int y, ImageObserver observer)方法将原始图像绘制到新图像上,并为每个图像设置BufferedImage.TYPE_INT_ARGB,但是当我打印新图像颜色的值时,RGBA值略有不同。

我需要复制原始图像,因为我有一个JPanel持有要作为背景绘制的图像。在我的应用程序的其他部分中,我必须从面板获取图像,但我希望返回一个副本以避免图像被其他地方修改。

如何解决这个问题?

代码:

import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
public class BufferedImageColorBug
{
    public static void main (String [] a) {
        Color [] colors = {
            new Color (202,230,186,14),
            new Color (254,65,188,214),
            new Color (247,104,197,198),
            new Color (158,93,79,239),
            new Color (235,45,57,194),
            new Color (155,77,126,150),
            new Color (164,237,20,172),
            new Color (184,106,97,191),
            new Color (187,249,135,85),
            new Color (236,112,98,24)
        };
        BufferedImage image = new BufferedImage (colors.length, 1, BufferedImage.TYPE_INT_ARGB);
        for (int x = 0; x < colors.length; x ++) image.setRGB (x, 0, colors [x].getRGB ());
        BufferedImage copy = new BufferedImage (image.getWidth (), image.getHeight (), BufferedImage.TYPE_INT_ARGB);
        Graphics2D g2d = copy.createGraphics ();
        g2d.drawImage (image, 0, 0, null);
        g2d.dispose ();
        for (int x = 0; x < colors.length; x ++) {
            Color color = new Color (copy.getRGB (x, 0), true);
            System.out.println (color.getRed () + "," + color.getGreen () + "," + color.getBlue () + "," + color.getAlpha ());
        }
    }
}

这是我的输出结果:
200,237,182,14
254,66,188,214
247,104,197,198
158,93,79,239
235,45,57,194
155,76,126,150
165,237,19,172
184,105,97,191
186,249,135,85
234,117,96,24

编辑

我谈论克隆图像是因为这是我的目的,但是我想要理解为什么不同图像的rgba值是不同的。

我已经尝试使用BufferedImage.TYPE_INT_ARGB_PRE,但没有帮助。

1个回答

2
要创建与原始图像完全相同的副本(假设它们都是相同类型的),您只需稍微更改代码即可:
BufferedImage copy = new BufferedImage(image.getWidth(), image.getHeight(), BufferedImage.TYPE_INT_ARGB);
copy.setData(image.getRaster()); // getRaster() is faster than getData(), as no copy is created

for (int x = 0; x < colors.length; x++) {
    Color color = new Color(copy.getRGB(x, 0), true);
    System.out.println(color.getRed() + "," + color.getGreen() + "," + color.getBlue() + "," + color.getAlpha());
}

这将打印与您原始colors数组中相同的颜色。
PS:我最初认为这是一个错误,但现在意识到它可能不是。
经过一些测试,我发现您的代码与我通常用于克隆图像的代码之间存在一些小差异。如果将alpha合成规则更改为Src(表示只有源会贡献并完全替换目标处的像素),则还会得到预期的结果:
BufferedImage copy = new BufferedImage(image.getWidth(), image.getHeight(), BufferedImage.TYPE_INT_ARGB);

Graphics2D g2d = copy.createGraphics();
g2d.setComposite(AlphaComposite.Src); // Completely replace, default is SrcOver
g2d.drawImage(image, 0, 0, null);
g2d.dispose();

for (int x = 0; x < colors.length; x++) {
    Color color = new Color(copy.getRGB(x, 0), true);
    System.out.println(color.getRed() + "," + color.getGreen() + "," + color.getBlue() + "," + color.getAlpha());
}

原因在于,在将半透明像素覆盖完全透明像素时,目标处的原始透明像素会对最终结果产生影响,从而改变RGBA值。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接