使用Glide加载圆角图片

Posted yjpjy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Glide加载圆角图片相关的知识,希望对你有一定的参考价值。

//设置图片圆角角度
RoundedCorners roundedCorners= new RoundedCorners(6);
//通过RequestOptions扩展功能,override采样率,因为ImageView就这么大,可以压缩图片,降低内存消耗
RequestOptions options=RequestOptions.bitmapTransform(roundedCorners).override(300, 300);
 
Glide.with(context).load(files.getFilePath()).apply(options).into(mUserHead);

  

以上是关于使用Glide加载圆角图片的主要内容,如果未能解决你的问题,请参考以下文章