0

我正在开发一个应用程序,当设备方向关闭时,我在横向模式下捕获图像。我GPUImageStillCamera用于捕获图像。但是我在图像旋转方面遇到了问题。问题是,当我在关闭设备旋转的横向模式下拍摄图像并保存在图库中时,打开设备旋转并且图像必须随设备方向旋转。但是在纵向模式下握住设备时图像是横向的,如果在横向模式下握住设备,图像旋转是 UpsideDown 。

笔记

在设备旋转开启的情况下拍摄时,图像旋转效果很好。问题仅出现在设备旋转关闭时横向模式下的图像。我已经尝试了很多这样的解决方案。但对我不起作用。

任何帮助将不胜感激。谢谢

4

1 回答 1

0

我得到了这个问题的解决方案。我试图检测accelerometer's旋转以获取旋转,即使设备方向为OFF. 添加CoreMotion.framerwork到您的项目中。然后导入CMMotionManager.h你的viewController. 在viewDidLoad中,添加以下代码:

self.motionManager = [[CMMotionManager alloc] init];
    self.motionManager.accelerometerUpdateInterval = 1;

    if ([self.motionManager isAccelerometerAvailable])
    {
        NSOperationQueue *queue = [[NSOperationQueue alloc] init];
        [self.motionManager startAccelerometerUpdatesToQueue:queue withHandler:^(CMAccelerometerData *accelerometerData, NSError *error) {
            dispatch_async(dispatch_get_main_queue(), ^{

                float xx = -accelerometerData.acceleration.x;
                float yy = accelerometerData.acceleration.y;
                float angle = atan2(yy, xx);

                // could fire a custom shouldAutorotateToInterfaceOrientation-event here.
                if(angle >= -2.25 && angle <= -0.75)
                {
                    if(_deviceOrientation != UIInterfaceOrientationPortrait)
                    {
                        _deviceOrientation = UIInterfaceOrientationPortrait;
                    }
                }
                else if(angle >= -0.75 && angle <= 0.75)
                {
                    if(_deviceOrientation != UIInterfaceOrientationLandscapeRight)
                    {
                        _deviceOrientation = UIInterfaceOrientationLandscapeRight;
                    }
                }
                else if(angle >= 0.75 && angle <= 2.25)
                {
                    if(_deviceOrientation != UIInterfaceOrientationPortraitUpsideDown)
                    {
                        _deviceOrientation = UIInterfaceOrientationPortraitUpsideDown;
                    }
                }
                else if(angle <= -2.25 || angle >= 2.25)
                {
                    if(_deviceOrientation != UIInterfaceOrientationLandscapeLeft)
                    {
                        _deviceOrientation = UIInterfaceOrientationLandscapeLeft;
                    }
                }
            });
        }];
    } else
        NSLog(@"not active");
于 2015-03-05T11:09:24.600 回答