안드로이드 흑백 사진 만드는 법

안드로이드 작업을 하던 중 online 인 사용자와 offline인 사용자의 구분을 해야 할 필요가 생겼다.

그래서 online인 사용자는 profile image를 color로

offline인 사용자는 profile image를 gray(흑백)로 표시가 되도록 하였다.

아래는 소스이다.

public static Bitmap getGrayImage() {

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;

}

결과는 아래와 같다.  

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다