我正在使用苹果制造的AVCam作为我的自定义相机视图。AVCamViewController
老实说,如果您第一次看到课堂上发生的事情,要了解课堂上发生的事情并不容易。
现在我很感兴趣他们如何设置捕获图像的框架。我试图找到一些成名者或类似的东西,但我没有找到。
我在谷歌搜索并在这里找到答案AVCam not in fullscreen
但是当我实现该解决方案时,我才意识到它只是制作了与我的视图大小相同的实时相机预览层,但是当应用程序- (IBAction)snapStillImage:(id)sender
在图库中的方法中保存图像时,图像仍然是左右两条条纹。
我的问题是如何删除这些条纹或苹果在源代码中的哪一行设置了这些东西?
另外作为附加子问题,我如何设置类型只创建照片,因为该应用程序要求我“麦克风设置”,而我不需要它只需要制作照片就可以了。
来自苹果来源的这段代码会将图像保存到照片库中。
- (IBAction)snapStillImage:(id)sender
{
dispatch_async([self sessionQueue], ^{
// Update the orientation on the still image output video connection before capturing.
[[[self stillImageOutput] connectionWithMediaType:AVMediaTypeVideo] setVideoOrientation:[[(AVCaptureVideoPreviewLayer *)[[self previewView] layer] connection] videoOrientation]];
// Flash set to Auto for Still Capture
[AVCamViewController setFlashMode:AVCaptureFlashModeAuto forDevice:[[self videoDeviceInput] device]];
// Capture a still image.
[[self stillImageOutput] captureStillImageAsynchronouslyFromConnection:[[self stillImageOutput] connectionWithMediaType:AVMediaTypeVideo] completionHandler:^(CMSampleBufferRef imageDataSampleBuffer, NSError *error) {
if (imageDataSampleBuffer)
{
NSData *imageData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageDataSampleBuffer];
UIImage *image = [[UIImage alloc] initWithData:imageData];
UIImage *proccessingImage = [SAPAdjustImageHelper adjustImage:image];
NSNumber *email_id = [SAPCoreDataEmailHelper currentEmailId];
[SAPFileManagerHelper addImage:proccessingImage toFolderWithEmailId:email_id];
}
}];
});
}