Android使用蒙版在imageView的一部分上应用colorMatrix colorFilter

时间:2013-04-22 06:11:47

标签: android bitmap imageview colormatrix colorfilter

我想改变图像某些部分的亮度。我知道如何使用ColorMatrix来改变图像的亮度(或色调)。但它将应用于整个图像。

我有一个掩码文件(黑白图像)。我想在该掩码的白色部分应用亮度变化 。如何在Android中执行此操作?

下面是一个掩码图像和我想要得到的结果。

enter image description here enter image description here

2 个答案:

答案 0 :(得分:11)

给定位图和掩码:

bitmap.png

mask.png

首先创建一个临时位图:

bitmap = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.bitmap);
mask = BitmapFactory.decodeResource(ctx.getResources(), R.drawable.mask);

float[] src = {
    0, 0, 0, 0, 255,
    0, 0, 0, 0, 255,
    0, 0, 0, 0, 255,
    1, 1, 1, -1, 0,
};
ColorMatrix cm = new ColorMatrix(src);
ColorMatrixColorFilter filter = new ColorMatrixColorFilter(cm);
maskPaint = new Paint();
maskPaint.setColorFilter(filter);
maskPaint.setXfermode(new PorterDuffXfermode(Mode.DST_IN));

filteredBitmap = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Config.ARGB_8888);
Canvas c = new Canvas(filteredBitmap);
c.drawBitmap(bitmap, 0, 0, null);
c.drawBitmap(mask, 0, 0, maskPaint);

colorFilterPaint = new Paint();
colorFilterPaint.setColorFilter(new LightingColorFilter(0xffffff, 0x880000));

并绘制它(因为我的模拟器将其缩小,我将其缩放):

@Override
public void draw(Canvas canvas) {
    canvas.save();
    canvas.scale(3, 3);
    canvas.drawBitmap(bitmap, 0, 0, null);
    canvas.drawBitmap(filteredBitmap, 0, 0, colorFilterPaint);
    canvas.restore();
}

结果是:

enter image description here

答案 1 :(得分:1)

您可以更改

float[] src = {
0, 0, 0, 0, 255,
0, 0, 0, 0, 255,
0, 0, 0, 0, 255,
1, 1, 1, -1, 0,
};

float[] src = {
0, 0, 0, 0, 255,
0, 0, 0, 0, 255,
0, 0, 0, 0, 255,
1, 1, 1, 0, 0,
};

在灰色部分提供更多的半透明度。