Android中Bitmap按比例放大

来源:互联网 发布:军事仿真软件 编辑:程序博客网 时间:2024/06/05 13:22

    其实这个很简单,但是不知道,怎么啦,我写了好几次都出现了异常。最后终于写好了。

     //把传进来的bitmap对象转换为宽度为x,长度为y的bitmap对象

     public static Bitmap big(Bitmap b,float x,float y)
 {
  int w=b.getWidth();
  int h=b.getHeight();
  float sx=(float)x/w;//要强制转换,不转换我的在这总是死掉。
  float sy=(float)y/h;
  Matrix matrix = new Matrix();
  matrix.postScale(sx, sy); // 长和宽放大缩小的比例
  Bitmap resizeBmp = Bitmap.createBitmap(b, 0, 0, w,
    h, matrix, true);
  return resizeBmp;
 }
原创粉丝点击