首页 > 其他 > 详细

将Bitmap保存为本地图片

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

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保存为本地图片

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!