黑白图片的两种生成方法

要将一张图片改成黑白的有两种方法

第一种方法 撇开android系统不说,直接修改像素点的颜色

第二种方法 使用android系统内置的图片处理功能

------------------------------

第一种

/**
  * 将彩色图转换为黑白图
  * 
  * @param 位图
  * @return 返回转换好的位图
  */
 public static Bitmap convertToBlackWhite(Bitmap bmp) {
  int width = bmp.getWidth(); // 获取位图的宽
  int height = bmp.getHeight(); // 获取位图的高int[] pixels = new int[width *
          // height]; // 通过位图的大小创建像素点数组
  bmp.getPixels(pixels, 0, width, 0, 0, width, height);
  int alpha = 0xFF << 24;
  for (int i = 0; i < height; i++) {
   for (int j = 0; j < width; j++) {
    int grey = pixels[width * i + j];
    int red = ((grey & 0x00FF0000) >> 16);
    int green = ((grey & 0x0000FF00) >> 8);
    int blue = (grey & 0x000000FF);
    grey = (int) (red * 0.3 + green * 0.59 + blue * 0.11);
    grey = alpha | (grey << 16) | (grey << 8) | grey;
    pixels[width * i + j] = grey;
   }
  }
  Bitmap newBmp = Bitmap.createBitmap(width, height, Config.RGB_565);
  newBmp.setPixels(pixels, 0, width, 0, 0, width, height);
  return newBmp;
 }

第二种

public static Bitmap toGrayscale(Bitmap bmpOriginal) {
  int width, height;
  height = bmpOriginal.getHeight();
  width = bmpOriginal.getWidth();
  Bitmap bmpGrayscale = Bitmap.createBitmap(width, height,
    Bitmap.Config.RGB_565);
  Canvas c = new Canvas(bmpGrayscale);
  Paint paint = new Paint();
  ColorMatrix cm = new ColorMatrix();
  cm.setSaturation(0);
  ColorMatrixColorFilter f = new ColorMatrixColorFilter(cm);
  paint.setColorFilter(f);
  c.drawBitmap(bmpOriginal, 0, 0, paint);
  return bmpGrayscale;
 }

你可能感兴趣的:(android,安卓,图片,图像,头像,黑白,照片,灰白)