码迷,mamicode.com
首页 > 其他好文 > 详细

保存Bitmap图像

时间:2017-04-06 15:27:48      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:evo   exist   format   put   tput   except   span   ber   dir   

  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图像

标签:evo   exist   format   put   tput   except   span   ber   dir   

原文地址:http://www.cnblogs.com/hui413027075/p/6673592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!