mDDpi = 0xF0;
mDpi = 0xA0;
if (mDDpi != mDpi) {
float perc = (float) mDpi / (float) mDDpi;
int width = (int) (org.getWidth() * perc);
int height = (int) (org.getHeight() * perc);
org = Bitmap.createScaledBitmap(org, width, height, true);
}
Drawable draw = new BitmapDrawable(getResources(), org);
转载于:https://www.cnblogs.com/tracydj/archive/2011/11/02/2232635.html