首页 > 其他 > 详细

保存Bitmap到SD卡

时间:2014-08-02 20:59:34      阅读:420      评论:0      收藏:0      [点我收藏+]
public static void saveBitmapInExternalStorage(Bitmap bitmap,Context context) {
		try {
			if(IsExternalStorageAvailableAndWriteable()) {
				File extStorage = new File(Environment.getExternalStorageDirectory().getPath() +"/orimuse");//orimuse为SD卡下一个文件夹
				if (!extStorage.exists()) {
					extStorage.mkdirs();
				}
				File file = new File(extStorage,System.currentTimeMillis()+".png");
				FileOutputStream fOut = new FileOutputStream(file);
				bitmap.compress(Bitmap.CompressFormat.PNG, 90, fOut);//压缩图片
				fOut.flush();
				fOut.close();
				Toast.makeText(context,  "保存成功", Toast.LENGTH_SHORT).show();
			}
			else {
				Toast.makeText(context, "保存失败", Toast.LENGTH_SHORT).show();
			}
		}
		catch (IOException ioe){
			ioe.printStackTrace();
		}
	}

保存Bitmap到SD卡,布布扣,bubuko.com

保存Bitmap到SD卡

原文:http://blog.csdn.net/changhuiyuanh/article/details/38350669

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