1

Possible Duplicate:
change bitmap resolution in Android app

how to reduce DPI (Horizontal Resolution and vertical resolution ) of image or bitmap in android ?

Community
  • 1
  • 1
Parag Ghetiya
  • 421
  • 2
  • 14

1 Answers1

1

By "reduce DPI" do you mean scaling image? If so then try this code

Bitmap.createScaledBitmap(sourceBitmap, dstWidth, dstHeight, false);
vasart
  • 6,692
  • 38
  • 39