1

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.

shiami
  • 7,174
  • 16
  • 53
  • 68

1 Answers1

0

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.

Romain Guy
  • 97,993
  • 18
  • 219
  • 200