Reputation: 61
How to compress bitmap to jpeg? Storing in a file system is unacceptable.
Upvotes: 0
Views: 379
Reputation: 507
Just use below code!
Bitmap bmp = null;
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.JPEG, 100, stream);
byte[] byteArray = stream.toByteArray();
Upvotes: 1