private Bitmap getMetadataBitmap(Bitmap bm){
int width = bm.getWidth();
int height = bm.getHeight();
//固定的长宽
int newWidth = 90;
int newHeight = 130;
float scaleWidth = ((float) newWidth) / width;
float scaleHeight = ((float) newHeight) / height;
Matrix matrix = new Matrix();
matrix.postScale(scaleWidth, scaleHeight);
Bitmap newbm = Bitmap.createBitmap(bm, 0, 0, width, height, matrix,
true);
return newbm;
}
本文介绍了一种将图片缩放到指定尺寸的方法。通过获取原始图片的宽度和高度,计算缩放比例,并使用Matrix对象进行缩放操作,最终创建并返回新的缩放后的Bitmap对象。
699

被折叠的 条评论
为什么被折叠?



