我正在使用AV Foundation购买照片应用。我已经设置了一个预览图层,它使用以下代码占据屏幕的上半部分:
[_previewLayer setFrame:CGRectMake(0, 0, rootLayer.bounds.size.width, rootLayer.bounds.size.height/2)];
一旦用户捕获图像,我将其旋转,使其处于正确的纵向方向(因为iOS喜欢默认图像为横向),然后我创建一个新的子图层并将其内容属性设置为捕获的图像。这使图像显示为屏幕上半部分的新图层。
唯一的问题是图像看起来很紧张,经过研究后我了解到你需要裁剪捕获的图像,我在尝试几个小时后无法正常工作。
希望有人可以推荐我需要的正确裁剪代码。我只是想裁剪捕获的图像,以便它正是用户在拍摄照片时在预览图层中看到的内容。
这是我的图像捕获代码:
-(IBAction)stillImageCapture {
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;
}
}
NSLog(@"about to request a capture from: %@", _stillImageOutput);
[_stillImageOutput captureStillImageAsynchronouslyFromConnection:videoConnection completionHandler:^(CMSampleBufferRef imageDataSampleBuffer, NSError *error) {
if(imageDataSampleBuffer) {
NSData *imageData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageDataSampleBuffer];
UIImage *image = [[UIImage alloc]initWithData:imageData];
image = [self rotate:image andOrientation:image.imageOrientation];
CALayer *subLayer = [CALayer layer];
CGImageRef imageRef = image.CGImage;
subLayer.contents = (id)[UIImage imageWithCGImage:imageRef].CGImage;
subLayer.frame = _previewLayer.frame;
[_previewLayer addSublayer:subLayer];
}
}];
}
答案 0 :(得分:0)
我的建议是不要考虑如何获得图像。首先将事物表示为UIImages而不进行操作,然后使用便于在UIImages上运行的变换库。您可以从this one for cropping上接受的答案开始。