1
的Android嘉洛斯我使用下面的代碼,使我的照片黑爲黑色
BitmapDrawable bdarw = new BitmapDrawable(imagePath);
ColorMatrix cm = new ColorMatrix();
cm.set(new float[] {
2, 1f, 0, 0, 0,
0, 2, 0f, 0, 0,
0, 0, 2, 0f, 0,
0, 0, 0, 1f, 0 });
bdarw.setColorFilter(new ColorMatrixColorFilter(cm));
Bitmap bitmap= bdarw.getBitmap();
ImageView imageView = (ImageView) findViewById(R.id.imgV);
imageView.setImageBitmap(bitmap);
但似乎彩色矩陣是不正確的,你可以請幫我
你能幫我理解他們每個人:( – 2012-02-04 08:43:26