1. android 将图片内容解析成字节数组,将字节数组转换为ImageView可调用的Bitmap对象,图片缩放,把字节数组保存为一个文件,把Bitmap转Byte
  2.  
    import java.io.BufferedOutputStream;  
  3.  
    import java.io.ByteArrayOutputStream;  
  4.  
    import java.io.File;  
  5.  
    import java.io.FileOutputStream;  
  6.  
    import java.io.IOException;  
  7.  
    import java.io.InputStream;  
  8.  
      
  9.  
    import android.graphics.Bitmap;  
  10.  
    import android.graphics.BitmapFactory;  
  11.  
    import android.graphics.Matrix;  
  12.  
      
  13.  
    public class ImageDispose {  
  14.  
          
  15.  
          
  16.  
          
  17.  
        /** 
  18.  
         * @param 将图片内容解析成字节数组 
  19.  
         * @param inStream 
  20.  
         * @return byte[] 
  21.  
         * @throws Exception 
  22.  
         */  
  23.  
        public static byte[] readStream(InputStream inStream) throws Exception {  
  24.  
            byte[] buffer = new byte[1024];  
  25.  
            int len = -1;  
  26.  
            ByteArrayOutputStream outStream = new ByteArrayOutputStream();  
  27.  
            while ((len = inStream.read(buffer)) != -1) {  
  28.  
                outStream.write(buffer, 0, len);  
  29.  
            }  
  30.  
            byte[] data = outStream.toByteArray();  
  31.  
            outStream.close();  
  32.  
            inStream.close();  
  33.  
            return data;  
  34.  
      
  35.  
        }  
  36.  
        /** 
  37.  
         * @param 将字节数组转换为ImageView可调用的Bitmap对象 
  38.  
         * @param bytes 
  39.  
         * @param opts 
  40.  
         * @return Bitmap 
  41.  
         */  
  42.  
        public static Bitmap getPicFromBytes(byte[] bytes,  
  43.  
                BitmapFactory.Options opts) {  
  44.  
            if (bytes != null)  
  45.  
                if (opts != null)  
  46.  
                    return BitmapFactory.decodeByteArray(bytes, 0, bytes.length,  
  47.  
                            opts);  
  48.  
                else  
  49.  
                    return BitmapFactory.decodeByteArray(bytes, 0, bytes.length);  
  50.  
            return null;  
  51.  
        }  
  52.  
        /** 
  53.  
         * @param 图片缩放 
  54.  
         * @param bitmap 对象 
  55.  
         * @param w 要缩放的宽度 
  56.  
         * @param h 要缩放的高度 
  57.  
         * @return newBmp 新 Bitmap对象 
  58.  
         */  
  59.  
        public static Bitmap zoomBitmap(Bitmap bitmap, int w, int h){  
  60.  
            int width = bitmap.getWidth();  
  61.  
            int height = bitmap.getHeight();  
  62.  
            Matrix matrix = new Matrix();  
  63.  
            float scaleWidth = ((float) w / width);  
  64.  
            float scaleHeight = ((float) h / height);  
  65.  
            matrix.postScale(scaleWidth, scaleHeight);  
  66.  
            Bitmap newBmp = Bitmap.createBitmap(bitmap, 0, 0, width, height,  
  67.  
                    matrix, true);  
  68.  
            return newBmp;  
  69.  
        }  
  70.  
          
  71.  
        /** 
  72.  
         * 把Bitmap转Byte 
  73.  
         */  
  74.  
        public static byte[] Bitmap2Bytes(Bitmap bm){  
  75.  
            ByteArrayOutputStream baos = new ByteArrayOutputStream();  
  76.  
            bm.compress(Bitmap.CompressFormat.PNG, 100, baos);  
  77.  
            return baos.toByteArray();  
  78.  
        }  
  79.  
        /** 
  80.  
         * 把字节数组保存为一个文件 
  81.  
         */  
  82.  
        public static File getFileFromBytes(byte[] b, String outputFile) {  
  83.  
            BufferedOutputStream stream = null;  
  84.  
            File file = null;  
  85.  
            try {  
  86.  
                file = new File(outputFile);  
  87.  
                FileOutputStream fstream = new FileOutputStream(file);  
  88.  
                stream = new BufferedOutputStream(fstream);  
  89.  
                stream.write(b);  
  90.  
            } catch (Exception e) {  
  91.  
                e.printStackTrace();  
  92.  
            } finally {  
  93.  
                if (stream != null) {  
  94.  
                    try {  
  95.  
                        stream.close();  
  96.  
                    } catch (IOException e1) {  
  97.  
                        e1.printStackTrace();  
  98.  
                    }  
  99.  
                }  
  100.  
            }  
  101.  
            return file;  
  102.  
        }  
  103.  
              
  104.  
    }  

Android中Bitmap对象和字节流之间的相互转换的更多相关文章

  1. Android中Bitmap对象和字节流之间的相互转换(转)

    android 将图片内容解析成字节数组:将字节数组转换为ImageView可调用的Bitmap对象:图片缩放:把字节数组保存为一个文件:把Bitmap转Byte import java.io.Buf ...

  2. Android中Bitmap, Drawable, Byte,ID之间的转化

    Android中Bitmap, Drawable, Byte,ID之间的转化 1.  Bitmap 转化为 byte ByteArrayOutputStream out = new ByteArray ...

  3. JS 中 JSON 对象与字符串之间的相互转换

    在开发的过程中,如果对于少量参数的前后台传递,可以直接采用ajax的data函数,按json格式传递,后台Request即可,但有的时候,需要传递多个参数,这样后台 接受的时候Request多个很麻烦 ...

  4. Json数组操作小记 及 JSON对象和字符串之间的相互转换

    [{"productid":"1","sortindex":"2"},{"productid":&q ...

  5. Android中传递对象的三种方法

    Android知识.前端.后端以至于产品和设计都有涉猎,想成为全栈工程师的朋友不要错过! Android中,Activity和Fragment之间传递对象,可以通过将对象序列化并存入Bundle或者I ...

  6. 【转】Android中dip(dp)与px之间单位转换

    Android中dip(dp)与px之间单位转换 dp这个单位可能对web开发的人比较陌生,因为一般都是使用px(像素)但是,现在在开始android应用和游戏后,基本上都转换成用dp作用为单位了,因 ...

  7. 在android中实现webview与javascript之间的交互(转)

    参见“在android中实现webview与javascript之间的交互”

  8. android中Bitmap的放大和缩小的方法

    android中Bitmap的放大和缩小的方法 时间 2013-06-20 19:02:34  CSDN博客原文  http://blog.csdn.net/ada168855/article/det ...

  9. JSON对象与字符串之间的相互转换

    <html> <head> <meta name="viewport" content="width=device-width" ...

随机推荐

  1. 2018-09-06 Java实现英汉词典API初版发布在Maven

    在打算批量代码汉化工具 · Issue #86 · program-in-chinese/overview时, 发现没有现成的Java库实现英汉查询功能. 于是开此项目. 源码库: program-i ...

  2. JMeter 监听器之保存响应到文件

    监听器之保存响应到文件   by:授客 QQ:1033553122 测试环境 apache-jmeter-2.13 1. 保存结果到响应文件 说明: 文件名称前缀:设置响应文件所在路径(路径必须已存在 ...

  3. WannaCry勒索比特币蠕虫病毒解决方案

    WannaCry ransomware used in widespread attacks all over the world Customer Guidance for WannaCrypt a ...

  4. mui 常见的效果

    上传图片,预览图片: <!--upload--> <div id="feedback" class="mui-page feedback"&g ...

  5. mysql数据的基本操作

    本文内容: 插入数据: 查询数据 修改数据 删除数据 首发日期:2018-04-11 插入数据: 给所有字段插入数据: 插入单条记录:insert into 表名 values(值列表); 插入多条记 ...

  6. NAT穿越(一) NAT类型

    NAT分为四种类型: (1)完全透明NAT(Full Cone NAT): 从内部主机  (IN IP ipa) +端口(IN PORT porta) 发送的数据映射为  IP(OUT IP IPA) ...

  7. [20181015]为什么是3秒.txt

    [20181015]为什么是3秒.txt --//以前测试:连接http://blog.itpub.net/267265/viewspace-2144765/=>为什么是12秒.txt.--// ...

  8. 洗礼灵魂,修炼python(75)--全栈项目实战篇(3)—— 账户注册登录管理系统

    要求: 1.系统可以创建用户和登录用户,根据用户的输入不同,做出不同的反应(创建还是登录) 2.创建用户不能创建已存在的用户名 3.登录用户的操作最多只能有三次,超过三次冻结账户,每使用一次提示用户还 ...

  9. CentOS6.5内 Oracle 11GR2静默安装

    一.修改配置文件 1.1.修改/etc/security/limits.conf文件,修改用户的SHELL的限制. 输入命令:vi /etc/security/limits.conf,将下列内容加入该 ...

  10. 自动化测试基础篇--Selenium中JS处理浏览器弹窗

    摘自https://www.cnblogs.com/sanzangTst/p/7692454.html 浏览器弹窗: 现在大多数网站都会使用自定义弹窗,使用Selenium自带的方法暂时处理不了,这时 ...