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?
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?
Try this
bitmap.compress(Bitmap.CompressFormat.JPEG, quality, outStream);
Here is a sample Program
I think this is what you need
bitmap.compress(CompressFormat.JPEG, 90, outputStream);
I hope this will help you.