CoDe
CoDe

Reputation: 11146

Reducing the total size of a Bitmap in Android without loss of quality

How can I reduce the total file size (in Bytes) of a Bitmap in Android without a loss of quality?

Is it possible to Image filtering in Android programmability like: http://www.jhlabs.com/ip/filters/index.html

Thanks, for your suggestions.

Upvotes: 2

Views: 1153

Answers (1)

user684934
user684934

Reputation:

There are lossless compression techniques, quite a few of them. Just choose one that you like, find a library that implements it, and put it to use. We don't know what kind of images you are trying to compress, so we can't suggest the best one for you.

Upvotes: 2

Related Questions