天天看點

[轉]裁剪一張圖檔成圓形圖檔

  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.         Bitmap output = Bitmap.createBitmap(width, height, Config.ARGB_8888);  
  38.         Canvas canvas = new Canvas(output);  
  39.         final int color = 0xff424242;  
  40.         final Paint paint = new Paint();  
  41.         final Rect src = new Rect((int) left, (int) top, (int) right, (int) bottom);  
  42.         final Rect dst = new Rect((int) dst_left, (int) dst_top, (int) dst_right, (int) dst_bottom);  
  43.         final RectF rectF = new RectF(dst);  
  44.         paint.setAntiAlias(true);// 設定畫筆無鋸齒  
  45.         canvas.drawARGB(0, 0, 0, 0); // 填充整個Canvas  
  46.         paint.setColor(color);  
  47.         // 以下有兩種方法畫圓,drawRounRect和drawCircle  
  48.         // canvas.drawRoundRect(rectF, roundPx, roundPx, paint);// 畫圓角矩形,第一個參數為圖形顯示區域,第二個參數和第三個參數分别是水準圓角半徑和垂直圓角半徑。  
  49.         canvas.drawCircle(roundPx, roundPx, roundPx, paint);  
  50.         paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));// 設定兩張圖檔相交時的模式,參考http://trylovecatch.iteye.com/blog/1189452  
  51.         canvas.drawBitmap(bitmap, src, dst, paint); //以Mode.SRC_IN模式合并bitmap和已經draw了的Circle  
  52.         return output;  
  53.     }  

參考流程圖 &  原理圖:

轉自:

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