日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

解决GLIDE4.0和圆角裁剪CENTERCROP冲突

發布時間:2023/12/9 编程问答 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 解决GLIDE4.0和圆角裁剪CENTERCROP冲突 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1、重寫BITMAPTRANSFORMATION

重寫方法解決沖突,來自CSDN的一個解決方案

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;}@Overrideprotected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {Bitmap bitmap = TransformationUtils.centerCrop(pool, toTransform, outWidth, outHeight);return roundCrop(pool, bitmap);}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;}public String getId() {return getClass().getName() + Math.round(radius);}@Overridepublic void updateDiskCacheKey(MessageDigest messageDigest) {} }

在加載的時候使用

RequestOptions myOptions = new RequestOptions() .transform(new GlideRoundTransform(this,30)); Glide.with(this) .load(R.drawable.item1) .apply(myOptions) .into(icon1);

地址http://blog.csdn.net/flyinbed_/article/details/75506062

2、使用第三方框架

庫地址:?
https://github.com/wasabeef/glide-transformations

該庫是專門針對glide的一個輔助類,包括裁剪?
效果圖?

引入方法

compile 'jp.wasabeef:glide-transformations:3.0.1'
  • 1
  • 2

使用方法

Glide.with(mContext).load(aClass.img).apply(RequestOptions.bitmapTransform(new MultiTransformation(new CenterCrop(),new RoundedCornersTransformation(SizeUtils.dp2px(5), 0, RoundedCornersTransformation.CornerType.TOP)))).into(imageView);

這里RoundedCornersTransformation的第一個參數需要轉換成像素

總結

以上是生活随笔為你收集整理的解决GLIDE4.0和圆角裁剪CENTERCROP冲突的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。