菜鸟教程小白 发表于 2022-12-13 00:15:22

ios - 如何在ios中用另一个图像替换图像的区域


                                            <p><p>我想在 iOS 应用中处理 UIImage 的子区域。关注 <a href="https://stackoverflow.com/questions/2635371/how-to-crop-the-uiimage" rel="noreferrer noopener nofollow">this question</a> ,我现在有一个例程来提取有问题的区域作为我现在可以操作的 UIImage。有没有类似的方便的方法将区域放回原始图像?我正在考虑的替代方案是按字节复制,这对我来说似乎非常低级。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以将两张图像相互叠加,然后将它们组合成一张图像。</p>

<p>假设你有原图和修改过的部分:</p>

<pre><code>UIGraphicsBeginImageContext(originalImage.size);

;
;
UIImage *combined = UIGraphicsGetImageFromCurrentImageContext();
</code></pre>

<p><strong>编辑:</strong>
忘记这一行了:</p>

<pre><code>UIGraphicsEndImageContext();
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在ios中用另一个图像替换图像的区域,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/14145860/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/14145860/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在ios中用另一个图像替换图像的区域