Skip to content

Instantly share code, notes, and snippets.

@npinto
Created January 31, 2013 09:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save npinto/4681514 to your computer and use it in GitHub Desktop.
Save npinto/4681514 to your computer and use it in GitHub Desktop.
imageOrientation.mm
UIImageOrientation imageOrientation;
if (UserDefaults.usingFrontCamera) {
switch (curDeviceOrientation) {
case UIDeviceOrientationLandscapeLeft:
imageOrientation = UIImageOrientationDown;
break;
case UIDeviceOrientationLandscapeRight:
imageOrientation = UIImageOrientationUp;
break;
case UIDeviceOrientationPortraitUpsideDown:
imageOrientation = UIImageOrientationLeft;
break;
default:
imageOrientation = UIImageOrientationRight;
break;
}
} else {
switch (curDeviceOrientation) {
case UIDeviceOrientationLandscapeLeft:
imageOrientation = UIImageOrientationUp;
break;
case UIDeviceOrientationLandscapeRight:
imageOrientation = UIImageOrientationDown;
break;
case UIDeviceOrientationPortraitUpsideDown:
imageOrientation = UIImageOrientationLeft;
break;
default:
imageOrientation = UIImageOrientationRight;
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment