我想使用AVFoundation Famework
预览和拍摄照片。我创建了一个AVCaptureSession
并添加了AVCaptureVideoDataOutput
,AVCaptureStillImageOutput
到这个会话中。我将预设设置为AVCaptureSessionPresetLow
.
现在我想以全分辨率拍照。但在captureStillImageAsynchronouslyFromConnection
决议中与我的预览代表相同。
这是我的代码:
AVCaptureSession* cameraSession = [[AVCaptureSession alloc] init];
cameraSession.sessionPreset = AVCaptureSessionPresetLow;
AVCaptureVideoDataOutput* output = [[AVCaptureVideoDataOutput alloc] init];
[cameraSession addOutput:output];
AVCaptureStillImageOutput* cameraStillImage = [[AVCaptureStillImageOutput alloc] init];
[cameraSession addOutput:cameraStillImage];
// delegation
dispatch_queue_t queue = dispatch_queue_create("MyQueue", NULL);
[output setSampleBufferDelegate:self queue:queue];
dispatch_release(queue);
[cameraSession startRunning];
拍照:
//[cameraSession beginConfiguration];
//[cameraSession setSessionPreset:AVCaptureSessionPresetPhoto]; <-- slow
//[cameraSession commitConfiguration];
[cameraStillImage captureStillImageAsynchronouslyFromConnection:photoConnection completionHandler:^(CMSampleBufferRef imageDataSampleBuffer, NSError *error)
{
...
}];
我尝试通过在捕捉图像之前将预设更改为照片。但这很慢(更改预设需要 2-3 秒)。我不想有这么大的延迟。
我怎样才能做到这一点?谢谢。