我有这张图片:
我还有一个 α 值,其范围是 [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;
}
但是,生成位图并将蒙版应用于我的原始位图超出了我的理解。
我怎样才能达到这个效果?