Выбор изображений из галереи с помощью следующего кода:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
startActivityForResult(intent, PICK_FILE_RESULT_CODE);
Получение результата с помощью следующего кода:
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == PICK_FILE_RESULT_CODE) {
if (resultCode == RESULT_OK && data != null && data.getData() != null) {
// Get the Uri of the selected file
Uri uri = data.getData();
//Using Picasso to load uri to imageView
//Image is in landscape even if it was taken in portrait
}
}
}
Этот код отлично подходит для телефонов HTC и Nexus, но для устройств Samsung (Galaxy 5 и Galaxy 5 mini) ориентация неверна, если фотография сделана на портрете. При просмотре ExifInterface ориентация undefined..
File imageFile = new File(uri.getPath());
ExifInterface exif = new ExifInterface(
imageFile.getAbsolutePath());
int orientation = exif.getAttributeInt(
ExifInterface.TAG_ORIENTATION,
ExifInterface.ORIENTATION_NORMAL);
//orientation is always 0 for samsung devices = ORIENTATION_UNDEFINED
Как я могу представить изображения правильно альтернативно, определите правильную ориентацию, чтобы я мог поворачивать изображение?