ios - 裁剪图像的图像裁剪问题
<p><p>我想裁剪一张图片,我搜索了很多库但没有找到完美的答案。</p>
<p>我想使用矩形裁剪图像,该矩形将具有固定的最大高度和宽度(300、200)和固定的最小高度和宽度(1.0、1.0)。该矩形也是可移动的,并且可以在最大和最小尺寸范围内调整为任何尺寸。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我只能部分理解您的问题,如果您想裁剪 UIImage,请查看以下代码:</p>
<pre><code>//Pass the UIImage object and the varying rectangle you "outputrect"
- (UIImage *)cropImage:(UIImage *)image outPutRect:(CGRect) outputRect
{
CGImageRef takenCGImage = image.CGImage;
size_t width = CGImageGetWidth(takenCGImage);
size_t height = CGImageGetHeight(takenCGImage);
CGRect cropRect = CGRectMake(outputRect.origin.x * width, outputRect.origin.y * height,
outputRect.size.width * width, outputRect.size.height * height);
CGImageRef cropCGImage = CGImageCreateWithImageInRect(takenCGImage, cropRect);
image = ;
CGImageRelease(cropCGImage);
return image;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 裁剪图像的图像裁剪问题,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/41519253/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/41519253/
</a>
</p>
页:
[1]