保存Bitmap图像

Posted yaolunhui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了保存Bitmap图像相关的知识,希望对你有一定的参考价值。

  1. /**  
  2.   * 保存文件  
  3.   * @param bm  
  4.   * @param fileName  
  5.   * @throws IOException  
  6.   */    
  7.  public void saveFile(Bitmap bm, String fileName) throws IOException {   
  8.   String path = getSDPath() +"/revoeye/";       
  9.      File dirFile = new File(path);    
  10.      if(!dirFile.exists()){    
  11.          dirFile.mkdir();    
  12.      }    
  13.      File myCaptureFile = new File(path + fileName);    
  14.      BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(myCaptureFile));    
  15.      bm.compress(Bitmap.CompressFormat.JPEG, 80, bos);    
  16.      bos.flush();    
  17.      bos.close();    
  18.  }  

以上是关于保存Bitmap图像的主要内容,如果未能解决你的问题,请参考以下文章

保存Bitmap图像

Bitmap详解与Bitmap的内存优化

Android图像处理之Bitmap类

Bitmap对图像的处理

Bitmap具体解释与Bitmap的内存优化

图像处理之输入和保存