Created
October 13, 2014 09:25
-
-
Save joelrfcosta/7ab05ecbaad7fd92c678 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bitmap cameraBmp = MediaStore.Images.Media.getBitmap( | |
State.mainActivity.getContentResolver(), | |
Uri.fromFile( Utils.tempFileForAnImage() ) ); | |
cameraBmp = ThumbnailUtils.extractThumbnail(cameraBmp, 320,320); | |
// NOTE incredibly useful trick for cropping/resizing square | |
// http://stackoverflow.com/a/17733530/294884 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment