Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/webpack/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
iOS自定义摄像头(拍照),出现错误_Ios_Objective C_Ios Camera - Fatal编程技术网

iOS自定义摄像头(拍照),出现错误

iOS自定义摄像头(拍照),出现错误,ios,objective-c,ios-camera,Ios,Objective C,Ios Camera,这个错误看起来很偶然,我不知道如何修复,请帮帮我, 主要代码如下: 如果您想查看完整的项目,可以查看此链接 错误是:当我拍照时,屏幕变成了这张图片,这张图片被扭曲了 - (void)setupConfiguration { _captureSession = [[AVCaptureSession alloc]init]; _captureSession.sessionPreset = AVCaptureSessionPresetPhoto; _capturedImageView = [[UI

这个错误看起来很偶然,我不知道如何修复,请帮帮我, 主要代码如下:

如果您想查看完整的项目,可以查看此链接


错误是:当我拍照时,屏幕变成了这张图片,这张图片被扭曲了

- (void)setupConfiguration
{
_captureSession = [[AVCaptureSession alloc]init];
_captureSession.sessionPreset = AVCaptureSessionPresetPhoto;

_capturedImageView = [[UIImageView alloc]init];
_capturedImageView.frame = self.view.frame; // just to even it out
_capturedImageView.backgroundColor = [UIColor clearColor];
_capturedImageView.userInteractionEnabled = YES;
_capturedImageView.contentMode = UIViewContentModeScaleAspectFill;

_captureVideoPreviewLayer = [[AVCaptureVideoPreviewLayer alloc]initWithSession:_captureSession];
_captureVideoPreviewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;
_captureVideoPreviewLayer.frame = self.view.bounds;
[self.view.layer addSublayer:_captureVideoPreviewLayer];

NSArray *devices = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo];
if (devices.count > 0) {
    _captureDevice = devices[0];

    NSError *error = nil;
    AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:_captureDevice error:&error];

    [_captureSession addInput:input];

    _stillImageOutput = [[AVCaptureStillImageOutput alloc]init];
    NSDictionary * outputSettings = [[NSDictionary alloc] initWithObjectsAndKeys: AVVideoCodecJPEG, AVVideoCodecKey, nil];
    [_stillImageOutput setOutputSettings:outputSettings];
    [_captureSession addOutput:_stillImageOutput];
}
}

-(void)captureButtonClick
{
_isCapturingImage = YES;
AVCaptureConnection *videoConnection = nil;
for (AVCaptureConnection *connection in _stillImageOutput.connections)
{
    for (AVCaptureInputPort *port in [connection inputPorts])
    {
        if ([[port mediaType] isEqual:AVMediaTypeVideo] )
        {
            videoConnection = connection;
            break;
        }
    }
    if (videoConnection) {
        break;
    }
}

[_stillImageOutput captureStillImageAsynchronouslyFromConnection:videoConnection completionHandler: ^(CMSampleBufferRef imageSampleBuffer, NSError *error) {

    if (imageSampleBuffer) {

        NSData *imageData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageSampleBuffer];
        UIImage *capturedImage = [[UIImage alloc]initWithData:imageData scale:1];
        _isCapturingImage = NO;
        _capturedImageView.image = capturedImage;
        _selectedImage = capturedImage;
        imageData = nil;

        [self.view addSubview:_imageSelectedView];
    }
}];
}

你能显示错误列表错误是:当我拍照时,屏幕变成了这张图片,这张图片被扭曲了@你可以显示错误列表错误是:当我拍照时,屏幕变成了这张图片,这张图片被扭曲了@安布.卡提克