Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android 圖片處理之制作圓角圖片

android 圖片處理之制作圓角圖片

編輯:關於Android編程

以下是改進一個前人做的圓角圖片的例子,少創建一次bitmap public static Bitmap roundCorners(final Bitmap source, final float radius) {         int width = source.getWidth();         int height = source.getHeight();           Paint paint = new Paint();         paint.setAntiAlias(true);         paint.setColor(android.graphics.Color.WHITE);           Bitmap clipped = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);         Canvas canvas = new Canvas(clipped);         canvas.drawRoundRect(new RectF(0, 0, width, height), radius, radius,                 paint);                  paint.setXfermode(new PorterDuffXfermode(android.graphics.PorterDuff.Mode.SRC_IN));         canvas.drawBitmap(source, 0, 0, paint);                  source.recycle();           return clipped;     }     原例:     /**      * Round the corners of a {@link Bitmap}      *      * @param source      * @param radius      * @return rounded corner bitmap      */     public static Bitmap roundCorners(final Bitmap source, final float radius) {         int width = source.getWidth();         int height = source.getHeight();           Paint paint = new Paint();         paint.setAntiAlias(true);         paint.setColor(WHITE);           Bitmap clipped = Bitmap.createBitmap(width, height, ARGB_8888);         Canvas canvas = new Canvas(clipped);         canvas.drawRoundRect(new RectF(0, 0, width, height), radius, radius,                 paint);         paint.setXfermode(new PorterDuffXfermode(DST_IN));           Bitmap rounded = Bitmap.createBitmap(width, height, ARGB_8888);         canvas = new Canvas(rounded);         canvas.drawBitmap(source, 0, 0, null);         canvas.drawBitmap(clipped, 0, 0, paint);           source.recycle();         clipped.recycle();           return rounded;     }  
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved