Android查看后保存图像

时间:2012-09-04 16:49:41

标签: java android android-camera

我正在使用以下代码打开相机,拍摄图像并在图像视图中显示。

我假设在onActivityResult上我应该做一个bm.save类型的命令但是我看不到那个。理想情况下,我想将它保存为SD卡上的jpeg。 任何帮助将不胜感激。

汤姆

public class TakePhoto extends Activity {

    ImageView iv;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_take_photo);


        iv = (ImageView) findViewById(R.id.imageView1);

        Button b = (Button) findViewById(R.id.button1);
        b.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
                startActivityForResult(intent, 0);

            }
        });
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        // TODO Auto-generated method stub
        super.onActivityResult(requestCode, resultCode, data);

        Bitmap bm = (Bitmap) data.getExtras().get("data");

        iv.setImageBitmap(bm);

    }

}

2 个答案:

答案 0 :(得分:1)

这应该可以解决问题。使用您的位图(您使用相机拍摄)和您选择的文件名调用以下方法,例如。 “myEpicPic”。

(我知道您何时需要/需要保存位图)

public void writeBitmapToMemory(String filename, Bitmap bitmap) {
        FileOutputStream fos;
        // Use the compress method on the Bitmap object to write image to the OutputStream
        try {
            fos = this.openFileOutput(filename, Context.MODE_PRIVATE);
            // Writing the bitmap to the output stream
            bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);
            fos.close();

        } 
        catch (FileNotFoundException e) {
            e.printStackTrace();


        } 
        catch (IOException e) {
            e.printStackTrace();


        }

    }

如果你想再次从内存中读取位图:

public Bitmap readBitmapFromMemory(String filename) {
Bitmap defautBitmap = null;
File filePath = this.getFileStreamPath(filename);
FileInputStream fi;
try {
fi = new FileInputStream(filePath);
defautBitmap = BitmapFactory.decodeStream(fi);

} 
catch (FileNotFoundException e) {
e.printStackTrace();

}

return defautBitmap;

}

我希望这会有所帮助。

答案 1 :(得分:0)

在onActivityResult中,您可以像这样存储位图

File root = new File(Environment.getExternalStorageDirectory(), "Directory");
             if (!root.exists()) {
                    root.mkdirs();
               }


               String fname = "Image.png";
               File file = new File (root, fname);

              try {
                      FileOutputStream out = new FileOutputStream(file);
                      bm.compress(Bitmap.CompressFormat.PNG, 90, out);

                      out.flush();                      out.close();
               } catch (Exception e) {
                      e.printStackTrace();
              }