Android实现Bitmap高斯模糊效果

自定义高斯模糊工具类

import android.content.Context;import android.graphics.Bitmap;import android.renderscript.Allocation;import android.renderscript.Element;import android.renderscript.RenderScript;import android.renderscript.ScriptIntrinsicBlur;/** * Created by xpf on 2017/6/24 :) * Function:实现高斯模糊工具类 */public class BlurBitmapUtil {    // 图片缩放比例(即模糊度)    private static final float BITMAP_SCALE = 0.4f;    /**     * @param context 上下文对象     * @param image   需要模糊的图片     * @return 模糊处理后的Bitmap     */    public static Bitmap blurBitmap(Context context, Bitmap image, float blurRadius) {        // 计算图片缩小后的长宽        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内核对象        RenderScript rs = RenderScript.create(context);        // 创建一个模糊效果的RenderScript的工具对象        ScriptIntrinsicBlur blurScript = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs));        // 由于RenderScript并没有使用VM来分配内存,所以需要使用Allocation类来创建和分配内存空间        // 创建Allocation对象的时候其实内存是空的,需要使用copyTo()将数据填充进去        Allocation tmpIn = Allocation.createFromBitmap(rs, inputBitmap);        Allocation tmpOut = Allocation.createFromBitmap(rs, outputBitmap);        // 设置渲染的模糊程度, 25f是最大模糊度        blurScript.setRadius(blurRadius);        // 设置blurScript对象的输入内存        blurScript.setInput(tmpIn);        // 将输出数据保存到输出内存中        blurScript.forEach(tmpOut);        // 将数据填充到Allocation中        tmpOut.copyTo(outputBitmap);        return outputBitmap;    }}

使用示例

    if (image != null) {        Bitmap blurBitmap = BlurBitmapUtil.blurBitmap(mContext, image, 20);        blurView.setImageBitmap(blurBitmap);        } else {            // 如果image为null就设置一张本地默认的模糊照片            blurView.setImageResource(R.drawable.img_mohu);        }

Thanks all.

Good night~

更多相关文章

  1. Android(安卓)控件GridView使用案例讲解
  2. Android之MotionLayout(三),用 MotionLayout 来做过渡动画,如何
  3. android中的基本控件
  4. Android异步处理二:使用AsyncTask异步更新UI界面
  5. Android之Handler用法总结
  6. Android异步处理二:使用AsyncTask异步更新UI界面
  7. android ui显示技巧和注意事项
  8. drawable类型
  9. 【Android(安卓)Developer Blog】Android(安卓)Studio 2.0(07 APR

随机推荐

  1. 自学android,记录小知识一
  2. Android移动图片
  3. Googorola与七个小矮人
  4. Android 安全框架 -- 总概
  5. 将tensorflow训练好的模型移植到android
  6. PC端如何通过USB线与Android设备通信
  7. AndroidStudio使用技巧
  8. Android(安卓)pm命令 以及在终端安装卸载
  9. Android自动测试之benchmark test 简介
  10. Android 性能优化之内存泄漏检测以及内存