简体   繁体   English

相机拍照旋转

[英]Camera taking picture rotated

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

        cameraButton = findViewById(R.id.cameraButton);
        imageView = findViewById(R.id.imageView);

        cameraButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
                startActivityForResult(intent, 0);
            }
        });
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        Bitmap bitmap = (Bitmap) data.getExtras().get("data");
        imageView.setImageBitmap(bitmap);
    }
}

For some reason the code above rotates the picture after it is taken. 由于某些原因,上面的代码会在拍摄后旋转图片。 I tried uploading a picture below to show what I mean. 我尝试在下面上传图片以显示我的意思。 Not sure if StackOverflow added it 不知道是否StackOverflow添加了它

Yes for that you have to manage it with the help of EXIFINTERFACE 是的,您必须借助EXIFINTERFACE对其进行管理

Write below code into your onActivityResult() method. 将以下代码写入您的onActivityResult()方法。

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

String timeStamp = new SimpleDateFormat( "yyyyMMdd_HHmmss").format( new Date( ));
output_file_name = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM) + File.separator + timeStamp + ".jpeg";

File pictureFile = new File(output_file_name);
if (pictureFile.exists()) {
    pictureFile.delete();
}

try {
    FileOutputStream fos = new FileOutputStream(pictureFile);

    Bitmap realImage = BitmapFactory.decodeByteArray(data, 0, data.length);

    ExifInterface exif=new ExifInterface(pictureFile.toString());

    Log.d("EXIF value", exif.getAttribute(ExifInterface.TAG_ORIENTATION));
    if(exif.getAttribute(ExifInterface.TAG_ORIENTATION).equalsIgnoreCase("6")){
        realImage= rotate(realImage, 90);
    } else if(exif.getAttribute(ExifInterface.TAG_ORIENTATION).equalsIgnoreCase("8")){
        realImage= rotate(realImage, 270);
    } else if(exif.getAttribute(ExifInterface.TAG_ORIENTATION).equalsIgnoreCase("3")){
        realImage= rotate(realImage, 180);
    } else if(exif.getAttribute(ExifInterface.TAG_ORIENTATION).equalsIgnoreCase("0")){
        realImage= rotate(realImage, 90);
    }

    realImage.compress(Bitmap.CompressFormat.JPEG, 100, fos);

    fos.close();

    imageView.setImageBitmap(realImage);

} catch (FileNotFoundException e) {
    Log.d("Info", "File not found: " + e.getMessage());
} catch (IOException e) {
    Log.d("TAG", "Error accessing file: " + e.getMessage());
}
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM