Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. imgBitmap = BitmapFactory.decodeStream(in);
  2. File imageFile = new File(dir, fileName);
  3. os = new FileOutputStream(imageFile);
  4. imgBitmap.compress(Bitmap.CompressFormat.JPEG, 50, os);
  5. os.flush();
  6. os.close();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement