0

当一艘宇宙飞船被摧毁时,我创建了一个包含宇宙飞船图像像素的列表。像素是我的 Pixel 类的对象。创建列表后,它被添加到主列表中,对它们执行各种操作。这就是我的代码的样子:

//Code which creates an array
List<Pixel> pixels = new LinkedList<>();
BufferedImage buff = (BufferedImage)image;
for (int px = 0; px < buff.getWidth(); px++) {
    for (int py = 0; py < buff.getHeight(); py++) {
        int rgb = buff.getRGB(px, py);
        int red = (rgb & 0x00ff0000) >> 16;
        int green = (rgb & 0x0000ff00) >> 8;
        int blue = rgb & 0x000000ff;
        int alpha = (rgb >> 24) & 0xff;
        if (alpha == 255) {
            pixels.add(new Pixel(px, py, red, green, blue));
        }
    }
}
//Pixel class constructor
Pixel(float x, float y, int red, int green, int blue) {
    super(x, y);
    BufferedImage buff = new BufferedImage(1, 1, BufferedImage.TYPE_INT_ARGB);
    WritableRaster raster = buff.getRaster();
    //LOOKS EVERYTHING IS OKAY SINCE THIS LINE SO THE ERROR MUST BE SOMEWHERE IN THOSE 2 LINES
    raster.setPixel(0, 0, new int[]{red, blue, green, 255});
    image = buff;
}

简短说明:图像是图像类型的私有字段。它用于 repaint() 方法,该方法使用 drawImage() 方法绘制像素。关于我的问题:Eveything 几乎可以正常工作。像素在正确的位置创建,但都是紫罗兰色。它们有不同的色调(更亮和更暗),但都是紫色的,而不是与图像颜色相同的颜色!为什么会这样?为什么是紫罗兰色?有人可以帮我理解这种奇怪的行为吗?

4

1 回答 1

1

它可能是您setPixel方法中绿色和蓝色值的混合。颜色通常以 RGB 顺序给出,这是您从BufferedImage.

代替

raster.setPixel(0, 0, new int[]{red, blue, green, 255});

尝试

raster.setPixel(0, 0, new int[]{red, green, blue, 255});

如果这不起作用,您可能必须修改数组中的不同变量顺序,直到看起来正确为止。

于 2013-03-14T20:50:06.057 回答