5
- (UIImage *)imageByCropping:(UIImage *)imageToCrop toRect:(CGRect)rect
{
    CGImageRef imageRef = CGImageCreateWithImageInRect([imageToCrop CGImage], rect);
    UIImage *cropped = [UIImage imageWithCGImage:imageRef];
    CGImageRelease(imageRef);
    return cropped;
}

我正在使用此代码。请给出一些解决方案。在此先感谢

4

1 回答 1

4

CGImageCreateWithImageInRect无法正确处理图像方向。网上有许多奇怪而奇妙的裁剪技术,涉及巨大的 switch/case 语句(请参阅 Ayaz 答案中的链接),但是如果您停留在 UIKit 级别并且仅在UIImage其自身上使用方法来进行绘图,那么所有细枝末节的细节都会为您处理好。

以下方法尽可能简单,并且适用于我遇到的所有情况:

- (UIImage *)imageByCropping:(UIImage *)image toRect:(CGRect)rect
{
    if (UIGraphicsBeginImageContextWithOptions) {
        UIGraphicsBeginImageContextWithOptions(rect.size,
                                               /* opaque */ NO,
                                               /* scaling factor */ 0.0);
    } else {
        UIGraphicsBeginImageContext(rect.size);
    }

    // stick to methods on UIImage so that orientation etc. are automatically
    // dealt with for us
    [image drawAtPoint:CGPointMake(-rect.origin.x, -rect.origin.y)];

    UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return result;
}

opaque如果您不需要透明度,您可能想要更改参数的值。

于 2012-09-05T12:52:39.280 回答