关闭 x
IT技术网
    技 采 号
    ITJS.cn - 技术改变世界
    • 实用工具
    • 菜鸟教程
    IT采购网 中国存储网 科技号 CIO智库

    IT技术网

    IT采购网
    • 首页
    • 行业资讯
    • 系统运维
      • 操作系统
        • Windows
        • Linux
        • Mac OS
      • 数据库
        • MySQL
        • Oracle
        • SQL Server
      • 网站建设
    • 人工智能
    • 半导体芯片
    • 笔记本电脑
    • 智能手机
    • 智能汽车
    • 编程语言
    IT技术网 - ITJS.CN
    首页 » 安卓开发 »Android图片压缩实现过程及代码

    Android图片压缩实现过程及代码

    2016-01-06 00:00:00 出处:Gracker
    分享

    Android图片压缩无非两种,一种质量压缩,一种像素压缩,前者多用于图片上传时,后者多用于本地图片展示缩略图时。

    对于质量压缩,主要用到的一个方法就是:

    public?boolean?compress(CompressFormat?format,?int?quality,?OutputStream?stream)?{}

    这是Bitmap类里的一个方法,第一个参数表示图片压缩的格式,android中提供了以下格式:

    public?enum?CompressFormat?{
    ????JPEG????(0),
    ????PNG?????(1),
    ????WEBP????(2);
    
    ????CompressFormat(int?nativeInt)?{
    ????????this.nativeInt?=?nativeInt;
    ????}
    ????final?int?nativeInt;
    }

    第二个参数表示压缩的质量,注意这个是压缩的关键,它的取值是0到100,越小表示压缩的越厉害,第三个参数表示把压缩的数据写入了outputstream流中。

    OK,来看一个例子:

    public?byte?[]?compressBitmap(Bitmap?bitmap,int?max){
    ????int?quality?=?100;
    ????ByteArrayOutputStream?byteArrayOutputStream?=?new?ByteArrayOutputStream();
    ????bitmap.compress(Bitmap.CompressFormat.JPEG,quality,byteArrayOutputStream);
    ????while?(byteArrayOutputStream.toByteArray().length?/?1024?>?max){
    ????????byteArrayOutputStream.reset();
    ????????quality?=?quality?-10;
    ????????bitmap.compress(Bitmap.CompressFormat.JPEG,quality,byteArrayOutputStream);
    ????}
    ????return?byteArrayOutputStream.toByteArray();
    }

    这个方法的第一个参数不必解释,第二个参数表示你要求的压缩后图片最大可以是多少。最后可以拿到一个byte数组。我们有了这个byte数组就可以转化为file或者bitmap。

    注意这种质量压缩后,像素本身没有改变。

    对于像素压缩,顾名思义就是压缩像素。这里用到的一个主要的方法就是:

    public?static?Bitmap?decodeFile(String?pathName,?Options?opts)?{
    ????Bitmap?bm?=?null;
    ????InputStream?stream?=?null;
    ????try?{
    ????????stream?=?new?FileInputStream(pathName);
    ????????bm?=?decodeStream(stream,?null,?opts);
    ????}?catch?(Exception?e)?{
    ????????/*??do?nothing.
    ????????????If?the?exception?happened?on?open,?bm?will?be?null.
    ????????*/
    ????????Log.e("BitmapFactory",?"Unable?to?decode?stream:?"?+?e);
    ????}?finally?{
    ????????if?(stream?!=?null)?{
    ????????????try?{
    ????????????????stream.close();
    ????????????}?catch?(IOException?e)?{
    ????????????????//?do?nothing?here
    ????????????}
    ????????}
    ????}
    ????return?bm;
    }

    这是BitmapFactory中的一个静态方法,第一个参数表示file的全路径,第二个参数是关键,Options是BitmapFactory类中的一个静态内部类,它有两个非常重要的属性:

    /**
    ?*?If?set?to?true,?the?decoder?will?return?null?(no?bitmap),?but
    ?*?the?out...?fields?will?still?be?set,?allowing?the?caller?to?query
    ?*?the?bitmap?without?having?to?allocate?the?memory?for?its?pixels.
    ?*/
    public?boolean?inJustDecodeBounds;
    
    /**
    ?*?If?set?to?a?value?>?1,?requests?the?decoder?to?subsample?the?original
    ?*?image,?returning?a?smaller?image?to?save?memory.?The?sample?size?is
    ?*?the?number?of?pixels?in?either?dimension?that?correspond?to?a?single
    ?*?pixel?in?the?decoded?bitmap.?For?example,?inSampleSize?==?4?returns
    ?*?an?image?that?is?1/4?the?width/height?of?the?original,?and?1/16?the
    ?*?number?of?pixels.?Any?value?<=?1?is?treated?the?same?as?1.?Note:?the
    ?*?decoder?uses?a?final?value?based?on?powers?of?2,?any?other?value?will
    ?*?be?rounded?down?to?the?nearest?power?of?2.
    ?*/
    public?int?inSampleSize;

    第一个属性inJustDecodeBounds,假如设置为ture,则返回null。

    第二个属性inSampleSize表示缩放比例,大于1表示缩小了原来的多少,比如inSampleSize == 4,就表示缩小了原来的四分之一,假如小于1则和1相同。

    好了来看看这个网上遍地都是的一个像素压缩的方法:

    private?Bitmap?getimage(String?srcPath)?{
    ????BitmapFactory.Options?newOpts?=?new?BitmapFactory.Options();
    ????//开始读入图片,此时把options.inJustDecodeBounds?设回true了
    ????newOpts.inJustDecodeBounds?=?true;
    ????Bitmap?bitmap?=?BitmapFactory.decodeFile(srcPath,newOpts);//此时返回bm为空
    
    ????newOpts.inJustDecodeBounds?=?false;
    ????int?w?=?newOpts.outWidth;
    ????int?h?=?newOpts.outHeight;
    ????//现在主流手机比较多是800*480分辨率,所以高和宽我们设置为
    ????float?hh?=?800f;//这里设置高度为800f
    ????float?ww?=?480f;//这里设置宽度为480f
    ????//缩放比。由于是固定比例缩放,只用高或者宽其中一个数据进行计算即可
    ????int?be?=?1;//be=1表示不缩放
    ????if?(w?>?h?&&?w?>?ww)?{//假如宽度大的话根据宽度固定大小缩放
    ????????be?=?(int)?(newOpts.outWidth?/?ww);
    ????}?else?if?(w?<?h?&&?h?>?hh)?{//假如高度高的话根据宽度固定大小缩放
    ????????be?=?(int)?(newOpts.outHeight?/?hh);
    ????}
    ????if?(be?<=?0)
    ????????be?=?1;
    ????newOpts.inSampleSize?=?be;//设置缩放比例
    ????//重新读入图片,注意此时已经把options.inJustDecodeBounds?设回false了
    ????bitmap?=?BitmapFactory.decodeFile(srcPath,?newOpts);
    ????return?bitmap;
    }

    是不是就很好理解了。

    上一篇返回首页 下一篇

    声明: 此文观点不代表本站立场;转载务必保留本文链接;版权疑问请联系我们。

    别人在看

    正版 Windows 11产品密钥怎么查找/查看?

    还有3个月,微软将停止 Windows 10 的更新

    Windows 10 终止支持后,企业为何要立即升级?

    Windows 10 将于 2025年10 月终止技术支持,建议迁移到 Windows 11

    Windows 12 发布推迟,微软正全力筹备Windows 11 25H2更新

    Linux 退出 mail的命令是什么

    Linux 提醒 No space left on device,但我的空间看起来还有不少空余呢

    hiberfil.sys文件可以删除吗?了解该文件并手把手教你删除C盘的hiberfil.sys文件

    Window 10和 Windows 11哪个好?答案是:看你自己的需求

    盗版软件成公司里的“隐形炸弹”?老板们的“法务噩梦” 有救了!

    IT头条

    公安部:我国在售汽车搭载的“智驾”系统都不具备“自动驾驶”功能

    02:03

    液冷服务器概念股走强,博汇、润泽等液冷概念股票大涨

    01:17

    亚太地区的 AI 驱动型医疗保健:2025 年及以后的下一步是什么?

    16:30

    智能手机市场风云:iPhone领跑销量榜,华为缺席引争议

    15:43

    大数据算法和“老师傅”经验叠加 智慧化收储粮食尽显“科技范”

    15:17

    技术热点

    SQL汉字转换为拼音的函数

    windows 7系统无法运行Photoshop CS3的解决方法

    巧用MySQL加密函数对Web网站敏感数据进行保护

    MySQL基础知识简介

    Windows7和WinXP下如何实现不输密码自动登录系统的设置方法介绍

    windows 7系统ip地址冲突怎么办?windows 7系统IP地址冲突问题的

      友情链接:
    • IT采购网
    • 科技号
    • 中国存储网
    • 存储网
    • 半导体联盟
    • 医疗软件网
    • 软件中国
    • ITbrand
    • 采购中国
    • CIO智库
    • 考研题库
    • 法务网
    • AI工具网
    • 电子芯片网
    • 安全库
    • 隐私保护
    • 版权申明
    • 联系我们
    IT技术网 版权所有 © 2020-2025,京ICP备14047533号-20,Power by OK设计网

    在上方输入关键词后,回车键 开始搜索。Esc键 取消该搜索窗口。