Android图片缩放效果代码:

        /***         * 图片的缩放方法         *          * @param bgimage 源图片资源         * @param newWidth 缩放后宽度         * @param newHeight 缩放后高度         * @return 缩放后的图片         */        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 = ((float) newWidth) / width;                float scaleHeight = ((float) newHeight) / height;                // 缩放图片动作                matrix.postScale(scaleWidth, scaleHeight);                Bitmap bitmap = Bitmap.createBitmap(bgimage, 0, 0, (int) width,                                (int) height, matrix, true);                return bitmap;        }     }

源码地址:点击打开链接

更多相关文章

  1. Android 与H5交互心得(Base64图片)
  2. Android 调用系统的分享[完美实现同时分享图片和文字]
  3. Android学习札记51:在TextView显示插入的图片
  4. DataBinding赋值本地图片src
  5. 2011.09.29(2)——— android 图片缩略图
  6. android 获取图片信息 之 ExifInterface
  7. [置顶] [Android] AsyncTask使用实例---加载网络图片

随机推荐

  1. 用shell写一个mysql数据备份脚本
  2. 分析Mysql事务和数据的一致性处理问题
  3. MySQL中slave_exec_mode参数详解
  4. MySQL的慢日志线上问题及优化方案
  5. linux系统下安装配置解压版的MySQL数据库
  6. Mysql5.6.36脚本编译安装及初始化教程
  7. 浅谈Mysql指定顺序排序查询
  8. Mysql数据库双机热备难点分析
  9. Mysql通过Adjacency List(邻接表)存储树
  10. Mysql实现企业级日志管理、备份与恢复的