如何在iPhone图库中存储高质量的图像?

发布于 2024-11-06 06:47:09 字数 662 浏览 0 评论 0原文

我拍摄了 1 张高质量图像并将其存储到

 UIImage *image = [[UIImage alloc] initWithData:imageData];
 NSArray *docDirs = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSAllDomainsMask, YES);
 NSString *docDir = [docDirs objectAtIndex:0];
 BOOL success = [UIImagePNGRepresentation(image) writeToFile:[docDir stringByAppendingPathComponent:@"test11.png"] atomically:YES];

我可以从 xcode Organizer 中看到的某个位置,图像分辨率非常高尺寸:2592 × 1936 ... 大小 6.1MB

我的问题是如何在 iPhone 库中存储高质量图像。我严格不允许存储压缩图像。我必须仅存储高清高质量图像。

请不要使用scaleAndRotateImage函数回复,因为它会压缩图像。

I have taken 1 high quality image and stored it to some place

 UIImage *image = [[UIImage alloc] initWithData:imageData];
 NSArray *docDirs = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSAllDomainsMask, YES);
 NSString *docDir = [docDirs objectAtIndex:0];
 BOOL success = [UIImagePNGRepresentation(image) writeToFile:[docDir stringByAppendingPathComponent:@"test11.png"] atomically:YES];

I can see from xcode organizer the image resolution is very high quality.
Dimension: 2592 × 1936 ... size 6.1MB

My problem is how can I store high quality image in iphone Library. I am strictly not allowed to store compressed image. I have to store only HD high quality image.

Please do not reply with scaleAndRotateImage functions because it will compress image.

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

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

发布评论

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

评论(1

哭泣的笑容 2024-11-13 06:47:09

ALAssetsLibrary 类可以让您做到这一点。

ALAssetsLibrary class will let you do that.

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