gpt4 book ai didi

android - 使用位图作为布局的 alpha

转载 作者:行者123 更新时间:2023-11-29 23:39:07 25 4
gpt4 key购买 nike

我想在布局上使用位图作为 aplha。例如,如果我使用一个带有背景颜色的布局和一个 Imageview 或在此布局之上的另一个布局,我想使用 aplha 蒙版显示一个形状。一张图片胜过一千个字:

https://zupimages.net/up/18/34/3zii.jpg

我已经查看了 Canvas.drawBitmap 但我不知道如何使用它

你觉得可能吗?谢谢

PS:这只是一个例子,alpha 位图实际上要复杂得多(我不能只放一个 TextView)

最佳答案

这是一个可以为您工作的函数:

public static Bitmap makeTransparent(Bitmap bit, Bitmap mask) {
int width = bit.getWidth();
int height = bit.getHeight();
Bitmap bmp = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
int [] allpixels = new int [ bmp.getHeight()*bmp.getWidth()];
bit.getPixels(allpixels, 0, bmp.getWidth(), 0, 0, bmp.getWidth(),bmp.getHeight());
bmp.setPixels(allpixels, 0, width, 0, 0, width, height);

Bitmap bmpM = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
int [] allpixelsM = new int [ bmpM.getHeight()*bmpM.getWidth()];
mask.getPixels(allpixelsM, 0, bmpM.getWidth(), 0, 0, bmpM.getWidth(),bmpM.getHeight());
bmpM.setPixels(allpixelsM, 0, width, 0, 0, width, height);

for(int i =0; i<bmp.getHeight()*bmp.getWidth();i++) {
int A = (allpixelsM[i] >> 16) & 0xff;
int R = (allpixels[i] >> 16) & 0xff;
int G = (allpixels[i] >> 8) & 0xff;
int B = (allpixels[i]) & 0xff;
allpixels[i] = Color.argb(A, R, G, B);
}

bmp.setPixels(allpixels, 0, bmp.getWidth(), 0, 0, bmp.getWidth(), bmp.getHeight());
return bmp;
}

关于android - 使用位图作为布局的 alpha,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52018638/

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