首页 > 代码库 > 保存Bitmap到SD卡
保存Bitmap到SD卡
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(); } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。