如何将 png 图像保存到相机胶卷?

发布于 2024-08-27 13:22:41 字数 130 浏览 5 评论 0原文

我想将游戏的屏幕截图保存到相机胶卷中。 现在我正在使用 UIImageWriteToSavedPhotosAlbum 它将图像保存为 jpg 格式,但有太多丑陋的 jpg 伪像。 有没有办法将 png 格式的 UIImage 保存到相机胶卷中?

I'd like to save screenshots from my game to camera roll.
Right now I'm using UIImageWriteToSavedPhotosAlbum which saves the image in jpg format with way too much ugly jpg artifacts.
Is there a way to save an UIImage in png format to camera roll?

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

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

发布评论

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

评论(4

时光病人 2024-09-03 13:22:41

首先,您必须添加 AssetsLibrary 框架,如下所示:

ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];

UIImage *image = ... some image

[library writeImageDataToSavedPhotosAlbum: UIImagePNGRepresentation(image) metadata:nil completionBlock:nil];

First you have to add AssetsLibrary Framework, than like this:

ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];

UIImage *image = ... some image

[library writeImageDataToSavedPhotosAlbum: UIImagePNGRepresentation(image) metadata:nil completionBlock:nil];
何处潇湘 2024-09-03 13:22:41

此处指出的解决方案现已弃用 - 这篇文章:

UIImageWriteToSavedPhotosAlbum 保存为错误的大小并且质量

展示了如何做到这一点:

UIImage* im = [UIImage imageWithCGImage:myCGRef]; // make image from CGRef
NSData* imdata =  UIImagePNGRepresentation ( im ); // get PNG representation
UIImage* im2 = [UIImage imageWithData:imdata]; // wrap UIImage around PNG representation
UIImageWriteToSavedPhotosAlbum(im2, nil, nil, nil); // save to photo album

The solution pointed out here is now deprecated - this post:

UIImageWriteToSavedPhotosAlbum saves to wrong size and quality

shows how to do this:

UIImage* im = [UIImage imageWithCGImage:myCGRef]; // make image from CGRef
NSData* imdata =  UIImagePNGRepresentation ( im ); // get PNG representation
UIImage* im2 = [UIImage imageWithData:imdata]; // wrap UIImage around PNG representation
UIImageWriteToSavedPhotosAlbum(im2, nil, nil, nil); // save to photo album
一杯敬自由 2024-09-03 13:22:41

Napolit“我想将游戏中的屏幕截图保存到相机胶卷中。现在我正在使用 UIImageWriteToSavedPhotosAlbum 它将图像保存为 jpg 格式,太多了......”

刚刚偶然发现了你的问题,其中大部分是我无法回答。然而,我确实有一个简单的方法。抓取 iPad 屏幕的快捷方式。只需同时按下“睡眠/唤醒”按钮和“主页”(屏幕底部的圆形按钮)按钮即可。

Napolit "I'd like to save screenshots from my game to camera roll. Right now I'm using UIImageWriteToSavedPhotosAlbum which saves the image in jpg format with way too much...."

Have just stumbled across your question, most of which I can't answer. however, I do have an EASY & QUICK WAY to grab iPad screens. Simply press the SLEEP/WAKE button and the HOME (round button at bottom of the screen) button at the same time.

腻橙味 2024-09-03 13:22:41

这告诉我们如何将 UIImage 表示为 jpg 或 png:将 UIImage 对象保存为 PNG 或 JPEG 文件

This tells how to represent a UIImage as a jpg or png: Save UIImage Object as PNG or JPEG File

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