gpt4 book ai didi

iphone - 有什么方法可以在设置了 AspectFit 的 UIImageView 中找到调整后的图像高度/宽度?

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:16:13 27 4
gpt4 key购买 nike

我正在尝试获取 UIImageimage.size.himage.size.w >UIImageView 开启了 UIViewContentModeScaleAspectFit

我想要resized UIImage 大小,而不是原始图像大小。

是否有可能得到这个值?

最佳答案

CGSize size=CGSizeMake(79, 84);//set the width and height
UIGraphicsBeginImageContext(size);
[image drawInRect:CGRectMake(0,0,size.width,size.height)];
UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
//here is the scaled image which has been changed to the size specified
UIGraphicsEndImageContext();

这肯定有效,不要忘记导入 QuartzCore FrameWork..

编码愉快(^_^)...

关于iphone - 有什么方法可以在设置了 AspectFit 的 UIImageView 中找到调整后的图像高度/宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9916341/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com