1

iOSアプリで作業していますが、アプリが縦向きモードに固定されていても、実際のデバイスの向きを取得する方法を見つけようとしています. 現時点では、すべての方向チェックで縦向きになっています。これは私がチェックしたものです。

CGRect frame = [[UIScreen mainScreen] applicationFrame];
UIInterfaceOrientation orientation2 = [[UIApplication sharedApplication] statusBarOrientation];
UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];

基本的に、写真が撮られた向きを知りたいのですが、カメラピッカーが縦向きにロードされ、その後電話が横向きになった場合、写真の向きは縦向きになります。写真を撮った瞬間に実際のデバイスの向きを確認し、それに応じて変換できることを望んでいました。これにアプローチする方法についてのアイデアはありますか?

編集: ジャイロの使用を検討しており、それがどうなるかを報告します.

編集: 申し訳ありませんが、携帯電話自体が縦向きに固定されていることを言及する必要がありました.しかし、それを回避して実際に何であるかを確認する方法はありますか?

4

2 に答える 2

0

キャプチャした画像をこの関数に渡すと、キャプチャした方向の画像が返されます。

- (UIImage *)fixOrientation:(UIImage *)myImage 
{

    // No-op if the orientation is already correct
    if (myImage.imageOrientation == UIImageOrientationUp) return myImage;

    // We need to calculate the proper transformation to make the image upright.
    // We do it in 2 steps: Rotate if Left/Right/Down, and then flip if Mirrored.
    CGAffineTransform transform = CGAffineTransformIdentity;

    switch (myImage.imageOrientation) {
        case UIImageOrientationDown:
        case UIImageOrientationDownMirrored:
            transform = CGAffineTransformTranslate(transform, myImage.size.width, myImage.size.height);
            transform = CGAffineTransformRotate(transform, M_PI);
            break;

        case UIImageOrientationLeft:
        case UIImageOrientationLeftMirrored:
            transform = CGAffineTransformTranslate(transform, myImage.size.width, 0);
            transform = CGAffineTransformRotate(transform, M_PI_2);
            break;

        case UIImageOrientationRight:
        case UIImageOrientationRightMirrored:
            transform = CGAffineTransformTranslate(transform, 0, myImage.size.height);
            transform = CGAffineTransformRotate(transform, -M_PI_2);
            break;
        case UIImageOrientationUp:
        case UIImageOrientationUpMirrored:
            break;
    }

    switch (myImage.imageOrientation) {
        case UIImageOrientationUpMirrored:
        case UIImageOrientationDownMirrored:
            transform = CGAffineTransformTranslate(transform, myImage.size.width, 0);
            transform = CGAffineTransformScale(transform, -1, 1);
            break;

        case UIImageOrientationLeftMirrored:
        case UIImageOrientationRightMirrored:
            transform = CGAffineTransformTranslate(transform, myImage.size.height, 0);
            transform = CGAffineTransformScale(transform, -1, 1);
            break;
        case UIImageOrientationUp:
        case UIImageOrientationDown:
        case UIImageOrientationLeft:
        case UIImageOrientationRight:
            break;
    }

    // Now we draw the underlying CGImage into a new context, applying the transform
    // calculated above.
    CGContextRef ctx = CGBitmapContextCreate(NULL, myImage.size.width, myImage.size.height,
                                             CGImageGetBitsPerComponent(myImage.CGImage), 0,
                                             CGImageGetColorSpace(myImage.CGImage),
                                             CGImageGetBitmapInfo(myImage.CGImage));
    CGContextConcatCTM(ctx, transform);
    switch (myImage.imageOrientation) {
        case UIImageOrientationLeft:
        case UIImageOrientationLeftMirrored:
        case UIImageOrientationRight:
        case UIImageOrientationRightMirrored:
            // Grr...
            CGContextDrawImage(ctx, CGRectMake(0,0,myImage.size.height,myImage.size.width), myImage.CGImage);
            break;

        default:
            CGContextDrawImage(ctx, CGRectMake(0,0,myImage.size.width,myImage.size.height), myImage.CGImage);
            break;
    }

    // And now we just create a new UIImage from the drawing context
    CGImageRef cgimg = CGBitmapContextCreateImage(ctx);
    UIImage *img = [UIImage imageWithCGImage:cgimg];
    CGContextRelease(ctx);
    CGImageRelease(cgimg);
    return img;
}
于 2012-12-18T12:14:03.377 に答える
0

UIDeviceorientationプロパティを使用

[[UIDevice currentDevice] orientation];

デバイスの物理的な向きを返します。

参照

于 2012-12-18T12:25:04.173 に答える