我已经提出了AVFoundation和
ImageIO的实现来照顾我的应用程序中的照片.但是我有一个问题.我拍摄的图像总是黑暗,即使闪光灯熄灭.这是我使用的代码:
[[self currentCaptureOutput] captureStillImageAsynchronouslyFromConnection:[[self currentCaptureOutput].connections lastObject] completionHandler:^(CMSampleBufferRef imageDataSampleBuffer,NSError *error) { [[[blockSelf currentPreviewLayer] session] stopRunning]; if (!error) { NSData *data = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageDataSampleBuffer]; CGImageSourceRef source = CGImageSourceCreateWithData((CFDataRef) data,NULL); if (source) { UIImage *image = [blockSelf imageWithSource:source]; [blockSelf updateWithCapturedImage:image]; CFRelease(source); } } }];
有什么可能导致图像不包括闪光灯吗?