Android编程实现擦除Bitmap中某一块的方法

时间:2021-08-24 07:41:43

本文实例讲述了Android编程实现擦除Bitmap中某一块的方法。分享给大家供大家参考,具体如下:

以前要截取Bitmap中的图片使用的一块块的拼接,虽然可以实现,但是效率很低。想了很久,无意中看到网上的对BITMAP图片的RGB信息进行修改,然后想出了这个办法,感觉用起来还是挺舒服。很多出错处理都没有写,只实现基本功能啊

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public static Bitmap setTransparentAreaForBitmap(Bitmap b,
    int width, int height, int paddingleft, int paddingtop) {
  if (b == null) {
    return null;
  }
  int []pix = new int[width * height];
  for (int j = 0; j < height; j++) {
    for (int i = 0; i < width; i++) {
      int index = j * width + i;
      pix[index] = 0x00000000;
    }
  }
  b.setPixels(pix, 0, width, paddingleft, paddingtop, width, height);
  return b;
}

希望本文所述对大家Android程序设计有所帮助。