如何将颜色设置为图像的某些像素

时间:2012-09-06 18:28:08

标签: android

我在ImageView中有一个图像。我想将某些像素设置为红色。我已经取得了一些进展,但创建的图像已经失去了它的颜色。

 iv.setImageBitmap(processingBitmap(bitmap));

  private Bitmap processingBitmap(Bitmap src){

        Bitmap dest = Bitmap.createBitmap(src.getWidth(), src.getHeight(), src.getConfig());

        for(int x = 0; x < src.getWidth(); x++){
         for(int y = 0; y < src.getHeight(); y++){
          int pixelColor = src.getPixel(x, y);
          int newPixel= Color.rgb(pixelColor, pixelColor, pixelColor);
          dest.setPixel(x, y, newPixel);
         }
        }

        for (int i=5; i<50; i++)
        {
        dest.setPixel(i, i, Color.rgb(255, 0, 0));
        }

        return dest;
       }

enter image description here

如果我使用Bitmap dest = src.copy(src.getConfig(), src.isMutable());代替Bitmap dest = Bitmap.createBitmap(src.getWidth(), src.getHeight(), src.getConfig());,我会收到iv.setImageBitmap(processingBitmap(bitmap));行的错误:

  

09-06 18:03:37.226:E / AndroidRuntime(811):引起:   java.lang.IllegalStateException 09-06 18:03:37.226:   E / AndroidRuntime(811):at   android.graphics.Bitmap.setPixel(Bitmap.java:847)

我也不知道为什么我必须复制粘贴所有像素,然后将这些像素设置为我想要的红色。如果我只使用

 for (int i=5; i<50; i++)
        {
        dest.setPixel(i, i, Color.rgb(255, 0, 0));
        }

我得到一个带红线的黑色图像。

感谢任何帮助!

1 个答案:

答案 0 :(得分:1)

Color.rgb()需要3个字节为红色,绿色,蓝色。您正尝试在每个上设置像素颜色。 最好尝试这样的事情

byte blue = (byte) ((pixelColor & 0xff));
byte green = (byte) (((pixelColor >> 8) & 0xff));
byte red = (byte) (((pixelColor >> 16) & 0xff));
int newPixel= Color.rgb(red , green , blue);