// 拿到要缩小放大的Bitmap
obitmap = BitmapFactory.decodeResource(this.getResources(),R.drawable.ic_launcher);
obitmap1 = BitmapFactory.decodeResource(this.getResources(),R.drawable.cazhao);
// 进行缩小放大操作
bitmap = a(obitmap);
bitmap1 = a(obitmap1);
// -----------
iv = (ImageView) findViewById(R.id.imagev);
iv1 = (ImageView) findViewById(R.id.imagev1);
iv.setImageBitmap(bitmap);
iv1.setImageBitmap(bitmap1);
public Bitmap a(Bitmap obp) {
Bitmap rbitmap;
// 全屏幕高
WindowManager wm = (WindowManager) this
.getSystemService(Context.WINDOW_SERVICE);
// 新图片的高,你自己可以设置。我这是按比例,取图片的高。
int ny = wm.getDefaultDisplay().getHeight() / 8;
// 源图片的高
int oy = obp.getHeight();
// 这里计算缩放的比例,你可以在下面createBitmap自己直接设置缩放的比例
float c = ny * 1.0f / oy;
Matrix matrix = new Matrix();
matrix.preScale(c, c);
//弄出来
rbitmap = Bitmap.createBitmap(obp, 0, 0, oy, oy, matrix, true);
return rbitmap;
}