Always rotate the image with the proper up orientation on Android (#42)
This commit is contained in:
parent
fff95be7c2
commit
ab1a39bf54
|
@ -226,11 +226,9 @@ class ImageResizer {
|
||||||
|
|
||||||
// Rotate if necessary
|
// Rotate if necessary
|
||||||
Bitmap rotatedImage = scaledImage;
|
Bitmap rotatedImage = scaledImage;
|
||||||
if (rotation != 0) {
|
int orientation = getOrientation(context, Uri.parse(imagePath));
|
||||||
int orientation = getOrientation(context, Uri.parse(imagePath));
|
rotation = orientation + rotation;
|
||||||
rotation = orientation + rotation;
|
rotatedImage = ImageResizer.rotateImage(scaledImage, rotation);
|
||||||
rotatedImage = ImageResizer.rotateImage(scaledImage, rotation);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (scaledImage != rotatedImage) {
|
if (scaledImage != rotatedImage) {
|
||||||
scaledImage.recycle();
|
scaledImage.recycle();
|
||||||
|
|
Loading…
Reference in New Issue