UIImageView contentMode Top

时间:2014-03-07 11:45:52

标签: ios objective-c uiimageview contentmode

我有一张我需要裁剪的图像。为此,我想使用contentMode(将其设置为Top / TopLeft而不是Aspect Fit)但是当我这样做时,图像会回到它的实际大小(而不是我给它的大小)。所以我的问题是:

如何裁剪保留尺寸的图像底部?

非常感谢。

1 个答案:

答案 0 :(得分:0)

您可能必须为rect

设置imageView

imageViewUIImageView

的实例

让要裁剪的矩形为croppedRect

CGImageRef imageRef = CGImageCreateWithImageInRect([imageView.image CGImage], croppedRect);
[imageView setImage:[UIImage imageWithCGImage:imageRef]]; 
CGImageRelease(imageRef);