Некоторые изображения поворачиваются на 90 градусов при загрузке? андроид
При загрузке этого изображения на сервер. поворачивается на 90 градусов. вот ссылка на изображение:
https://drive.google.com/file/d/0Bw8vnOWKrLfgWElsRW81SmxXeDA/view?usp=sharing
Вот код для проверки ориентации. но он не обнаруживает вращение:
/**
* get image matrix rotation by uri
*/
private static Matrix matrixUriImgRotation(Uri uri) {
Log.i("imageRotatin", "image rotation called");
ExifInterface exif = null;
try {
exif = new ExifInterface(uri.getPath());
} catch (Exception e) {
Log.i("imageRotatin", "exception:" + e.getMessage());
}
//get image rotation
int exifRotation = 0;
if (exif != null) {
exifRotation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);
Log.i("imageRotatin", "exif not null");
}
//convert exif rotation to degrees
int rotationInDegrees = 0;
if (exifRotation == ExifInterface.ORIENTATION_ROTATE_90) {
rotationInDegrees = 90;
} else if (exifRotation == ExifInterface.ORIENTATION_ROTATE_180) {
rotationInDegrees = 180;
} else if (exifRotation == ExifInterface.ORIENTATION_ROTATE_270) {
rotationInDegrees = 270;
}
//build matrix
Matrix matrix = new Matrix();
if (exifRotation != 0) {
Log.i("imageRotatin", "rotationInDegree:" + rotationInDegrees);
matrix.preRotate(rotationInDegrees);
}
return matrix;
}
примечание: другие изображения загружаются без проблем.