Carlo Matulessy
Carlo Matulessy

Reputation: 995

How to convert 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?

Upvotes: 28

Views: 54857

Answers (2)

Pooja Sangle
Pooja Sangle

Reputation: 331

I think this is what you need

bitmap.compress(CompressFormat.JPEG, 90, outputStream);

I hope this will help you.

Upvotes: 3

Karthi
Karthi

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

Related Questions