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

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

Description

get Rounded Corner Bitmap

Declaration

public static Bitmap getRoundedCornerBitmap(Bitmap bitmap, float roundPx) 

Method Source Code

//package com.java2s;

import android.graphics.Bitmap;

import android.graphics.Canvas;

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

public class Main {

    public static Bitmap getRoundedCornerBitmap(Bitmap bitmap, float roundPx) {
        Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),
                bitmap.getHeight(), Bitmap.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 w  w w.  j a v  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(PorterDuff.Mode.SRC_IN));
        canvas.drawBitmap(bitmap, rect, rect, paint);
        return output;
    }
}

Related

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