UIImage按比例缩放

时间:2011-08-24 10:44:14

标签: iphone ipad uiimageview uiimage

我有一个UIImageView。我正在设置一个UIImage到这个UIImageView,内容模式为UIContentModeScaleAspectFit。使用UIContentModeScaleAspectFit时,我能否知道UIImage调整大小的程度。

1 个答案:

答案 0 :(得分:2)

是的,但不是自动的:)

比例将类似于

CGFloat widthScale = imageView.bounds.size.width / image.size.width;
CGFloat heightScale = imageView.bounds.size.height / image.size.height;

根据图像是垂直还是水平安装,您必须使用正确的图像;)