保存图片到本地相信大家都有接触过,但最近发现一个问题,就是在保存图片之后在图库之后找不到保存的问题,出现这个问题是系统没有自动扫描我们所保存的图片,所以在图库中有时无法及时看到我们保存的图片,接下来我们看看如何解决这个问题。
首先是将图片保存到本地,可以有如下两种方式:
**第一种是自己写保存方法,如下代码**
public static void saveImageToGallery(Context context, Bitmap bitmap, ScannerType type) {
File appDir = new File(Environment.getExternalStorageDirectory().getAbsolutePath(), "HouSheng");
if (!appDir.exists()) {
// 目录不存在 则创建
appDir.mkdirs();
}
String fileName = System.currentTimeMillis() + ".jpg";
File file = new File(appDir, fileName);
try {
FileOutputStream fos = new FileOutputStream(file);
bitmap.compress(CompressFormat.JPEG, 100, fos); // 保存bitmap至本地
fos.flush();
fos.close();
} catch (Exception e) {
e.printStackTrace();
}
Toast.makeText(context, "图片保存为" + file.getAbsolutePath(), Toast.LENGTH_SHORT).show();
}
}
第二种是调用系统的插入方法,如下代码
try {
MediaStore.Images.Media
.insertImage(context.getContentResolver(), bitmap, fileName, description);
} catch (FileNotFoundException e) {
e.printStackTrace();
Log.e("TAG", "file not exist");
}
调用以上系统自带的方法会把bitmap对象保存到系统图库中,但是这种方法无法指定保存的路径和名称,上述方法的fileName、description参数只是插入数据库中的字段,真实的图片名称系统会自动分配。
看起来第二种方法就是我们所需要的方法,但可惜第二种还是没有立即更新图片,所以我们需要手动来更新图库。
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"+ Environment.getExternalStorageDirectory())));
上述代码是扫描SD卡,当然我们不能直接扫描SD卡,当SD中东西很多的时候,这种方式效率很低,可以采用下面的方法来扫描
private static void ScannerByReceiver(Context context, String path) {
context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.parse("file://"
+ path)));
Log.v("TAG", "receiver scanner completed");
}
所以当我们想要把一张图片保存到相应的目录下,又想要这张图片出现在我们的图库,可以按如下的方法来
// 扫描的两种方式
public static enum ScannerType {
RECEIVER, MEDIA
}
// 首先保存图片
public static void saveImageToGallery(Context context, Bitmap bitmap, ScannerType type) {
File appDir = new File(Environment.getExternalStorageDirectory().getAbsolutePath(), "HouSheng");
if (!appDir.exists()) {
// 目录不存在 则创建
appDir.mkdirs();
}
String fileName = System.currentTimeMillis() + ".jpg";
File file = new File(appDir, fileName);
try {
FileOutputStream fos = new FileOutputStream(file);
bitmap.compress(CompressFormat.JPEG, 100, fos); // 保存bitmap至本地
fos.flush();
fos.close();
} catch (Exception e) {
e.printStackTrace();
} finally {
if (type == ScannerType.RECEIVER) {
//通知系统更新
ScannerByReceiver(context, file.getAbsolutePath());
} else if (type == ScannerType.MEDIA) {
//通知系统更新
ScannerByMedia(context, file.getAbsolutePath());
}
if (!bitmap.isRecycled()) {
// bitmap.recycle(); 当存储大图片时,为避免出现OOM ,及时回收Bitmap
System.gc(); // 通知系统回收
}
Toast.makeText(context, "图片保存为" + file.getAbsolutePath(), Toast.LENGTH_SHORT).show();
}
}
/** Receiver扫描更新图库图片 **/
private static void ScannerByReceiver(Context context, String path) {
context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.parse("file://"
+ path)));
Log.v("TAG", "receiver scanner completed");
}
/** MediaScanner 扫描更新图片图片 **/
private static void ScannerByMedia(Context context, String path) {
MediaScannerConnection.scanFile(context, new String[] {path}, null, null);
Log.v("TAG", "media scanner completed");
}
源码下载