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

将Bitmap保存为本地图片

时间:2014-05-09 05:03:19      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:ext   int   get   c   com   string   

public boolean saveMyBitmap(Bitmap bmp, String bitName) throws IOException {
boolean flag = false;
if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED))
{

// 获得存储卡的路径
String sdpath = Environment.getExternalStorageDirectory() + "/";
String mSavePath = sdpath + "lzrc/imgs";

File f = new File(mSavePath, bitName);

f.createNewFile();
FileOutputStream fOut = null;
try {
fOut = new FileOutputStream(f);
bmp.compress(Bitmap.CompressFormat.PNG, 100, fOut);
flag = true;
} catch (FileNotFoundException e) {
e.printStackTrace();
}
try {
fOut.flush();
} catch (IOException e) {
e.printStackTrace();
}
try {
fOut.close();
} catch (IOException e) {
e.printStackTrace();
}

}
return flag;
}

将Bitmap保存为本地图片,布布扣,bubuko.com

将Bitmap保存为本地图片

标签:ext   int   get   c   com   string   

原文地址:http://www.cnblogs.com/lucoo/p/3716168.html

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