Skip to content

Instantly share code, notes, and snippets.

@MrBenJ
Created October 15, 2014 02:57
Show Gist options
  • Save MrBenJ/efb7b1d05bf7c837f956 to your computer and use it in GitHub Desktop.
Save MrBenJ/efb7b1d05bf7c837f956 to your computer and use it in GitHub Desktop.
Pre-Scale Bitmaps
originalImage = Bitmap.createScaledBitmap(
originalImage // Bitmap to resize
view.getWidth(), // new width
view.getHeight(), // new height
true); // Enable bilinear filtering
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment