Skip to content

Instantly share code, notes, and snippets.

@j-onathan
Created August 26, 2014 17:49
Show Gist options
  • Save j-onathan/795eae495a00c9d3898d to your computer and use it in GitHub Desktop.
Save j-onathan/795eae495a00c9d3898d to your computer and use it in GitHub Desktop.
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));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment