public String saveImageToGallery(Context context, Bitmap bmp) {
// 首先保存图片
File appDir = new File(Environment.getExternalStorageDirectory(), "saveImage");
if (!appDir.exists()) {
appDir.mkdir();
}
String fileName = System.currentTimeMillis() + ".jpg";
File file = new File(appDir, fileName);
try {
FileOutputStream fos = new FileOutputStream(file);
bmp.compress(Bitmap.CompressFormat.JPEG, 100, fos);
fos.flush();
fos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
// 最后通知图库更新
// String path = Environment.getExternalStorageDirectory() + "/saveImage/" + fileName;
// context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.parse("file://" + path)));
return Environment.getExternalStorageDirectory() + "/saveImage/" + fileName;
}
String s = saveImageToGallery(MainActivity.this, bitmap); File deletefile = new File(s); deletefile.delete();
最后
以上就是超级保温杯最近收集整理的关于图片保存到sd卡上,删除sd卡上的图片的全部内容,更多相关图片保存到sd卡上,删除sd卡上内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复