缩放图像并保存它们

发布于 2024-11-10 17:20:55 字数 129 浏览 4 评论 0原文

在我的应用程序中,用户可以通过相机拍摄图像或从相册中选择一张图像。 (我用相机拍的照片保存在相册里)。

在这两种情况下,我都想在文档目录中保存图像的缩放副本 (640x920)。

如何继续缩放并保存生成的图像?

In my app, the user can take an image through the camera or chose one from the photo album.
(I save the photo taken with the camera in the photo album).

In both cases, I would like to save a scaled copy (640x920) of the image in the documents directory.

How can I proceed to scale and then save the resulting image?

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

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

发布评论

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

评论(1

没企图 2024-11-17 17:20:55

最简单的方法是使用 NYXImagesUtilities

这是 github 页面

使用它的基本示例。

// #import <QuartzCore/QuartzCore.h> 
// #import "NYXImagesUtilities.h"
//.. path is an NSString of the documents directory + file name you want to save it to.
//.. myImage is the UIImage that you got from the user.

UIImage *scaledImage = [myImage scaleToFitSize:(CGSize){640, 920}];
[scaledImage saveToPath:path type:NYXImageTypePNG];

The easiest way is with NYXImagesUtilities.

Here's the github page.

A basic example of using it.

// #import <QuartzCore/QuartzCore.h> 
// #import "NYXImagesUtilities.h"
//.. path is an NSString of the documents directory + file name you want to save it to.
//.. myImage is the UIImage that you got from the user.

UIImage *scaledImage = [myImage scaleToFitSize:(CGSize){640, 920}];
[scaledImage saveToPath:path type:NYXImageTypePNG];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文