in iOS/WAStickersThirdParty/YYImageCoder.m [981:993]
UIImageOrientation YYUIImageOrientationFromEXIFValue(NSInteger value) {
switch (value) {
case kCGImagePropertyOrientationUp: return UIImageOrientationUp;
case kCGImagePropertyOrientationDown: return UIImageOrientationDown;
case kCGImagePropertyOrientationLeft: return UIImageOrientationLeft;
case kCGImagePropertyOrientationRight: return UIImageOrientationRight;
case kCGImagePropertyOrientationUpMirrored: return UIImageOrientationUpMirrored;
case kCGImagePropertyOrientationDownMirrored: return UIImageOrientationDownMirrored;
case kCGImagePropertyOrientationLeftMirrored: return UIImageOrientationLeftMirrored;
case kCGImagePropertyOrientationRightMirrored: return UIImageOrientationRightMirrored;
default: return UIImageOrientationUp;
}
}