1

在我的 iphone 应用程序中,我需要在图像视图中设置图像。

图像视图高度始终为 100 像素。

we need to set the width of the image view with respect to the original image scale ratio.

即假设图像的宽度X高度为300x400(原始)(4x3)

我们显示的图像视图图像大小为75X100

图像的宽度 X 高度为512x512(原始)(1x1)

我们显示的图像视图图像大小将是100X100

图像的宽度 X 高度为128 x 256(原始)(1x2)

我们显示的图像视图图像大小将是50X100

in all those cases image view height 100pixel should be same, but the width need to varie with respect to the image ratio.

最后图像视图应该在视图的中心

如何实现

4

2 回答 2

5

有几种方法可以实现这一目标。最简单的就是在Interface Builder中将image view上的缩放模式设置为Aspect Fill,或者

imageView.contentMode = UIViewContentModeScaleAspectFit;

第二种方法是计算图像的纵横比并设置宽度。就像是:

UIImage *myImage = [UIImage imageNamed:@"MyImage"];
float aspectRatio = myImage.size.width / myImage.size.height;
float viewWidth = 100 * aspectRatio;
于 2012-10-25T13:47:19.033 回答
0

好吧,这取决于你的逻辑。
你可以得到UIImage高度和宽度。

 UIImage *image = [UIImage imageNamed:@"anyImage.png"];
 float imageHeight = image.size.height;
 float imageWidth = image.size.width;

之后,您可以计算 imageViewWidth-。
根据您的要求 -

float value = imageHeight/100.0;
float iV_Width = imageWidth/value;
于 2012-10-25T13:46:35.847 回答