摘要: public static Bitmap zoomImage(Bitmap bgimage, double newWidth, double newHeight) { // 获取这个图片的宽和高 float width = bgimage.getWidth(); float height = bgimage.getHeight(); // 创建操作图片用的matrix对象 Matrix matrix = new Matrix(); // 计算宽高缩放率 float scaleWidth = ((f... 阅读全文
posted @ 2013-08-28 12:21 疯子FK 阅读(766) 评论(0) 推荐(0) 编辑