Search code examples
androidbitmapimage-scaling

How to scale down the image for better quality on Android?


Now I'm using the follow code to scale down the image downloaded from internet at runtime. But the result is not good enough.

Bitmap.createScaledBitmap(srcBitmap, dstWidth, dstHeight, true);

Any help? Thanks.


Solution

  • If the result is not good enough for you, try dividing the size of the image by 2 until you reach the size you want.