1

我有这张图片:

在此处输入图像描述

我还有一个 α 值,其范围是 [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;
}

但是,生成位图并将蒙版应用于我的原始位图超出了我的理解。

我怎样才能达到这个效果?

4

1 回答 1

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% 不透明度黑色),使它们变得透明。

于 2013-09-18T10:18:07.937 回答