android 梯形磨砂模糊化的iamgeview

@SuppressLint("NewApi")
public class TrapezoidView extends ImageView
{
    private Context mContext;

    private int width = 0;
    private int height = 0;
    private int translucent;//半透明色 蒙版用
    public TrapezoidView(Context context)
    {
        super(context);
        mContext = context;
        translucent=getResources().getColor(R.color.translucent);
    }

    public TrapezoidView(Context context, AttributeSet attrs)
    {
        super(context, attrs);
        mContext = context;
        translucent=getResources().getColor(R.color.translucent);
    }

    public TrapezoidView(Context context, AttributeSet attrs, int defStyle)
    {
        super(context, attrs, defStyle);
        mContext = context;
        translucent=getResources().getColor(R.color.translucent);
    }



    @Override
    protected void onDraw(Canvas canvas)
    {
        Drawable drawable = getDrawable();
        if (drawable == null)
        {
            return;
        }
        if (getWidth() == 0 || getHeight() == 0)
        {
            return;
        }
        this.measure(0, 0);
        if (drawable.getClass() == NinePatchDrawable.class)
            return;
        Bitmap b = ((BitmapDrawable) drawable).getBitmap();
        Bitmap bitmap = b.copy(Bitmap.Config.ARGB_8888, true);
        // 保证重新读取图片后不会因为图片大小而改变控件宽、高的大小(针对宽、高为wrap_content布局的imageview,但会导致margin无效)
        // if (defaultWidth != 0 && defaultHeight != 0) {
        // LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
        // defaultWidth, defaultHeight);
        // setLayoutParams(params);
        // }
        XYPoint leftTop=new XYPoint(0, 0);
        XYPoint rightTop=new XYPoint(width, 0);
        XYPoint leftBottom=new XYPoint(width, height*2/3);
        XYPoint rightBottom=new XYPoint(0, height);
        bitmap=BitmapUtil.blurImageAmeliorate(bitmap);
        Bitmap roundBitmap = getCroppedTrapezoidBitmap(bitmap, leftTop, rightTop, leftBottom, rightBottom);
        
        
        //模糊
        RenderScript rs = RenderScript.create(mContext);
        Allocation overlayAlloc = Allocation.createFromBitmap(rs, roundBitmap);
        ScriptIntrinsicBlur blur = ScriptIntrinsicBlur.create(rs, overlayAlloc.getElement());
        blur.setInput(overlayAlloc);
        blur.setRadius(8);
        blur.forEach(overlayAlloc);
        overlayAlloc.copyTo(roundBitmap);
        canvas.drawBitmap(roundBitmap, 0, 0, null);
        rs.destroy();
        //半透明蒙版
        Paint paint=new Paint();
        paint.setColor(translucent);
        paint.setStyle(Style.FILL);
        paint.setAntiAlias(true);
        Path path=new Path();
        path.reset();
        path.moveTo(0, 0);
        path.lineTo(width, 0);
        path.lineTo(width, height*2/3);
        path.lineTo(0, height);
        path.lineTo(0, 0);
        canvas.drawPath(path, paint);
    }
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        width = getWidth();
        height = getHeight();
    }
    /**
     * 获取裁剪后的圆形图片
     * 
     * @param radius
     *            半径
     */
    public Bitmap getCroppedTrapezoidBitmap(Bitmap bmp, XYPoint leftTop,XYPoint rightTop,XYPoint leftBottom,XYPoint rightBottom)
    {
        Bitmap scaledSrcBmp;
        // 为了防止宽高不相等,造成圆形图片变形,因此截取长方形中处于中间位置最大的正方形图片
        int bmpWidth = bmp.getWidth();
        int bmpHeight = bmp.getHeight();
        int squareWidth = 0, squareHeight = 0;
        int x = 0, y = 0;
        Bitmap squareBitmap;
        if (bmpHeight > bmpWidth)
        {// 高大于宽
            squareWidth = squareHeight = bmpWidth;
            x = 0;
            y = (bmpHeight - bmpWidth) / 2;
            // 截取正方形图片
            squareBitmap = Bitmap.createBitmap(bmp, x, y, squareWidth, squareHeight);
        }
        else if (bmpHeight < bmpWidth)
        {// 宽大于高
            squareWidth = squareHeight = bmpHeight;
            x = (bmpWidth - bmpHeight) / 2;
            y = 0;
            squareBitmap = Bitmap.createBitmap(bmp, x, y, squareWidth, squareHeight);
        }
        else
        {
            squareBitmap = bmp;
        }
        scaledSrcBmp = Bitmap.createScaledBitmap(squareBitmap, width, width, true);
//        scaledSrcBmp = Bitmap.createScaledBitmap(squareBitmap, width, height, true);
        Bitmap output = Bitmap.createBitmap(scaledSrcBmp.getWidth(), scaledSrcBmp.getHeight(), Config.ARGB_8888);
        Canvas canvas = new Canvas(output);
        Paint paint = new Paint();
        Rect rect = new Rect(0, 0, scaledSrcBmp.getWidth(), scaledSrcBmp.getHeight());
        paint.setAntiAlias(true);
        paint.setFilterBitmap(true);
        paint.setDither(true);
        canvas.drawARGB(0, 0, 0, 0);
//        canvas.drawCircle(scaledSrcBmp.getWidth() / 2, scaledSrcBmp.getHeight() / 2, scaledSrcBmp.getWidth() / 2, paint);
        Path path = new Path();
        path.reset();
        path.moveTo(leftTop.x, leftTop.y); // 左顶点 也即起始点
        path.lineTo(rightTop.x, rightTop.y); // 右顶点
        path.lineTo(leftBottom.x, leftBottom.y); // 右底部
        path.lineTo(rightBottom.x, rightBottom.y); // 左底部
        path.lineTo(leftTop.x, leftTop.y);
        canvas.drawPath(path, paint);
        
        
        
        paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
        canvas.drawBitmap(scaledSrcBmp, rect, rect, paint);
        
        
        // bitmap回收(recycle导致在布局文件XML看不到效果)
        // bmp.recycle();
        // squareBitmap.recycle();
        // scaledSrcBmp.recycle();
        bmp = null;
        squareBitmap = null;
        scaledSrcBmp = null;
        return output;
    }

    private class XYPoint{
        public XYPoint(int x,int y){
            this.x=x;
            this.y=y;
        }
        public int x;
        public int y;
    }
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值