android 根据分辨率对图像进行缩放

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);

  

posted on 2011-11-02 10:05  John Smith  阅读(386)  评论(0编辑  收藏  举报