Android 获取 View 的高斯模糊 Drawable

a 夏天 提交于 2019-12-20 13:16:20

Android 获取 View 的高斯模糊 Drawable

使用谷歌接口,不兼容 17 以下,需要兼容需处理

object RenderScriptUtil {
    const val RADIUS = 25F //高斯模糊程度 0~25
    /**
     * 获取 View 的高斯模糊 BitmapDrawable
     */
    fun gaussianBlur(v: View): BitmapDrawable {
        val renderScript = RenderScript.create(v.context)
        v.setDrawingCacheEnabled(true)
        val origin = v.getDrawingCache()
        val input = Allocation.createFromBitmap(renderScript, origin)
        val output = Allocation.createTyped(renderScript, input.type)
        val scriptIntrinsicBlur = ScriptIntrinsicBlur.create(renderScript, Element.U8_4(renderScript))
        scriptIntrinsicBlur.setRadius(RADIUS)
        scriptIntrinsicBlur.setInput(input)
        scriptIntrinsicBlur.forEach(output)
        output.copyTo(origin)
        val bg = Bitmap.createBitmap(origin)
        v.setDrawingCacheEnabled(false)
        return BitmapDrawable(bg)
    }
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!