Reputation: 995
I have a cropped bitmap image and I need to save it into a jpeg file.
How do I convert it from a bitmap to a jpeg file in Android?
Upvotes: 28
Views: 54857
Reputation: 331
I think this is what you need
bitmap.compress(CompressFormat.JPEG, 90, outputStream);
I hope this will help you.
Upvotes: 3
Reputation: 748
Try this
bitmap.compress(Bitmap.CompressFormat.JPEG, quality, outStream);
Here is a sample Program
compressing-a-bitmap-to-jpg-format-android
Upvotes: 7