[转]裁剪一张图片成圆形图片

  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(0, 0, 0, 0); // 填充整个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.     }  

参考流程图 &  原理图:

转自:

http://blog.csdn.net/sno_guo/article/details/42341917

原文地址:https://www.cnblogs.com/howarddeng/p/5480953.html