gpt4 book ai didi

ios - 调整图像大小 Objective-C

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:50:53 24 4
gpt4 key购买 nike

<分区>

我正在尝试缩小使用 iPhone 4 及更高版本拍摄的 Objective-C 图像,以便尽快将其发送到服务器。目前,全尺寸图像需要很长时间。

目前我正在尝试的裁员是:

CGSize imageSize;

imageSize = CGSizeMake(484, 888);

UIImage *img = [UIImage imageWithContentsOfFile:path];

UIGraphicsBeginImageContext( imageSize );
[img drawInRect:CGRectMake(0,0,imageSize.width,imageSize.height)];
UIImage* realfrontImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
NSData *frontImageData = UIImageJPEGRepresentation(realfrontImage, 1.0);

这给了我一张 320x460 的图像,我如何将它变成我想要的 484x888 大小。

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