如何裁剪图片?

时间:2012-06-19 13:50:43

标签: ios ipad

我正在开发一个iPad应用程序,通过它我可以使用图像上下文来绘制。我在绘图上下文中添加了一个图像视图,用于调整图像大小。当我完成图像缩放时,我需要裁剪两个图像中公共区域的缩放图像,并将裁剪后的图像绘制到基本绘图图像。

任何帮助都会很明显。 在此先感谢。

1 个答案:

答案 0 :(得分:0)

尝试以下方法:

-(UIImage *)cropImage:(UIImage *)img fromRect:(CGRect)rect
{
    CGFloat scale = [[UIScreen mainScreen] scale];
    if (scale > 1.0f) {
        rect = CGRectMake(rect.origin.x * scale,
                          rect.origin.y * scale,
                          rect.size.width * scale,
                          rect.size.height * scale);
    }

    CGImageRef imageRef = CGImageCreateWithImageInRect(img.CGImage, rect);
    UIImage *result = [UIImage imageWithCGImage:imageRef scale:scale orientation:img.imageOrientation];
    CGImageRelease(imageRef);
    return result;
}