码迷,mamicode.com
首页 > 移动开发 > 详细

安卓学习-其他-保存图片

时间:2014-08-06 17:58:51      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   ar   div   

    /** 保存方法 */
    public void saveBitmap(Bitmap bm, String picName) {
        //获取SD卡的目录,不建议直接写sdcard
        File f = new File(Environment.getExternalStorageDirectory().getPath(),picName);
        //若存在,则删除
        if (f.exists()) {
            f.delete();
        }
        try {
            FileOutputStream out = new FileOutputStream(f);
            bm.compress(Bitmap.CompressFormat.PNG, 90, out);
            out.flush();
            out.close();
        } catch (FileNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

 

安卓学习-其他-保存图片,布布扣,bubuko.com

安卓学习-其他-保存图片

标签:style   blog   color   os   io   for   ar   div   

原文地址:http://www.cnblogs.com/weijj/p/3894728.html

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