Камера делает снимок повернутым - PullRequest
0 голосов
/ 07 июня 2018
    @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);
    }
}

По какой-то причине приведенный выше код поворачивает изображение после его съемки.Я попытался загрузить картинку ниже, чтобы показать, что я имею в виду.Не уверен, что StackOverflow добавил его

1 Ответ

0 голосов
/ 07 июня 2018

Да, для этого вы должны управлять им с помощью EXIFINTERFACE

. Запишите приведенный ниже код в ваш метод 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());
}
}
...