UI图像按比例缩放

发布于 2024-12-01 04:20:14 字数 143 浏览 1 评论 0原文

我有一个 UIImageView。我正在将 UIImage 设置为此 UIImageView,内容模式为 UIContentModeScaleAspectFit。我可以知道使用 UIContentModeScaleAspectFit 时 UIImage 调整大小的比例吗?

I have a UIImageView. and i am setting a UIImage to this UIImageView with content mode as UIContentModeScaleAspectFit. Can i know the scale in which the UIImage is resizing when using UIContentModeScaleAspectFit.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

携余温的黄昏 2024-12-08 04:20:14

是的,但不是自动的:)

比例尺将类似于

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

您必须使用正确的比例尺,具体取决于图像是垂直还是水平放置;)

Yes, but not automatically :)

The scale will be something like

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

You will have to use the correct one depending on if the image has fitted vertically or horizontally ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文