我想实现如下图所示的模糊类型。我有我的位图,我想在边上实现这种模糊,使其像iPhone的内置功能一样成为正方形,以适应WhatsApp或Instagram显示图片。到目前为止,我已经能够使用Color.Blue
等在这些边缘填充颜色。
有关更多信息:如何在Android中从矩形位图创建正方形位图
我想用模糊的部分填充那个问题图像中那些白色的边。
它是背景中显示的同一图像的模糊版本。以下代码为您提供同一图像的模糊效果。调整BLUR_RADIUS以获得效果幅度。
public class BlurBuilder {
private static final float BITMAP_SCALE = 0.4f;
private static final float BLUR_RADIUS = 20f;
public static Bitmap blur(Context context, Bitmap image) {
int width = Math.round(image.getWidth() * BITMAP_SCALE);
int height = Math.round(image.getHeight() * BITMAP_SCALE);
Bitmap inputBitmap = Bitmap.createScaledBitmap(image, width, height, false);
Bitmap outputBitmap = Bitmap.createBitmap(inputBitmap);
RenderScript rs = RenderScript.create(context);
ScriptIntrinsicBlur theIntrinsic = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs));
Allocation tmpIn = Allocation.createFromBitmap(rs, inputBitmap);
Allocation tmpOut = Allocation.createFromBitmap(rs, outputBitmap);
theIntrinsic.setRadius(BLUR_RADIUS);
theIntrinsic.setInput(tmpIn);
theIntrinsic.forEach(tmpOut);
tmpOut.copyTo(outputBitmap);
return outputBitmap;
}
}
来源