Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
现在我正在尝试在我的应用程序上共享 PNG 文件。
我在我的应用上打开了 2 MB png,并通过电子邮件在我的应用上分享了该 png。
但是,电子邮件说图像大小为 20 MB。
如何减少电子邮件共享的 PNG 大小?
考虑使用 JPEG,PNG 是为质量而不是大小而设计的。
您是在创建 UIImage 还是直接从文件中读取?
如果您事先完全确定它的大小是正确的,并且正在调整大小,请直接使用 NSData 从文件中读取文件并将八位字节添加到附件流中,但 JPEG 的大小会更好。