ios - 抓取屏幕图像然后裁剪后我会失去分辨率吗?
<p><p>我有一些代码,我在其中抓取屏幕图像,然后根据一些边界值对其进行裁剪:</p>
<pre><code>UIGraphicsBeginImageContextWithOptions(self.mainView.bounds.size, NO, 0.0);
;
UIImage *comicImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIGraphicsBeginImageContextWithOptions(CGSizeMake(boundary.width, boundary.height), NO, 0.0);
;
comicImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
</code></pre>
<p>我想知道的是,我是否使用上述方法生成了低分辨率的低质量图像?有没有更好的方法来做到这一点?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>也许,您可以使用以下代码</p>
<pre><code>UIGraphicsBeginImageContextWithOptions(size, NO, .scale);
</code></pre></p>
<p style="font-size: 20px;">关于ios - 抓取屏幕图像然后裁剪后我会失去分辨率吗?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/33381889/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/33381889/
</a>
</p>
页:
[1]