UIImage UIImageJPEGRepresentation 对 UIImage 安全

发布于 2024-11-25 17:13:50 字数 75 浏览 3 评论 0原文

我需要执行 UIImageJPEGRepresentation 方法,然后将其保存到文件中,而不是保存到 UIImage 中。请帮忙..

I need to perform UIImageJPEGRepresentation method and after that save it NOT to file, I need to save it to UIImage. Help please..

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

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

发布评论

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

评论(3

梦里的微风 2024-12-02 17:13:50

你可以使用这个:

NSData *imageData = UIImageJPEGRepresentation(uiimageObject,1.0);

UIImage *imageObj = [UIImage imageWithData:imageData];

you can use this:

NSData *imageData = UIImageJPEGRepresentation(uiimageObject,1.0);

UIImage *imageObj = [UIImage imageWithData:imageData];
因为看清所以看轻 2024-12-02 17:13:50

我不知道为什么你想从 UIImage 转到 jpeg 数据,然后再回到 UIImage,但 [UIImage imageWithData:jpegdata] 应该这样做。

I have no idea why you are wanting to go from a UIImage to jpeg data and then right back to a UIImage, but [UIImage imageWithData:jpegdata] should do it.

只有影子陪我不离不弃 2024-12-02 17:13:50

呃? UIImageJPEGRepresentation图像转换为 JPEG 数据...

Eh? UIImageJPEGRepresentation converts an image to JPEG data...

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