如何在Java中使用setRGB(x,y,0)后显示图像?

时间:2013-05-19 05:21:18

标签: java image colors pixel rgb

for(int x=0;x<20;x++)
{
    for(int y=0;y<20;y++)
    {
       img.setRGB(x, y,0);
    }
}

我正在尝试将20 * 20区域中的所有像素转换为黑色。但是这不符合上面的代码。我还需要添加更多内容吗?

1 个答案:

答案 0 :(得分:0)

试试这个

int rgb=new Color(0,0,0).getRGB(); // i believe rgb for black is 0,0,0 but cross check


for(int x=0;x<20;x++){

for(int y=0;y<20;y++){

              img.setRGB(x, y,rgb);

              }
         }