记录glide加载图片,设置圆角

支持所有角的圆角,自动计算合适的半径,不用担心图片比预定值小导致的圆角过大的问题

修改自:https://blog.csdn.net/qq_15059163/article/details/97613790
增加了指定图片尺寸、解决了图片某些情况下圆角过大的问题

public class GlideRoundCornersTransUtils implements Transformation<Bitmap> {private BitmapPool mBitmapPool;private int mRadius;//半径private int mDiameter;//直径private CornerType mCornerType = CornerType.ALL;private DisplayMetrics metrics;int width, height;public GlideRoundCornersTransUtils(Context context, int radius, CornerType type, int width, int height) {mBitmapPool = Glide.get(context).getBitmapPool();metrics = context.getResources().getDisplayMetrics();mRadius = (int) (radius * (metrics.densityDpi / 160f));mCornerType = type;mDiameter = 2 * mRadius;this.width = width;this.height = height;}public enum CornerType {/*** 所有角*/ALL,/*** 左上*/LEFT_TOP,/*** 左下*/LEFT_BOTTOM,/*** 右上*/RIGHT_TOP,/*** 右下*/RIGHT_BOTTOM,/*** 左侧*/LEFT,/*** 右侧*/RIGHT,/*** 下侧*/BOTTOM,/*** 上侧*/TOP,}@Overridepublic Resource<Bitmap> transform(Resource<Bitmap> resource, int outWidth, int outHeight) {Bitmap source = resource.get();// 剪裁图片到指定的尺寸Bitmap croppedBitmap = cropBitmap(source, width, height);int width = croppedBitmap.getWidth();int height = croppedBitmap.getHeight();Bitmap bitmap = mBitmapPool.get(width, height, Bitmap.Config.ARGB_8888);if (bitmap == null) {bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);}Canvas canvas = new Canvas(bitmap);Paint paint = new Paint();paint.setAntiAlias(true);paint.setShader(new BitmapShader(croppedBitmap, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP));drawRoundRect(canvas, paint, width, height);return BitmapResource.obtain(bitmap, mBitmapPool);}private Bitmap cropBitmap(Bitmap source, int targetWidth, int targetHeight) {int sourceWidth = source.getWidth();int sourceHeight = source.getHeight();float srcRatio = (float) sourceWidth / sourceHeight;float targetRatio = (float) targetWidth / targetHeight;int width, height;if (srcRatio > targetRatio) {// 源图片更宽,需要剪裁宽度width = (int) (sourceHeight * targetRatio);height = sourceHeight;} else {// 源图片更高,需要剪裁高度width = sourceWidth;height = (int) (sourceWidth / targetRatio);}// 计算剪裁的起始点int x = (sourceWidth - width) / 2;int y = (sourceHeight - height) / 2;//计算当前适合的半径、直径,因为当前图片的宽高有可能比预定值小,因此,半径、直径也要跟着缩小mRadius=mRadius*width/targetWidth;mDiameter=mDiameter*width/targetWidth;// 剪裁图片return Bitmap.createBitmap(source, x, y, width, height);}private void drawRoundRect(Canvas canvas, Paint paint, float width, float height) {Log.e("测试", "全局: width:" + this.width + ",height:" + this.height + ",局部:width:" + width + ",height:" + height+",角度:"+mRadius);switch (mCornerType) {case LEFT_TOP:drawLeftTopCorner(canvas, paint, width, height);break;case LEFT_BOTTOM:drawLeftBottomCorner(canvas, paint, width, height);break;case RIGHT_TOP:drawRightTopCorner(canvas, paint, width, height);break;case RIGHT_BOTTOM:drawRightBottomCorner(canvas, paint, width, height);break;case LEFT:drawLeftCorner(canvas, paint, width, height);break;case RIGHT:drawRightCorner(canvas, paint, width, height);break;case BOTTOM:drawBottomCorner(canvas, paint, width, height);break;case TOP:drawTopCorner(canvas, paint, width, height);break;case ALL:default:canvas.drawRoundRect(new RectF(0, 0, width, height), mRadius, mRadius, paint);break;}}/*** 画左上角*/private void drawLeftTopCorner(Canvas canvas, Paint paint, float width, float height) {canvas.drawRect(new RectF(mRadius, 0, width, height), paint);canvas.drawRect(new RectF(0, mRadius, mRadius, height), paint);canvas.drawArc(new RectF(0, 0, mDiameter, mDiameter), 180, 90, true, paint);}/*** 画左下角*/private void drawLeftBottomCorner(Canvas canvas, Paint paint, float width, float height) {canvas.drawRect(new RectF(0, 0, width, height - mRadius), paint);canvas.drawRect(new RectF(mRadius, height - mRadius, width, height), paint);canvas.drawArc(new RectF(0, height - mDiameter, mDiameter, height), 90, 90, true, paint);}/*** 画右上角*/private void drawRightTopCorner(Canvas canvas, Paint paint, float width, float height) {canvas.drawRect(new RectF(0, 0, width - mRadius, height), paint);canvas.drawRect(new RectF(width - mRadius, mRadius, width, height), paint);canvas.drawArc(new RectF(width - mDiameter, 0, width, mDiameter), 270, 90, true, paint);}/*** 画右下角*/private void drawRightBottomCorner(Canvas canvas, Paint paint, float width, float height) {canvas.drawRect(new RectF(0, 0, width, height - mRadius), paint);canvas.drawRect(new RectF(0, height - mRadius, width - mRadius, height), paint);canvas.drawArc(new RectF(width - mDiameter, height - mDiameter, width, height), 0, 90, true, paint);}/*** 画左 角*/private void drawLeftCorner(Canvas canvas, Paint paint, float width, float height) {canvas.drawRect(new RectF(mRadius, 0, width, height), paint);canvas.drawRect(new RectF(0, mRadius, mRadius, height - mRadius), paint);canvas.drawArc(new RectF(0, 0, mDiameter, mDiameter), 180, 90, true, paint);canvas.drawArc(new RectF(0, height - mDiameter, mDiameter, height), 90, 90, true, paint);}/*** 画右角*/private void drawRightCorner(Canvas canvas, Paint paint, float width, float height) {canvas.drawRect(new RectF(0, 0, width - mRadius, height), paint);canvas.drawRect(new RectF(width - mRadius, mRadius, width, height - mRadius), paint);canvas.drawArc(new RectF(width - mDiameter, 0, width, mDiameter), 270, 90, true, paint);canvas.drawArc(new RectF(width - mDiameter, height - mDiameter, width, height), 0, 90, true, paint);}/*** 画上 角*/private void drawTopCorner(Canvas canvas, Paint paint, float width, float height) {canvas.drawRect(new RectF(0, mRadius, width, height), paint);canvas.drawRect(new RectF(mRadius, 0, width - mRadius, mRadius), paint);canvas.drawArc(new RectF(0, 0, mDiameter, mDiameter), 180, 90, true, paint);canvas.drawArc(new RectF(width - mDiameter, 0, width, mDiameter), 270, 90, true, paint);}/*** 画下 角*/private void drawBottomCorner(Canvas canvas, Paint paint, float width, float height) {canvas.drawRect(new RectF(0, 0, width, height - mRadius), paint);canvas.drawRect(new RectF(mRadius, height - mRadius, width - mRadius, height), paint);canvas.drawArc(new RectF(0, height - mDiameter, mDiameter, height), 90, 90, true, paint);canvas.drawArc(new RectF(width - mDiameter, height - mDiameter, width, height), 0, 90, true, paint);}@Overridepublic String getId() {return "RoundedTransformation(radius=" + mRadius + ", diameter=" + mDiameter + ")";}
}

调用

 view.post(()->{Glide.with(context).load(glideUrl).override(view.getWidth(),view.getHeight()).bitmapTransform( new GlideRoundCornersTransUtils(context,radius,CornerType.ALL,view.getWidth(),view.getHeight())).into(view);});

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/12928.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

先有JVM还是先有垃圾回收器?很多人弄混淆了

是先有垃圾回收器再有JVM呢&#xff0c;还是先有JVM再有垃圾回收器呢&#xff1f;或者是先有垃圾回收再有JVM呢&#xff1f;历史上还真是垃圾回收更早面世&#xff0c;垃圾回收最早起源于1960年诞生的LISP语言&#xff0c;Java只是支持垃圾回收的其中一种。下面我们就来刨析刨析…

外卖系统的JWT实现登录

1、什么是JWT jwt可以生成一个加密的token&#xff0c;作为用户登录的令牌&#xff0c;当用户登陆成功之后&#xff0c;发放给客户端。请求需要登录的资源或者接口的时候&#xff0c;将token携带&#xff0c;后端验证token是否合法。jwt有三部分组成&#xff1a; A&#xff1a;…

【特大喜讯】国内前33位持有PMI-RMP风险管理专业认证的学员分享~!

【学员背景】 沈阳某信息科技有限公司&#xff0c;从事企业采购供应链数字化转型方向&#xff1b; 为企业提供有效的降本增效解决方案。 【学员顺利拿证后期访问】 问&#xff1a;学员您好&#xff0c;首先恭喜您顺利拿到RMP证书&#xff0c;请问您在此次备考过程中&#xf…

抖店商品详情API接口(产品参数|详情图)

抖店商品详情API接口(产品参数|详情图) 参数仅供参考&#xff1a; {"code": 0,"msg": "调用成功","time": "1715763239","data": {"properties": [{"format": [{"message": [{&q…

C语言简要(一)

总得让她开心吧 helloworld #include <stdio.h>int main() {printf("hello world!\n");return 0; } 程序框架 #include <stdio.h> int main {return 0; }输出 printf("hello world!\n"); "里面的内容叫做“字符串”&#xff0c;prin…

BUUCTF靶场[MISC]wireshark、被嗅探的流量、神秘龙卷风、另一个世界

[misc]wireshark 考点&#xff1a;流量、追踪流 工具&#xff1a;wireshark 先看题目&#xff0c;管理员密码 将下载的文件用wireshark打开&#xff0c;查找flag 点击追踪tcp流&#xff0c;开始挨个查看flag [misc]被嗅探的流量 考点&#xff1a;流量、追踪流 工具&#xf…

武汉星起航:亚马逊构建综合性商业生态,卖家买家共享全球化红利

在当今全球化日益加速的时代&#xff0c;亚马逊不仅以其卓越的电商平台服务全球消费者&#xff0c;更通过一系列前沿服务打造了一个综合性的商业生态系统。在这个生态系统中&#xff0c;卖家能够轻松拓展全球业务&#xff0c;买家则享受到了前所未有的购物体验。亚马逊以其独特…

FreeRTOS【6】线程优先级

1.开发背景 基于上一篇指引&#xff0c;已经了解了线程的阻塞&#xff0c;这个篇章主要介绍线程优先级的影响 2.开发需求 设计实验验证高优先级会抢占低优先级线程 CPU 3.开发环境 window10 MDK STM32F429 FreeRTOS10.3.1 4.实现步骤 1&#xff09;创建测试线程&#xff…

测试之路 - 精准而优雅

引子 这几年业内一直在做精准测试&#xff0c;大都使用工具 diff 代码改动、分析代码覆盖率这些平台集成的能力。 业务测试中&#xff0c;我们在技术设计和代码实现的基础上也做了一些精减和精准的测试实践&#xff0c;通过深入测试有针对的设计 case&#xff0c;发现隐藏问题…

抖音小程序使用Vant

安装 Vant 有针对小程序的版本&#xff0c;通过npm安装&#xff1a; npm i vant/weapp -S --production构建 npm 安装 Vant Weapp 后需要构建 NPM&#xff0c;在菜单的【工具】选项中选择【构建 NPM】&#xff1a; 使用组件 抖音小程序和微信小程序还是有一些差别的&#x…

怎么把3d模型导出cad立面---模大狮模型网

在设计工作中&#xff0c;将3D模型导出到CAD软件并生成立面图是一项常见但关键的任务。这不仅有助于更好地展示设计方案&#xff0c;还能方便后续的工程制图和施工。本文将介绍如何通过3ds Max软件将3D模型导出到CAD软件&#xff0c;并生成高质量的立面图&#xff0c;为您提供实…

现货正泰漏电小型断路器NXB-32LE-C16 30MA1P+N原装正品NXB-40L

品牌&#xff1a;CHNT/正泰 型号&#xff1a;NXBLE 额定电流&#xff1a;25A,16A,20A,40A,32A 漏电保护器类型&#xff1a;2P 产地&#xff1a;中国大陆 电压&#xff1a;1000V及以下 极数&#xff1a;3P,4p,2P,1PN 电源方式&#xff1a;交流电 3C证书编号&#xff1a;…

大模型时代下的先行者:景联文科技引领数据标注新时代

在大模型时代&#xff0c;数据标注不再是简单的分类标注&#xff0c;而是一项融合了技术革新、专业技能、法律合规和精细化管理的综合性任务&#xff0c;对推动AI技术的发展和落地应用具有重要意义。 景联文科技作为AI基础行业的数据供应商&#xff0c;可协助人工智能企业解决整…

easyx快速入门1

1.基本说明 EasyX 是针对 C 的图形库&#xff0c;可以帮助 C/C 初学者快速上手图形和游戏编程。 比如&#xff0c;可以基于 EasyX 图形库很快的用几何图形画一个房子&#xff0c;或者一辆移动的小车&#xff0c;可以编写俄罗斯方块、贪吃蛇、黑白棋等小游戏&#xff0c;可以练…

fl studio试用版文件保存无法打开??一个方法教你免费打开!

前言 当下&#xff0c;各款编曲软件五花八门&#xff0c;而这其中最有声誉的必为FL Studio莫属 这个软件呢国人习惯叫他水果&#xff0c;拥有强大的录音、编曲、混音等功能&#xff0c;所以广受音乐圈欢迎。如今&#xff0c;大部分水果一旦有编曲所需&#xff0c;一般都要使用…

【Python快速上手(二十三)】

目录 Python快速上手&#xff08;二十三&#xff09;Python3 多线程1. 线程的创建2. 线程同步2.1 锁&#xff08;Lock&#xff09;2.2 信号量&#xff08;Semaphore&#xff09;2.3 事件&#xff08;Event&#xff09;2.4 条件&#xff08;Condition&#xff09; 3. 线程优先级…

【Linux】Centos9设置ActiveMq开机自启功能

配置流程&#xff1a; 1. 创建 Systemd 服务文件。这个文件通常存放在/usr/lib/systemd/system/目录下&#xff0c;命名为 activemq.service。 #先创建文件&#xff0c;然后编辑&#xff1a; sudo touch /usr/lib/systemd/system/activemq.service sudo vim /usr/lib/systemd…

CSS 根据子元素选择父元素,并设置父元素的样式

场景举例&#xff1a;当子元素有增加了一个class时&#xff0c;需要影响其父元素的样式 可以使用":has"伪类来实现选择父元素的效果 <style>.parent:has(.child){background-color: #eee;}p{width:100px;border:1px solid #000;} </style> <body>…

Python3 笔记:for语句和while语句的区别

一般来说&#xff0c;循环次数确定的问题使用for循环或者while循环都可以解决&#xff0c;而循环次数不确定的问题只能使用while循环解决。 for语句的格式&#xff1a; for 循环变量 in 遍历对象: 语句 while语句的格式&#xff1a; while 条件表达式: 循环体 for…

人机协同中的比较、调整与反转

人机协同是指人与机器之间的合作关系&#xff0c;通过共同努力实现特定任务的目标。在人机协同中&#xff0c;存在着比较与调整的过程&#xff0c;这是为了实现更好的合作效果和任务完成质量。 比较是指人与机器在任务执行过程中对彼此的表现进行评估和比较。这可以通过对机器的…