我必须使用cocoa touch AVFoundation框架捕获静态图像,但我发现捕获的图像会被拉伸。 我已将captureSession配置为:
[self setPreviewLayer:[[AVCaptureVideoPreviewLayer alloc] initWithSession:[self captureSession]]];
self.captureSession.sessionPreset=AVCaptureSessionPresetHigh;
[[self previewLayer] setVideoGravity:AVLayerVideoGravityResizeAspectFill];
并使用这些代码捕获图像:
[self.stillImageOutput captureStillImageAsynchronouslyFromConnection:videoConnection completionHandler:^(CMSampleBufferRef imageDataSampleBuffer, NSError *error)
{
if(error)
NSLog(@"error=%@",error);
else
{
if (imageDataSampleBuffer != NULL) {
NSData *imageData=[AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageDataSampleBuffer];
UIImage *image=[[UIImage alloc] initWithData:imageData];
CGRect screenRect = [[UIScreen mainScreen] bounds];
CGFloat screenWidth = screenRect.size.width;
CGFloat screenHeight = screenRect.size.height;
CGSize screenSize=CGSizeMake(screenWidth, screenHeight);
NSLog(@"screen.width=%f,screen.height=%f",screenWidth,screenHeight);
UIGraphicsBeginImageContextWithOptions(screenSize, NO, 0.0f);
// This is where we resize captured image
[(UIImage *)image drawInRect:CGRectMake(0, 0, screenWidth, screenHeight)];
CGSize imageSize=[ImageUtility getImageSize:image];
NSLog(@"image.width=%f,image.height=%f",imageSize.width,imageSize.height);
// Save the results directly to the image view property
UIImage *toSaveImage=UIGraphicsGetImageFromCurrentImageContext();
imageSize=[ImageUtility getImageSize:toSaveImage];
NSLog(@"combine.width=%f,combine.height=%f",imageSize.width,imageSize.height);
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(toSaveImage, nil, nil, nil);
}
}
}];
}
此结果输出:
013-08-29 09:30:06.182 WatermarkCamera[6882:907] screen.width=320.000000,screen.height=480.000000
2013-08-29 09:30:07.208 WatermarkCamera[6882:907] image.width=1280.000000,image.height=720.000000
2013-08-29 09:30:07.238 WatermarkCamera[6882:907] combine.width=640.000000,combine.height=960.000000
结果输出图像已拉伸。如何修复拉伸图像?应该欣赏任何建议。
答案 0 :(得分:0)
我想我不应该用屏幕大小绘制图像。我应该用图像大小绘制图像。 我已经定义了将图像缩放到新宽度的新方法
+(UIImage*)imageWithImage: (UIImage*) sourceImage scaledToWidth: (float) i_width;
现在我调用了这个方法
UIImage *newImage=[ImageUtility imageWithImage:image scaledToWidth:screenWidth];
[newImage drawInRect:CGRectMake(0, 0, newImage.size.width, newImage.size.height)];
最后将新图像写入相册。新图像不会延伸。