Skip to content

Instantly share code, notes, and snippets.

@CateyesLin
Created April 29, 2014 02:07
Show Gist options
  • Save CateyesLin/11389142 to your computer and use it in GitHub Desktop.
Save CateyesLin/11389142 to your computer and use it in GitHub Desktop.
BitmapFactory.Options opts = new BitmapFactory.Options();
opts.inJustDecodeBounds = true;
BitmapFactory.decodeStream(is, null, opts);
...
opts.inSampleSize = ...
opts.inJustDecodeBounds = false;
...
is.reset(); //XXX Android 4.4 KitKat, Important! Without this, bmp will return null.
Bitmap bmp = BitmapFactory.decodeStream(is, null, opts);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment