Skip to content

Instantly share code, notes, and snippets.

@sedstrom
Created September 20, 2017 16:00
Show Gist options
  • Save sedstrom/7078fff16c2b6948370590941bf8b5e6 to your computer and use it in GitHub Desktop.
Save sedstrom/7078fff16c2b6948370590941bf8b5e6 to your computer and use it in GitHub Desktop.
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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment