我有这张图片:
我也有一个α值,其范围是[0,π]。实际上,它代表了可见角度。
我想对图像应用动态透明蒙版,因此如果α等于π/ 2,则只有左半部分可见。
我已经考虑过这个过程来计算每个像素的可见性:
private boolean[][] getVisibilityArray(final int height, final int width, final double value) {
final boolean[][] visibility = new boolean[width][height];
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
final double xInSqrt = (width / 2) - x;
final double yInSqrt = height - y;
final double sumInSqrt = xInSqrt * xInSqrt + yInSqrt * yInSqrt;
final double hipotenusa = Math.sqrt(sumInSqrt);
final double adyacente = Math.abs((width / 2) - x);
final double cos = adyacente / hipotenusa;
double angle = Math.acos(cos);
if (x > width / 2) {
angle = Math.PI - angle;
}
visibility[x][y] = angle <= value;
}
}
return visibility;
}
但是,生成位图并将掩码应用于原始位图是我无法理解的。
我怎样才能达到这个效果?
答案 0 :(得分:0)
最后,答案比我最初的想法更明显。
final boolean[][] visibility = getVisibilityArray(currentGauge.getHeight(),
currentGauge.getWidth(), angle);
final Bitmap clone = Bitmap.createBitmap(currentGauge.getWidth(),
currentGauge.getHeight(), Config.ARGB_8888);
for (int y = 0; y < currentGauge.getHeight(); y++) {
for (int x = 0; x < currentGauge.getWidth(); x++) {
if (!visibility[x][y]) {
clone.setPixel(x, y, 0);
} else {
clone.setPixel(x, y, currentGauge.getPixel(x, y));
}
}
}
克隆包含所需的位图。没有屏蔽,只是将不需要的像素设置为0(0x00000000是0%不透明度黑色),因此它们变得透明。