我有一张我需要裁剪的图像。为此,我想使用contentMode(将其设置为Top / TopLeft而不是Aspect Fit)但是当我这样做时,图像会回到它的实际大小(而不是我给它的大小)。所以我的问题是:
如何裁剪保留尺寸的图像底部?
非常感谢。
答案 0 :(得分:0)
您可能必须为rect
imageView
imageView
是UIImageView
让要裁剪的矩形为croppedRect
CGImageRef imageRef = CGImageCreateWithImageInRect([imageView.image CGImage], croppedRect);
[imageView setImage:[UIImage imageWithCGImage:imageRef]];
CGImageRelease(imageRef);