Get correct image orientation property from photolibrary image

612 Views Asked by At

In my iPhone application I take an image with UIImagePickerController from PhotoLibrary. How can I get correct imageOrientation property?

Update In any case I get UIImageOrientationUp

4

There are 4 best solutions below

1
On
 - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {

        UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];
        UIImageOrientation imageOrientation = image.imageOrientation;

    }
1
On

Write this code in your didFinishPickingMediaWithInfo delegate method

Get the UIImage from the info dictionary .

And then use this UIImageOrientation orient = image.imageOrientation;

6
On

USE this method like for image named "image1"

[self checkImageOrientaionImage:image1];

Method:

-(void)checkImageOrientaionImage:(UIImage*)image
{

    if (image.imageOrientation == UIImageOrientationUp)
    {
        NSLog(@"portrait");
    }
   else if (image.imageOrientation == UIImageOrientationLeft || image.imageOrientation == UIImageOrientationRight)
    {
       NSLog(@"landscape");
    }

}

0
On

Important: The UIImagePickerController class supports portrait mode only. This class is intended to be used as-is and does not support subclassing. The view hierarchy for this class is private and must not be modified, with one exception. You can assign a custom view to the cameraOverlayView property and use that view to present additional information or manage the interactions between the camera interface and your code.

As per the UIImagePickerController Class Reference

Check this question also: Stack over flow link