Android 图片转bitmap压缩

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/sinat_28864443/article/details/89022360
private int compressPercent = 2;//压缩图片的压缩比 默认2表示压缩为原来的 1/2

BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = compressPercent;//直接设置它的压缩率,表示1/2
bitmapMap = BitmapFactory.decodeFile(mapBgUrl, options);

详细了解 BitmapFactory.Options 请点这里

更多的信息请网络搜索了解

猜你喜欢

转载自blog.csdn.net/sinat_28864443/article/details/89022360