I am using gallery picker for picking an image from gallery. The photos taken by the camera in portrait mode is shown in the gallery as straight. But when I import the photos, i get the photo as rotated (landscape). Only gallery is showing this picture as straight. How to manage this problem? I want all photos as its actual orientation. Thanks in advance

private void addImageFromGallery() {

    Intent intent = new Intent();
    intent.setType("image/*");
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(Intent.createChooser(intent, "Select Picture"),
            GALLERY_CODE);

}
link|improve this question

75% accept rate
Gallery knows the exact orientation of the phone while taking the picture. So it rotates the picture. But I am not getting that. – Zacharias Feb 2 at 5:54
feedback

2 Answers

up vote 2 down vote accepted

Got the answer. The orientation is saved with the image in EXIF format. We have to read the Orientation tag of the data for each image..

public static float rotationForImage(Context context, Uri uri) {
        if (uri.getScheme().equals("content")) {
        String[] projection = { Images.ImageColumns.ORIENTATION };
        Cursor c = context.getContentResolver().query(
                uri, projection, null, null, null);
        if (c.moveToFirst()) {
            return c.getInt(0);
        }
    } else if (uri.getScheme().equals("file")) {
        try {
            ExifInterface exif = new ExifInterface(uri.getPath());
            int rotation = (int)exifOrientationToDegrees(
                    exif.getAttributeInt(ExifInterface.TAG_ORIENTATION,
                            ExifInterface.ORIENTATION_NORMAL));
            return rotation;
        } catch (IOException e) {
            Log.e(TAG, "Error checking exif", e);
        }
    }
        return 0f;
    }

    private static float exifOrientationToDegrees(int exifOrientation) {
    if (exifOrientation == ExifInterface.ORIENTATION_ROTATE_90) {
        return 90;
    } else if (exifOrientation == ExifInterface.ORIENTATION_ROTATE_180) {
        return 180;
    } else if (exifOrientation == ExifInterface.ORIENTATION_ROTATE_270) {
        return 270;
    }
    return 0;
}
}

The rotation value can be used to correct a photo’s orientation as follows:

Matrix matrix = new Matrix();
float rotation = PhotoTaker.rotationForImage(context, uri);
if (rotation != 0f) {
      matrix.preRotate(rotation);
 }

Bitmap resizedBitmap = Bitmap.createBitmap(
 sourceBitmap, 0, 0, width, height, matrix, true);
link|improve this answer
great.. was looking for this.. – Andro Selva Feb 6 at 8:16
@AndroSelva: :) – Zacharias Feb 6 at 9:27
feedback

while setting it to the imageview, check if the width of the image is greater than height or not and rotate it to 90 if needed

link|improve this answer
That is not possible because we are getting all image in the ratio 640X480. – Zacharias Feb 2 at 7:59
if it is in landscape, it will be like 480x640 right? – Seshu Vinay Feb 2 at 9:40
1  
Got the answer... An orientation tag is saved with each image. Check this link mobisocial.stanford.edu/news/2011/08/rotating-images-in-android – Zacharias Feb 6 at 4:19
post your answer. It will be useful to others – Seshu Vinay Feb 6 at 5:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.