Android Bitmap Corner Round getRoundedCornerBitmap(Bitmap bitmap, int roundPx)

Here you can find the source of getRoundedCornerBitmap(Bitmap bitmap, int roundPx)

Description

get Rounded Corner Bitmap

Declaration

public static Bitmap getRoundedCornerBitmap(Bitmap bitmap, int roundPx) 

Method Source Code

//package com.java2s;

import android.graphics.Bitmap;
import android.graphics.Bitmap.Config;

import android.graphics.Canvas;

import android.graphics.Paint;
import android.graphics.PorterDuff.Mode;
import android.graphics.PorterDuffXfermode;
import android.graphics.Rect;
import android.graphics.RectF;

public class Main {
    public static Bitmap getRoundedCornerBitmap(Bitmap bitmap, int roundPx) {
        Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),
                bitmap.getHeight(), Config.ARGB_8888);
        Canvas canvas = new Canvas(output);

        final int color = 0xff424242;
        final Paint paint = new Paint();
        final Rect rect = new Rect(0, 0, bitmap.getWidth(),
                bitmap.getHeight());//from www.  jav a2  s . co  m
        final RectF rectF = new RectF(rect);

        paint.setAntiAlias(true);
        canvas.drawARGB(0, 0, 0, 0);
        paint.setColor(color);

        canvas.drawRoundRect(rectF, roundPx, roundPx, paint);
        paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
        canvas.drawBitmap(bitmap, rect, rect, paint);

        return output;
    }
}

Related

  1. getRoundedCornerBitmap(Bitmap bitmap, int dp, Context context)
  2. roundCornersRGB888(Bitmap src, int roundPixles)
  3. getRoundedCornerBitmap(Context context, Bitmap bitmap, Boolean create_circle)
  4. getRoundedCornerBitmap(Bitmap bitmap)
  5. getRoundedCornerBitmap(Bitmap bitmap, float roundPx)
  6. getRoundBitmapFromUrl(String url, int pixels)
  7. toRoundCorner(Bitmap bitmap, int pixels)
  8. toRoundCorner( BitmapDrawable bitmapDrawable, int pixels)
  9. getRoundedCornerBitmap(Bitmap bitmap, float roundPx)