Android图片压缩(质量压缩和尺寸压缩)
在网上调查了图片压缩的方法并实装后,大致上可以认为有两类压缩:质量压缩(不改变图片的尺寸)和尺寸压缩(相当于是像素上的压缩);质量压缩一般可用于上传大图前的处理,这样就可以节省一定的流量,毕竟现在的手机拍照都能达到3M左右了,尺寸压缩一般可用于生成缩略图。
两种方法都实装在了我的项目中,结果却发现在质量压缩的模块中,本来1.9M的图片压缩后反而变成3M多了,很是奇怪,再做了进一步调查终于知道原因了。下面这个博客说的比较清晰:
android图片压缩总结
总 结来看,图片有三种存在形式:硬盘上时是file,网络传输时是stream,内存中是stream或bitmap,所谓的质量压缩,它其实只能实现对 file的影响,你可以把一个file转成bitmap再转成file,或者直接将一个bitmap转成file时,这个最终的file是被压缩过的,但 是中间的bitmap并没有被压缩(或者说几乎没有被压缩,我不确定),因为bigmap在内存中的大小是按像素计算的,也就是width * height,对于质量压缩,并不会改变图片的像素,所以就算质量被压缩了,但是bitmap在内存的占有率还是没变小,但你做成file时,它确实变小 了;
而尺寸压缩由于是减小了图片的像素,所以它直接对bitmap产生了影响,当然最终的file也是相对的变小了;
最后把自己总结的工具类贴出来:
import javaioByteArrayInputStream; import javaioByteArrayOutputStream; import javaioFile; import javaioFileNotFoundException; import javaioFileOutputStream; import javaioIOException; import androidgraphicsBitmap; import androidgraphicsBitmapConfig; import androidgraphicsBitmapFactory; public class ImageFactory { public Bitmap getBitmap(String imgPath) { // Get bitmap through image path BitmapFactoryOptions newOpts = new BitmapFactoryOptions(); newOptsinJustDecodeBounds = false; newOptsinPurgeable = true; newOptsinInputShareable = true; // Do not compress newOptsinSampleSize = 1; newOptsinPreferredConfig = ConfigRGB_565; return BitmapFactorydecodeFile(imgPath, newOpts); } public void storeImage(Bitmap bitmap, String outPath) throws FileNotFoundException { FileOutputStream os = new FileOutputStream(outPath); bitmapcompress(BitmapCompressFormatJPEG, 100, os); } public Bitmap ratio(String imgPath, float pixelW, float pixelH) { BitmapFactoryOptions newOpts = new BitmapFactoryOptions(); // 开始读入图片,此时把optionsinJustDecodeBounds 设回true,即只读边不读内容 newOptsinJustDecodeBounds = true; newOptsinPreferredConfig = ConfigRGB_565; // Get bitmap info, but notice that bitmap is null now Bitmap bitmap = BitmapFactorydecodeFile(imgPath,newOpts); newOptsinJustDecodeBounds = false; int w = newOptsoutWidth; int h = newOptsoutHeight; // 想要缩放的目标尺寸 float hh = pixelH;// 设置高度为240f时,可以明显看到图片缩小了 float ww = pixelW;// 设置宽度为120f,可以明显看到图片缩小了 // 缩放比。由于是固定比例缩放,只用高或者宽其中一个数据进行计算即可 int be = 1;//be=1表示不缩放 if (w > h && w > ww) {//如果宽度大的话根据宽度固定大小缩放 be = (int) (newOptsoutWidth / ww); } else if (w < h && h > hh) {//如果高度高的话根据宽度固定大小缩放 be = (int) (newOptsoutHeight / hh); } if (be <= 0) be = 1; newOptsinSampleSize = be;//设置缩放比例 // 开始压缩图片,注意此时已经把optionsinJustDecodeBounds 设回false了 bitmap = BitmapFactorydecodeFile(imgPath, newOpts); // 压缩好比例大小后再进行质量压缩 // return compress(bitmap, maxSize); // 这里再进行质量压缩的意义不大,反而耗资源,删除 return bitmap; } public Bitmap ratio(Bitmap image, float pixelW, float pixelH) { ByteArrayOutputStream os = new ByteArrayOutputStream(); imagecompress(BitmapCompressFormatJPEG, 100, os); if( ostoByteArray()length / 1024>1024) {//判断如果图片大于1M,进行压缩避免在生成图片(BitmapFactorydecodeStream)时溢出 osreset();//重置baos即清空baos imagecompress(BitmapCompressFormatJPEG, 50, os);//这里压缩50%,把压缩后的数据存放到baos中 } ByteArrayInputStream is = new ByteArrayInputStream(ostoByteArray()); BitmapFactoryOptions newOpts = new BitmapFactoryOptions(); //开始读入图片,此时把optionsinJustDecodeBounds 设回true了 newOptsinJustDecodeBounds = true; newOptsinPreferredConfig = ConfigRGB_565; Bitmap bitmap = BitmapFactorydecodeStream(is, null, newOpts); newOptsinJustDecodeBounds = false; int w = newOptsoutWidth; int h = newOptsoutHeight; float hh = pixelH;// 设置高度为240f时,可以明显看到图片缩小了 float ww = pixelW;// 设置宽度为120f,可以明显看到图片缩小了 //缩放比。由于是固定比例缩放,只用高或者宽其中一个数据进行计算即可 int be = 1;//be=1表示不缩放 if (w > h && w > ww) {//如果宽度大的话根据宽度固定大小缩放 be = (int) (newOptsoutWidth / ww); } else if (w < h && h > hh) {//如果高度高的话根据宽度固定大小缩放 be = (int) (newOptsoutHeight / hh); } if (be <= 0) be = 1; newOptsinSampleSize = be;//设置缩放比例 //重新读入图片,注意此时已经把optionsinJustDecodeBounds 设回false了 is = new ByteArrayInputStream(ostoByteArray()); bitmap = BitmapFactorydecodeStream(is, null, newOpts); //压缩好比例大小后再进行质量压缩 // return compress(bitmap, maxSize); // 这里再进行质量压缩的意义不大,反而耗资源,删除 return bitmap; } public void compressAndGenImage(Bitmap image, String outPath, int maxSize) throws IOException { ByteArrayOutputStream os = new ByteArrayOutputStream(); // scale int options = 100; // Store the bitmap into output stream(no compress) imagecompress(BitmapCompressFormatJPEG, options, os); // Compress by loop while ( ostoByteArray()length / 1024 > maxSize) { // Clean up os osreset(); // interval 10 options -= 10; imagecompress(BitmapCompressFormatJPEG, options, os); } // Generate compressed image file FileOutputStream fos = new FileOutputStream(outPath); foswrite(ostoByteArray()); fosflush(); fosclose(); } public void compressAndGenImage(String imgPath, String outPath, int maxSize, boolean needsDelete) throws IOException { compressAndGenImage(getBitmap(imgPath), outPath, maxSize); // Delete original file if (needsDelete) { File file = new File (imgPath); if (fileexists()) { filedelete(); } } } public void ratioAndGenThumb(Bitmap image, String outPath, float pixelW, float pixelH) throws FileNotFoundException { Bitmap bitmap = ratio(image, pixelW, pixelH); storeImage( bitmap, outPath); } public void ratioAndGenThumb(String imgPath, String outPath, float pixelW, float pixelH, boolean needsDelete) throws FileNotFoundException { Bitmap bitmap = ratio(imgPath, pixelW, pixelH); storeImage( bitmap, outPath); // Delete original file if (needsDelete) { File file = new File (imgPath); if (fileexists()) { filedelete(); } } } }
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
Android图片压缩(质量压缩和尺寸压缩)
下载Word文档到电脑,方便收藏和打印~
相关文章
- 如何设计 Java WebAPI 的 RESTful 服务?(Java WebAPI如何设计RESTful服务)
- 在 Java 中,序列化过程中 put 方法究竟有怎样的影响呢?(Java中put方法在序列化中的影响)
- 如何解决 Java 构建路径问题?(java构建路径问题怎么解决)
- Java 连接不上数据库的原因主要有哪些?(java连不上数据库的原因有哪些)
- 为什么在爬虫开发中更倾向于选择 Java?(为什么选择java做爬虫开发)
- 如何实现 Java 中两个 List 的交集?(java两个list取交集怎么实现)
- Java 中哪些字符需要进行转义?(java需要转义的字符有哪些)
- 如何在 Java 中调用类方法?(java怎么调用类方法)
- 如何在同一项目中巧妙地混合使用 Node.js 与 Java?(如何在同一项目中混合使用Node.js与Java)
- 如何在 Java 中设置时间间隔?(java怎么设置时间间隔)
猜你喜欢
Android图片压缩(质量压缩和尺寸压缩)
Android拍照得到全尺寸图片并进行压缩
Linux系统下怎么批量压缩图片尺寸大小
Android实现图片压缩(bitmap的六种压缩方式)
Android性能优化之图片大小,尺寸压缩的方法
Android如何实现压缩和解压缩文件
Android WebP 图片压缩与传输
Ubuntu如何批量压缩图片
android bitmap compress(图片压缩)代码
Android图片压缩的实例详解
Android性能优化(六)图片压缩
Android中文件的压缩和解压缩实例代码
python 批量压缩图片的脚本
python利用Guetzli批量压缩图片
编程热搜
Python 学习之路 - Python
一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-chatgpt的中文全称是什么
chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列C/C++可变参数的使用
可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃Python 3 教程
Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 PythonPython pip包管理
一、前言 在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install 和 pip , 目前官方推荐使用 pip。
编程资源站
- 资料下载
- 历年试题