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. 升级mac自带的python

    系统自带的Python $ which python 终端输出 /usr/bin/python 使用Homebrew安装最新的Python2 为什么要使用Homebrew安装Python? 总能下载到 ...

  2. git pull遇到错误:error: Your local changes to the following files would be overwritten by merge:

    方法1:如果你想保留刚才本地修改的代码,并把git服务器上的代码pull到本地(本地刚才修改的代码将会被暂时封存起来) git stash git pull origin master git sta ...

  3. cf1136D. Nastya Is Buying Lunch(贪心)

    题意 题目链接 给出一个排列,以及\(m\)个形如\((x, y)\)的限制,表示若\(x\)在\(y\)之前则可以交换\(x, y\). 问\(n\)位置上的数最多能前进几步 \(n \leqsla ...

  4. c#无边框窗体移动

    [DllImport("user32.dll")]//拖动无窗体的控件 public static extern bool ReleaseCapture(); [DllImport ...

  5. 用ABP只要加人即可马上加快项目进展(二) - 分工篇

    2018年和1998年其中两大区别就是: 前端蓬勃发展, 前后端分离是一个十分大的趋势. 专门的测试人员角色被取消, 多出了一个很重要的角色, 产品经理   ABP只要加入即可马上加快项目进展, 选择 ...

  6. 「破解」Xposed强

    「破解」Xposed强 Hook Hook Hook! 两张图片,第一张是我的微信截图,第二张是我从微信Hook出的一些类名. 一段代码,Hook这些类名出来的源码. 知道这些我们能干嘛,当然是分析( ...

  7. IE打开https网站时,取消证书问题提示

    上面介绍了,调用IE来打开对应的网页问题,但是在实际测试中,有些网站是采用https协议的,这时候IE浏览器会弹出如下窗口,一般手动选择后,才可进入登录界面,那么该如何解决呢? 1.点击[继续浏览此网 ...

  8. c++函数集锦

    1.标准C++库字符串类std::string的用法 begin       得到指向字符串开头的Iterator end       得到指向字符串结尾的Iterator rbegin        ...

  9. 章节五、2-Package包和权限修饰符

    一.Package包 为了更好的组织类,java提供了包机制,用于区别类名的命名空间. 包的作用: 1.把功能相似或相关的类或接口组织在同一个包中,方便类的查找和使用. 2.如同文件夹一样,包也采用了 ...

  10. git 入门教程之知识速查

    知识速查 创建版本库 初始化项目 git init 从零开始创建项目 示例 git init 克隆项目 git clone 将已有项目拷贝到本地 示例 git clone git@github.com ...