gpt4 book ai didi

iphone - 裁剪 AVCaptureSession 捕获的图像

转载 作者:行者123 更新时间:2023-12-03 18:30:45 26 4
gpt4 key购买 nike

我正在编写一个 iPhone 应用程序,它使用 AVFoundation 来拍照并裁剪它。该应用程序类似于 QR 码阅读器:它使用带有覆盖层的 AVCaptureVideoPreviewLayer。覆盖层有一个正方形。我想裁剪图像,以便裁剪后的图像正是用户在正方形内放置的图像。

预览图层有重力AVLayerVideoGravityResizeAspectFill。

看起来相机实际捕捉到的内容并不完全是用户在预览图层中看到的内容。这意味着我需要从预览坐标系移动到捕获的图像坐标系,以便我可以裁剪图像。为此,我认为我需要以下参数:1. View 尺寸与捕获图像尺寸之间的比例。2. 告诉捕获图像的哪一部分与预览层中显示的部分相匹配的信息。

有人知道我如何获取此信息,或者是否有不同的方法来裁剪图像。

(另外,捕获预览的屏幕截图不是一个选项,据我所知,这可能会导致应用程序被拒绝)。

提前谢谢

最佳答案

希望这能满足您的要求

- (UIImage *)cropImage:(UIImage *)image to:(CGRect)cropRect andScaleTo:(CGSize)size {
UIGraphicsBeginImageContext(size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGImageRef subImage = CGImageCreateWithImageInRect([image CGImage], cropRect);
NSLog(@"---------");
NSLog(@"*cropRect.origin.y=%f",cropRect.origin.y);
NSLog(@"*cropRect.origin.x=%f",cropRect.origin.x);

NSLog(@"*cropRect.size.width=%f",cropRect.size.width);
NSLog(@"*cropRect.size.height=%f",cropRect.size.height);

NSLog(@"---------");

NSLog(@"*size.width=%f",size.width);
NSLog(@"*size.height=%f",size.height);

CGRect myRect = CGRectMake(0.0f, 0.0f, size.width, size.height);
CGContextScaleCTM(context, 1.0f, -1.0f);
CGContextTranslateCTM(context, 0.0f, -size.height);
CGContextDrawImage(context, myRect, subImage);
UIImage* croppedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
CGImageRelease(subImage);

return croppedImage;
}

关于iphone - 裁剪 AVCaptureSession 捕获的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5780580/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com