使用ImageIO.write将其保存为PNG文件后,奇怪的颜色会更改为BufferedImage

时间:2017-07-14 22:02:41

标签: java image colors png

我一直在尝试制作一个Java程序,允许某些像素颜色更改为BufferedImage中的其他颜色,但正在绘制的颜色似乎覆盖旧的颜色。这就是我的意思:

Combined image of input.png and output.png

这是目前.java文件中的代码:

static BufferedImage image = null;
static File file = null;
static int height;
static int width;
static int[][][] pixelStorage;
static int pixel;
static int getPixelDataOutput = 0;
static Random random = new Random();

public static void main(String args[]) throws IOException {

    System.out.println("test");

    try {
        file = new File("C:\\Users\\kkosy\\Dev\\Java\\Random\\Images - Color Changer\\Images\\input.png");
    }catch(Exception exception) {
        System.out.println(exception);
    }

    image = ImageIO.read(file);

    height = image.getHeight();
    width = image.getWidth();

    pixelStorage = new int[height][width][4];

    for(int h = 0; h < height - 1; h++) {
        for(int w = 0; w < width - 1; w++) {
            savePixelData(w, h);
            if(getPixelData(w,h,"r") == 0){
                System.out.println();
                printPixelData(w,h,"Before -- ");
                setPixelData(w,h,255,0,0,255);
                printPixelData(w,h,"After -- ");
            }
        }
    }

    try {
        file = new File("C:\\Users\\kkosy\\Dev\\Java\\Random\\Images - Color Changer\\Images\\output.png");
        ImageIO.write(image, "jpg", file);
    }catch(Exception exception){
        System.out.println(exception);
    }

}

private static void savePixelData(int x, int y) {
    pixel = image.getRGB(x,y);
    pixelStorage[y][x][0] = (pixel >> 24) & 0xff;
    pixelStorage[y][x][1] = (pixel >> 16) & 0xff;
    pixelStorage[y][x][2] = (pixel >> 8) & 0xff;
    pixelStorage[y][x][3] = pixel & 0xff;
    //printPixelData(x,y,"");

}

private static void setPixelData(int x, int y, int alpha, int red, int green, int blue) {
    int setPixel = (alpha << 24) | (red << 16) | (green << 8) | (blue);
    image.setRGB(x, y, setPixel);
    image.setRGB(x, y, new Color(red,green,blue).getRGB());
}

private static void printPixelData(int x, int y, String arguments) {
    System.out.println(arguments + "" + pixelStorage[y][x][0] + " " + pixelStorage[y][x][1] + " " + pixelStorage[y][x][2] + " " + pixelStorage[y][x][3] + " ");
}

private static int getPixelData(int x, int y, String argb) {
    switch(argb) {
    case "a": {
        getPixelDataOutput = pixelStorage[y][x][0];
        break;
    }
    case "r": {
        getPixelDataOutput = pixelStorage[y][x][1];
        break;
    }
    case "g": {
        getPixelDataOutput = pixelStorage[y][x][2];
        break;
    }
    case "b": {
        getPixelDataOutput = pixelStorage[y][x][3];
        break;
    }
    }
    return getPixelDataOutput;
}

我不知道为什么会输出这样的图像。也许它是setRGB()或类似的东西。

1 个答案:

答案 0 :(得分:2)

您正在尝试创建一个PNG文件,但这一行......

ImageIO.write(image, "jpg", file);

...正在尝试编写JPEG。 根据Unix file命令,输出确实是JPEG ... 还有一个暗青色像素的坏情况。

当我将"jpg"更改为"png"时,我收到的output.png文件与input.png完全相同。

我不知道你想要输出的样子 (我正在使用 different input file) 但这似乎比错误的JPEG-in-PNG-clothing更接近。

您的日志对于调试无用,因为printPixelData始终会在pixelStorage中打印这些值。 由于setPixelData仅更改image中的值,因此您将始终打印“之前”值两次,而不是“之后”值。

顺便说一下,所有这些静态变量都使跟踪程序的执行很多比以前更难。 至少将你可以用的方法转移到方法中 (例如heightwidthfile,它们从未在main之外使用过, 并删除你根本不使用的那些 (例如getPixelDataOutputrandom)。

可能不相关,但setPixelData方法设置一个像素,然后立即将其重置为其他值:

private static void setPixelData(
  int x, int y,
  int alpha, int red, int green, int blue
) {
    int setPixel = (alpha << 24) | (red << 16) | (green << 8) | (blue);
    image.setRGB(x, y, setPixel);
    // Why overwrite the value you just set?
    image.setRGB(x, y, new Color(red,green,blue).getRGB());
}

这似乎没有任何改变--- (无论有没有第一次打电话setRGB ---我的测试图像看起来都一样--- 但它可能不是你想要的。