【Android学习之利用BitmapFactory工厂压缩图片】书史足自悦,安用勤与劬。这篇文章主要讲述Android学习之利用BitmapFactory工厂压缩图片相关的知识,希望能为你提供帮助。
BufferedInputStream in = new BufferedInputStream( new FileInputStream(new File(path))); BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = false; options.inSampleSize = 2; //宽和高变为原来的1/2,即图片压缩为原来的1/4 Bitmap bitmap = BitmapFactory.decodeStream(in, null, options);
推荐阅读
- Android之AlterDialog介绍
- Android listview的item点击事件失效Bug的解决
- android之路Gallery 画廊
- 6款Windows的最佳免费FLAC到AAC转换器软件推荐合集
- 12个最佳免费在线PSD到PNG转换器网站推荐合集
- 8个在线将图像转换为GIF的最佳免费网站推荐合集
- 8个最佳免费CAD到PDF转换器在线网站推荐合集
- 6个最佳免费EPUB到JPG转换器在线网站推荐合集
- 6个在线将PDF转换为音频的最佳免费网站推荐合集