17

ビットマップをファイルに保存する際に問題があります。私の方法は次のようなものです:

private File savebitmap(Bitmap bmp) {
    String extStorageDirectory = Environment.getExternalStorageDirectory()
            .toString();
    OutputStream outStream = null;

    File file = new File(bmp + ".png");
    if (file.exists()) {
        file.delete();
        file = new File(extStorageDirectory, bmp + ".png");
        Log.e("file exist", "" + file + ",Bitmap= " + bmp);
    }
    try {
        outStream = new FileOutputStream(file);
        bmp.compress(Bitmap.CompressFormat.PNG, 100, outStream);
        outStream.flush();
        outStream.close();
    } catch (Exception e) {
        e.printStackTrace();
    }
    Log.e("file", "" + file);
    return file;

}

ファイルのエラーが発生します。このメソッドを次のように呼び出しています。

Drawable d = iv.getDrawable();
Bitmap bitmap = ((BitmapDrawable) d).getBitmap();
File file = savebitmap(bitmap);

私を助けてください...

4

3 に答える 3

35

私はあなたのコードにいくつかの修正を加えようとしています.ビットマップの代わりにファイル名をパラメーターとして使用したいと思います.

 private File savebitmap(String filename) {
      String extStorageDirectory = Environment.getExternalStorageDirectory().toString();
      OutputStream outStream = null;

      File file = new File(filename + ".png");
      if (file.exists()) {
         file.delete();
         file = new File(extStorageDirectory, filename + ".png");
         Log.e("file exist", "" + file + ",Bitmap= " + filename);
      }
      try {
         // make a new bitmap from your file
         Bitmap bitmap = BitmapFactory.decodeFile(file.getName());

         outStream = new FileOutputStream(file);
         bitmap.compress(Bitmap.CompressFormat.PNG, 100, outStream);
         outStream.flush();
         outStream.close();
      } catch (Exception e) {
         e.printStackTrace();
      }
      Log.e("file", "" + file);
      return file;

   }
于 2013-03-15T09:56:52.620 に答える
2

あなたはこのように書くことはできません

 File file = new File(bmp + ".png");

この行も間違っています

file = new File(extStorageDirectory, bmp + ".png");

ビットマップではなく文字列値を指定する必要があります。

 File file = new File(filename + ".png"); 
于 2013-03-15T09:50:14.003 に答える
0

変更ファイル file = new File(bmp + ".png"); to File file = new File(extStorageDirectory,"bmp.png"); あなたがほぼ二度目にしたように。

于 2013-03-15T09:50:21.287 に答える