我一直在 iPhone 4S 和 iPhone5 上开发我的项目。在我的项目中,拍摄照片后,我将其裁剪,然后调整图像大小以应用照片滤镜。iPhone 5 似乎处理得很好,但在 iPhone 4S 上,它似乎在拍照过程中的不同点崩溃。我检查了是否有任何我可能遗漏的内存泄漏。下面是代码:
[stillImageOutput captureStillImageAsynchronouslyFromConnection:videoConnection completionHandler: ^(CMSampleBufferRef imageSampleBuffer, NSError *error)
{
[captureSession stopRunning];
NSData *imageData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageSampleBuffer];
UIImage *newImage = [[UIImage alloc] initWithData:imageData];
之后,我会自动检测拍摄照片的方向并旋转照片,使其始终保持直立。
在此之后,我使用NYXImagesKit将图像裁剪为正方形
float filteringSquareRatio = 307.0/320.0;
UIImage *cropped = [newImage cropToSize:CGSizeMake(filteringSquareRatio * newImage.size.width, filteringSquareRatio * newImage.size.width) usingMode:NYXCropModeCenter];
最后,我使用MGImageUtilities调整图像大小
UIImage *resized = [cropped imageScaledToFitSize:CGSizeMake(320, 320)];
有一个更好的方法吗?我目前正在使用 AVCaptureSessionPresetPhoto 因为我想将原始高分辨率照片保存在设备上并将裁剪和调整大小的版本发送到服务器。我不想使用任何视频预设,因为相机已放大。什么可能导致崩溃?