Android图片毛玻璃背景效果,高斯模糊

本文介绍如何在Android应用中创建毛玻璃风格的背景效果,通过使用高斯模糊技术来达到视觉上的柔和与朦胧感。内容包括具体实现步骤和效果展示。
摘要由CSDN通过智能技术生成
import android.content.Context;
import android.graphics.Bitmap;

/**
 * Created by abel.zhang on 2016/8/9.
 * 图片的毛玻璃效果
 */
public class GsdFastBlur {

    /**
     *
     * @param context
     * @param sentBitmap
     * @param radius 12 模糊程度
     * @return
     */
    public static Bitmap fastblur(Context context, Bitmap sentBitmap, int radius) {

        if (sentBitmap==null){
            return null;
        }
        Bitmap bitmap =null;
        try {
            bitmap = sentBitmap.copy(sentBitmap.getConfig(), true);
        }catch (Exception e){
            e.printStackTrace();
            return null;
        }


        if (radius < 1) {
            return (null);
        }

        int w = bitmap.getWidth();
        int h = bitmap.getHeight();

        int[] pix = new int[w * h];
//        Log.e("pix", w + " " + h + " " + pix.length);
        bitmap.getPixels(pix, 0, w, 0, 0, w, h);

        int wm = w - 1;
        int hm = h - 1;
        int wh = w * h;
        int div = radius + radius + 1;

        int r[] = new int[wh];
        int g[] = new int[wh];
        int b[] = new int[wh];
        int rsum, gsum, bsum, x, y, i, p, yp, yi, yw;
        int vmin[] = new int[Math.max(w, h)];

        int divsum = (div + 1) >> 1;
        divsum *= divsum;
        int temp = 256 * divsum;
        int dv[] = new int[temp];
        for (i = 0; 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值