828384858687888990
int size = bitmap.getUncompressedSize(); if (size > BITMAP_SIZE_LIMIT) { throw new RuntimeException("Bitmap size of " + size + " exceeds maximum size of " + BITMAP_SIZE_LIMIT); } out.write(bitmap.toByteArray()); return null; } }