Created
January 31, 2013 09:07
-
-
Save npinto/4681514 to your computer and use it in GitHub Desktop.
imageOrientation.mm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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