在 iOS 中调整图像大小并保持其纵横比

Posted

技术标签:

【中文标题】在 iOS 中调整图像大小并保持其纵横比【英文标题】:Resize image and maintain its aspect ratio in iOS 【发布时间】:2015-07-22 11:06:54 【问题描述】:

我正在尝试从照片库中选择一张图片,这是我从网上下载并存储在我的照片库中的照片。

所以现在我想给用户一个选项来从照片库中选择一个图像并通过我的应用程序作为背景图像应用,但是当我这样做时,我会在我的 iPhone 屏幕上以这种方式获取图像

实际上图片已经填满了屏幕,因为指定的内容模式是“scaleToFill”。

1) 我想知道如何让这张图片保持其纵横比并填满屏幕?

问候 兰吉特

【问题讨论】:

可以使用Aspectfit 您是否使用情节提要? 【参考方案1】:

检查this blog。使用这两个文件

UIImage+Resize.h

UIImage+Resize.m

UIImage *image = [UIImage imageNamed:@"SomeImage-900x675"]; // SomeImage-900x675.png 
CGFloat targetWidth = 320.0;
CGFloat scaleFactor = targetWidth / image.size.width; 
CGFloat targetHeight = image.size.height * scaleFactor; 
CGSize targetSize = CGSizeMake(targetWidth, targetHeight);
UIImage *scaledImage = [image resizedImage:targetSize interpolationQuality:kCGInterpolationHigh];

【讨论】:

【参考方案2】:

虽然您的图像占用了所有屏幕尺寸,但您的图像尺寸更大...您将尝试使用以下分辨率缩放图像 320*480, 640*960, 1240*2208

【讨论】:

但是缩放后渲染是否正确?

以上是关于在 iOS 中调整图像大小并保持其纵横比的主要内容,如果未能解决你的问题,请参考以下文章

如何像 QLabel 一样快速调整图像大小?

使用视口动态调整 3x3 方格的大小

UITableViewCell 不使用 Swift 动态调整大小

在 CSS FlexBox 布局中自动调整图像大小并保持纵横比?

AutoLayout 以 50% 比例调整图像大小

调整图像大小保持纵横比