Possible Duplicate:
change bitmap resolution in Android app
how to reduce DPI (Horizontal Resolution and vertical resolution ) of image or bitmap in android ?
Possible Duplicate:
change bitmap resolution in Android app
how to reduce DPI (Horizontal Resolution and vertical resolution ) of image or bitmap in android ?
By "reduce DPI" do you mean scaling image? If so then try this code
Bitmap.createScaledBitmap(sourceBitmap, dstWidth, dstHeight, false);