Glide加載圓形圖片和圓角圖片

Glide加載圓形圖片和圓角圖片
Glide加載圓形圖片和圓角圖片

做項目時常常需要顯示圓形和圓角圖片糠悼,Glide不得不說是一個很好的圖片加載框架,內(nèi)存占用少且還可以加載Gif圖片栖忠。我也使用的這個框架召烂,使用非常簡單

 Glide.with(mContext).load(picPath).into(imgView);

但是卻沒有發(fā)現(xiàn)加載圓形和圓角圖片的方法,原來需要通過transform方法里面?zhèn)魅胱远x的BitmapTransformation才可以實現(xiàn)(不知道為什么Glide沒有寫這樣的類)沼琉,下面是相關類的實現(xiàn)

1.圓形圖片

import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool;
import com.bumptech.glide.load.resource.bitmap.BitmapTransformation;


public class GlideCircleTransform extends BitmapTransformation {
    public GlideCircleTransform(Context context) {
        super(context);
    }

    @Override protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {
        return circleCrop(pool, toTransform);
    }

    private static Bitmap circleCrop(BitmapPool pool, Bitmap source) {
        if (source == null) return null;

        int size = Math.min(source.getWidth(), source.getHeight());
        int x = (source.getWidth() - size) / 2;
        int y = (source.getHeight() - size) / 2;

        // TODO this could be acquired from the pool too
        Bitmap squared = Bitmap.createBitmap(source, x, y, size, size);

        Bitmap result = pool.get(size, size, Bitmap.Config.ARGB_8888);
        if (result == null) {
            result = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888);
        }

        Canvas canvas = new Canvas(result);
        Paint paint = new Paint();
        paint.setShader(new BitmapShader(squared, BitmapShader.TileMode.CLAMP, BitmapShader.TileMode.CLAMP));
        paint.setAntiAlias(true);
        float r = size / 2f;
        canvas.drawCircle(r, r, r, paint);
        return result;
    }

    @Override public String getId() {
        return getClass().getName();
    }
}

2.圓角圖片

import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool;
import com.bumptech.glide.load.resource.bitmap.BitmapTransformation;

public class GlideRoundTransform extends BitmapTransformation {

    private static float radius = 0f;

    public GlideRoundTransform(Context context) {
        this(context, 4);
    }

    public GlideRoundTransform(Context context, int dp) {
        super(context);
        this.radius = Resources.getSystem().getDisplayMetrics().density * dp;
    }

    @Override protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {
        return roundCrop(pool, toTransform);
    }

    private static Bitmap roundCrop(BitmapPool pool, Bitmap source) {
        if (source == null) return null;

        Bitmap result = pool.get(source.getWidth(), source.getHeight(), Bitmap.Config.ARGB_8888);
        if (result == null) {
            result = Bitmap.createBitmap(source.getWidth(), source.getHeight(), Bitmap.Config.ARGB_8888);
        }

        Canvas canvas = new Canvas(result);
        Paint paint = new Paint();
        paint.setShader(new BitmapShader(source, BitmapShader.TileMode.CLAMP, BitmapShader.TileMode.CLAMP));
        paint.setAntiAlias(true);
        RectF rectF = new RectF(0f, 0f, source.getWidth(), source.getHeight());
        canvas.drawRoundRect(rectF, radius, radius, paint);
        return result;
    }

    @Override public String getId() {
        return getClass().getName() + Math.round(radius);
    }
}

使用的時候

 Glide.with(mContext).load(picPath).transform(new GlideRoundTransform(mContext,10)).into(imgView);
 Glide.with(mContext).load(picPath).transform(new new GlideCircleTransform(mContext)).into(imgView);
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末北苟,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子打瘪,更是在濱河造成了極大的恐慌友鼻,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件闺骚,死亡現(xiàn)場離奇詭異桃移,居然都是意外死亡,警方通過查閱死者的電腦和手機葛碧,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進店門借杰,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人进泼,你說我怎么就攤上這事蔗衡∠怂洌” “怎么了?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵绞惦,是天一觀的道長逼纸。 經(jīng)常有香客問我,道長济蝉,這世上最難降的妖魔是什么杰刽? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮王滤,結(jié)果婚禮上贺嫂,老公的妹妹穿的比我還像新娘。我一直安慰自己雁乡,他們只是感情好第喳,可當我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著踱稍,像睡著了一般曲饱。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上珠月,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天扩淀,我揣著相機與錄音,去河邊找鬼啤挎。 笑死驻谆,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的侵浸。 我是一名探鬼主播,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼氛谜,長吁一口氣:“原來是場噩夢啊……” “哼掏觉!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起值漫,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤澳腹,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后杨何,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體酱塔,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年危虱,在試婚紗的時候發(fā)現(xiàn)自己被綠了羊娃。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡埃跷,死狀恐怖蕊玷,靈堂內(nèi)的尸體忽然破棺而出邮利,到底是詐尸還是另有隱情,我是刑警寧澤垃帅,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布延届,位于F島的核電站,受9級特大地震影響贸诚,放射性物質(zhì)發(fā)生泄漏方庭。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一酱固、第九天 我趴在偏房一處隱蔽的房頂上張望械念。 院中可真熱鬧,春花似錦媒怯、人聲如沸订讼。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽欺殿。三九已至,卻和暖如春鳖敷,著一層夾襖步出監(jiān)牢的瞬間脖苏,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工定踱, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留棍潘,地道東北人。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓崖媚,卻偏偏與公主長得像亦歉,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子畅哑,可洞房花燭夜當晚...
    茶點故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容