gpt4 book ai didi

Android 在带有 mask 的部分 imageView 上应用 colorMatrix colorFilter

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:20:16 25 4
gpt4 key购买 nike

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

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

下面是蒙版图片和我想要得到的结果。

enter image description here enter image description here

最佳答案

对于给定的位图和 mask :

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

关于Android 在带有 mask 的部分 imageView 上应用 colorMatrix colorFilter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16140501/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com