菜鸟教程小白 发表于 2022-12-13 04:42:37

ios - 将 UIImage 转换为 CIImage 以裁剪为 CGRect。 AV基金会


                                            <p><p>所以我有一个要裁剪的 UIImage。我查看并找到了 CIImage 的 <code>imageByCroppingToRect</code> 方法。因此,我将数据转换为 CIImage 而不是 UIImage,使用指定的方法对其进行裁剪,然后将生成的 CIImage 转换为 UIImage,然后将其显示在 UIImageView 中。</p>

<p>我的代码是</p>

<pre><code> NSData *data = [initWithData:];
//UIImage *normalImage = [initWithData:data];
CIImage *originalImage = ;
;

self.imageView.image = ;
</code></pre>

<p>问题是图像被旋转了 90 度,我不确定它是否被裁剪。此图像是使用设备的相机捕获的。我使用 AVFoundation 来访问相机。我的 session 预设是 <code>AVCaptureSessionPresetPhoto</code>。我想这就是我得到缩放的原因。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>CGRect rect = CGRectMake(10, 72, 300, 300);
CGImageRef imref = CGImageCreateWithImageInRect(, rect);
UIImage *newSubImage = ;
</code></pre>

<p>试试这个。可以帮助你。</p>

<p>编辑:</p>

<p>首先修复您的图像方向:
引用:<a href="https://github.com/j3r3miah/mapmatic-ios/blob/master/Mapmatic/UIImage+FixOrientation.m" rel="noreferrer noopener nofollow">https://github.com/j3r3miah/mapmatic-ios/blob/master/Mapmatic/UIImage+FixOrientation.m</a> </p>

<p>然后使用上面的代码将图像裁剪为指定的矩形。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 将 UIImage 转换为 CIImage 以裁剪为 CGRect。 AV基金会,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19357010/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19357010/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 将 UIImage 转换为 CIImage 以裁剪为 CGRect。 AV基金会