Update MenuBuilder.java

This commit is contained in:
vshcherb 2021-01-25 19:16:11 +01:00 committed by GitHub
parent 522631c135
commit 6547fe3adf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -575,7 +575,7 @@ public class MenuBuilder {
BufferedInputStream bufferedInputStream = new BufferedInputStream(image);
Bitmap bmp = BitmapFactory.decodeStream(bufferedInputStream);
ByteArrayOutputStream os = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 70, os);
bmp.compress(Bitmap.CompressFormat.JPEG, 90, os);
return os.toByteArray();
}