`
googlelee
  • 浏览: 114556 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

将bitmap保存为文件

 
阅读更多

 

private void saveBmpToSd(Bitmap bm, String url) {

        if (bm == null || url==null) { 

            return;

        }

        if (10 >freeSpaceOnSd()) {

            return;

        }

 

        String filename = url.replace("/", "").replace(":", "").replace(",", "")

        .replace("\\", "").replace(".", "").replace("?", "").replace("|", "").replace("\"", "")

        .replace(">", "").replace("<", "")+".png";

 

        String dir = this.getExternalCacheDir().getAbsolutePath();

        File file = new File(dir +"/" + filename);

 

        if(!file.exists()) {

       try {

           file.createNewFile();

           OutputStream outStream = new FileOutputStream(file);

           bm.compress(Bitmap.CompressFormat.PNG, 100, outStream);

           outStream.flush();

           outStream.close();

       } catch (IOException e) {

       

       }

        }

        if(StringUtils.IsShowLog) {

        //StringUtils.log(tag, "filename="+filename);

        //StringUtils.log(tag, "dir="+dir);

        }

    } 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics