BufferedImage - 灰度

时间:2011-09-13 23:47:16

标签: java bufferedimage grayscale

如果图像是灰度,我如何获得该位置的灰度像素值?

这始终将温度输出为-16777216(黑色)。

public void testMethod()
{
    int width = imgMazeImage.getWidth();
    int height = imgMazeImage.getHeight();

    //Assign class variable as a new image with RGB formatting
    imgMazeImage = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_GRAY);
    for(int i=0; i < width; i ++){
        for(int j=0; j < height; j++)
        {
            //Grab and set the colors one-by-one
            inttemp = imgMazeImage.getRGB(j, i);
            System.out.println(temp);
        }
    }
}

1 个答案:

答案 0 :(得分:2)

您正在创建一个新的空白图像并将其分配给您的类变量:

imgMazeImage = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_GRAY);

使用默认值创建像素,并且在打印它们时,它们在舞台上都具有相同的颜色(黑色),因为您尚未操纵任何像素中的颜色。

另外,如果宽度不等于高度,您的代码可能会失败。根据你的for循环,我沿着宽度运行,j沿着高度运行。因此,你应该改变

int temp = imgMazeImage.getRGB(j, i);

int temp = imgMazeImage.getRGB(i, j);