Picasso設置圓角

 

package liu.roundimagedemo.view;

import android.graphics.Bitmap;
import android.graphics.BitmapShader;
import android.graphics.Canvas;
import android.graphics.Paint;

import com.squareup.picasso.Transformation;

/**
 * Created by 劉楠 on 2016/8/31 0031.23:09
 */
public class CircleTransform implements Transformation {
    @Override
    public Bitmap transform(Bitmap source) {
        /**
         * 求出寬和高的哪一個小
         */
       int  size = Math.min(source.getWidth(), source.getHeight());

        /**
         * 求中心點
         */
        int x = (source.getWidth() - size) / 2;
        int y = (source.getHeight() - size) / 2;

        /**
         * 生成BitMap
         */
        Bitmap squaredBitmap = Bitmap.createBitmap(source, x, y, size, size);
        if (squaredBitmap != source) {
            //釋放
            source.recycle();
        }

        /**
         * 創建新的Bitmap
         */
        Bitmap bitmap = Bitmap.createBitmap(size, size, source.getConfig());

        /**
         * 畫布畫筆
         */
        Canvas canvas = new Canvas(bitmap);
        Paint  paint  = new Paint();
        
        BitmapShader shader = new BitmapShader(squaredBitmap,
                BitmapShader.TileMode.CLAMP, BitmapShader.TileMode.CLAMP);
        paint.setShader(shader);
        paint.setAntiAlias(true);

        float r = size / 2f;
        /**
         * 畫圓
         */
        canvas.drawCircle(r, r, r, paint);

        squaredBitmap.recycle();
        return bitmap;
    }

    @Override
    public String key() {
        return "circle";
    }
}

 

 

Picasso.with(this).load("http://img1.3lian.com/2015/w7/68/d/85.jpg").transform(new CircleTransform())
                .into(mNetImageView);
相關文章
相關標籤/搜索