Android裁剪图片为圆形图片

  1. /** 
  2.      * 转换图片成圆形 
  3.      *  
  4.      * @param bitmap 
  5.      *            传入Bitmap对象 
  6.      * @return 
  7.      */  
  8.     public Bitmap toRoundBitmap(Bitmap bitmap) {  
  9.         int width = bitmap.getWidth();  
  10.         int height = bitmap.getHeight();  
  11.         float roundPx;  
  12.         float left, top, right, bottom, dst_left, dst_top, dst_right, dst_bottom;  
  13.         if (width <= height) {  
  14.             roundPx = width / 2;  
  15.             left = 0;  
  16.             top = 0;  
  17.             right = width;  
  18.             bottom = width;  
  19.             height = width;  
  20.             dst_left = 0;  
  21.             dst_top = 0;  
  22.             dst_right = width;  
  23.             dst_bottom = width;  
  24.         } else {  
  25.             roundPx = height / 2;  
  26.             float clip = (width - height) / 2;  
  27.             left = clip;  
  28.             right = width - clip;  
  29.             top = 0;  
  30.             bottom = height;  
  31.             width = height;  
  32.             dst_left = 0;  
  33.             dst_top = 0;  
  34.             dst_right = height;  
  35.             dst_bottom = height;  
  36.         }  
  37.   
  38.         Bitmap output = Bitmap.createBitmap(width, height, Config.ARGB_8888);  
  39.         Canvas canvas = new Canvas(output);  
  40.   
  41.         final int color = 0xff424242;  
  42.         final Paint paint = new Paint();  
  43.         final Rect src = new Rect((int) left, (int) top, (int) right, (int) bottom);  
  44.         final Rect dst = new Rect((int) dst_left, (int) dst_top, (int) dst_right, (int) dst_bottom);  
  45.         final RectF rectF = new RectF(dst);  
  46.   
  47.         paint.setAntiAlias(true);// 设置画笔无锯齿  
  48.   
  49.         canvas.drawARGB(0000); // 填充整个Canvas  
  50.         paint.setColor(color);  
  51.   
  52.         // 以下有两种方法画圆,drawRounRect和drawCircle  
  53.         // canvas.drawRoundRect(rectF, roundPx, roundPx, paint);// 画圆角矩形,第一个参数为图形显示区域,第二个参数和第三个参数分别是水平圆角半径和垂直圆角半径。  
  54.         canvas.drawCircle(roundPx, roundPx, roundPx, paint);  
  55.   
  56.         paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));// 设置两张图片相交时的模式,参考http://trylovecatch.iteye.com/blog/1189452  
  57.         canvas.drawBitmap(bitmap, src, dst, paint); //以Mode.SRC_IN模式合并bitmap和已经draw了的Circle  
  58.           
  59.         return output;  
  60.     }  



参考流程图 &  原理图:



Demo下载:

http://download.csdn.net/detail/kkmike999/6562925

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值