当前位置: 代码迷 >> Android >> android 处置图片方法
  详细解决方案

android 处置图片方法

热度:74   发布时间:2016-05-01 16:25:13.0
android 处理图片方法
 // 处理图片 newwidth为宽,newheight为高  public static Bitmap zoomImg(Bitmap bm, int newWidth ,int newHeight){	    // 获得图片的宽高	    int width = bm.getWidth();	    int height = bm.getHeight();	    // 计算缩放比例	    float scaleWidth = ((float) newWidth) / width;	    float scaleHeight = ((float) newHeight) / height;	    // 取得想要缩放的matrix参数	    Matrix matrix = new Matrix();	    matrix.postScale(scaleWidth, scaleHeight);	    // 得到新的图片	    Bitmap newbm = Bitmap.createBitmap(bm, 0, 0, width, height, matrix, true);    	return newbm;	}
  相关解决方案