0

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

我假设在 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);

    }

}
4

2 回答 2

1

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

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

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;

}

我希望这有帮助。

于 2012-09-04T17:08:31.313 回答
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();
              }
于 2012-09-04T16:56:03.423 回答