美文网首页
android 使用randerScript实现图片模糊效果

android 使用randerScript实现图片模糊效果

作者: JoyTian | 来源:发表于2016-07-15 16:28 被阅读0次

    1.build.gradle 配置:

    android {
        defaultConfig {
            renderscriptTargetApi 19
            renderscriptSupportModeEnabled true
        }
    }
    

    2.使用如下代码:

    public class BlurBuilder {
        private static final float BITMAP_SCALE = 0.2f;
        private static final float BLUR_RADIUS = 15f;
    
        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;
        }
    }
    

    相关文章

      网友评论

          本文标题:android 使用randerScript实现图片模糊效果

          本文链接:https://www.haomeiwen.com/subject/hfvyjttx.html