Skip to content

Instantly share code, notes, and snippets.

View sedstrom's full-sized avatar

Simon Edström sedstrom

View GitHub Profile
Bitmap original = // Bitmap you want to crop
Bitmap croppedBitmap = Bitmap.createBitmap(original.getWidth(), original.getHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(croppedBitmap);
canvas.clipPath(path);
canvas.drawBitmap(original, 0,0, paint);