图像不会覆盖相同的名称

时间:2017-12-27 10:43:30

标签: java android bitmap overwrite

我正在开发图片编辑器应用..因此每次用户都必须保存图像。 所以先插入

  String savedImageURL = MediaStore.Images.Media.insertImage(
                        getContentResolver(),
                        bitmap,
                        "Bird",
                        "Image of bird"
                );

此代码,但它创建新文件而不是覆盖。

所以我使用另一种方法

public String saveImage(String folderName, String imageName) {
 String selectedOutputPath = "";
      if (isSDCARDMounted()) {
          File mediaStorageDir = new File(
                  Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES), folderName);
          // Create a storage directory if it does not exist
          if (!mediaStorageDir.exists()) {
              if (!mediaStorageDir.mkdirs()) {
                  Log.d("PhotoEditorSDK", "Failed to create directory");
              }
          }
          // Create a media file name
          selectedOutputPath = mediaStorageDir.getPath() + File.separator + imageName;
          Log.d("PhotoEditorSDK", "selected camera path " + selectedOutputPath);
     File file = new File(selectedOutputPath);
     try {
                    FileOutputStream out = new FileOutputStream(file,true);
                    if (parentView != null) {
                        parentView.setDrawingCacheEnabled(true);
                        parentView.getDrawingCache().compress(Bitmap.CompressFormat.JPEG, 80, out);
                    }
                    out.flush();
                    out.close();
                } catch (Exception e) {
                    e.printStackTrace();
                }
     }
     return selectedOutputPath;
       }

但它也没有用。

是否有人知道用同名覆盖位图?

2 个答案:

答案 0 :(得分:1)

将false作为第二个参数传递,将append设置为false,以便覆盖现有文件:

 FileOutputStream out = new FileOutputStream(file,false);

查看构造函数documentation

这是你的代码:

public String saveImage(String folderName, String imageName) {
 String selectedOutputPath = "";
    if (isSDCARDMounted()) {
        File mediaStorageDir = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES), folderName);
      // Create a storage directory if it does not exist
      if (!mediaStorageDir.exists()) {
          if (!mediaStorageDir.mkdirs()) {
              Log.d("PhotoEditorSDK", "Failed to create directory");
          }
      }
      // Create a media file name
      selectedOutputPath = mediaStorageDir.getPath() + File.separator + imageName;
      Log.d("PhotoEditorSDK", "selected camera path " + selectedOutputPath);
 File file = new File(selectedOutputPath);

if (file.exists()) 
{
  try {
            file.delete();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }


 try {
 file.createNewFile();
                FileOutputStream out = new FileOutputStream(file,false);
                if (parentView != null) {
                    parentView.setDrawingCacheEnabled(true);
                    parentView.getDrawingCache().compress(Bitmap.CompressFormat.JPEG, 80, out);
                }
                out.flush();
                out.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
 }
 return selectedOutputPath;
   }

答案 1 :(得分:1)

我也遇到过这种情况,但结果证明这不是保存的问题,而是在ImageViev中显示的问题。我用了Glide,结果是输出的时候存到了缓存中。而且我没有更改文件的名称和路径。也就是说,我重写了它们。但是Glide 并不知道这一点。他认为它们是同一个文件。为了解决这个问题,我添加了以下内容

\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::makeCategorizable()

如果您也有这种情况并且这些解决方案对您有所帮助,我很高兴。