How to convert a bitmap to a jpeg file in Android?
android, bitmap, file, jpeg
Solution
Try this
bitmap.compress(Bitmap.CompressFormat.JPEG, quality, outStream);
Here is a sample Program
compressing-a-bitmap-to-jpg-format-android
Problem
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?