逆水行舟用力撑,一篙松劲退千寻。这篇文章主要讲述Android 等比例缩放图片相关的知识,希望能为你提供帮助。
// 缩放图片 public static Bitmap zoomImg(String img, int newWidth ,int newHeight){ // 图片源 Bitmap bm = BitmapFactory.decodeFile(img); if(null!=bm){ return zoomImg(bm,newWidth,newHeight); } return null; }public static Bitmap zoomImg(Context context,String img, int newWidth ,int newHeight){ // 图片源 try { Bitmap bm = BitmapFactory.decodeStream(context.getAssets() .open(img)); if (null != bm) { return zoomImg(bm, newWidth, newHeight); } } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return null; } // 缩放图片 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; }
【Android 等比例缩放图片】
推荐阅读
- Android 自定义View,仿微信视频播放按钮
- Android数据加密之Base64编码算法
- Android 内存管理机制详解
- android四大组件(详细总结)
- 实现类知乎android客户端关注和取消关注的按钮点击效果
- Android Studio 2.2 来啦
- Windows下Ionic Android开发环境搭建
- Java4Android基础学习之面向对象应用
- Java4Android基础学习之对象的转型