2

我正在使用相机意图拍照。但我正在 Imageview 上获得大图像。我的问题是——

 1.I want full sized image (Which I am getting using putExtra(), )
 2.But due to this My imageview size is increasing.
 3. Main problem is , Image captured is 90 degree roteted..

我的代码如下。

Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
                try
                {
                    // place where to store camera taken picture
                    tempPhoto = createTemporaryFile("picture", ".png");
                    tempPhoto.delete();
                }
                catch(Exception e)
                {

                    return ;
                }
                mImageUri = Uri.fromFile(tempPhoto);
                cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, mImageUri);
                startActivityForResult(cameraIntent, 6);

并在 onActivityResult---

protected void onActivityResult(int requestCode, int resultCode, Intent data) {  

        ContentResolver cr = getApplicationContext().getContentResolver();

        Bitmap photo=null;
        if (resultCode == RESULT_OK) {

            try {
                photo = android.provider.MediaStore.Images.Media.getBitmap(cr, Uri.fromFile(tempPhoto));
            } catch (FileNotFoundException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }


                ImageView imageView = (ImageView)this.findViewById(R.id.imageView1);  

                imageView.setImageBitmap(photo);

                }

我正在尝试使用 //Bitmap photo = (Bitmap) data.getExtras().get("data");
导致空指针异常的小图像。如何解决问题?

4

1 回答 1

2

我得到了我的问题的答案。

1.要通过相机获得全尺寸图像,请使用

 mImageUri = Uri.fromFile(tempPhoto);   
    cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, mImageUri);

 //tempPhoto is file location here you are storing camera photo in a temp file.
  1. 保持ImageView尺寸使用android:adjustViewBounds="true"

  2. 对于图像方向使用ExifOrientaion 请检查此链接以ExifOrientaion 获取 http://developer.android.com/reference/android/media/ExifInterface.html

于 2013-07-13T07:55:11.023 回答