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 图像以及如何解压它们。粉碎第一手图像的目的是什么?并且还可以使用 [UIImage imageWithName:] 加载粉碎的图像吗?
它用于使用无损优化和/或压缩来减小文件的大小。
它可以使用多种优化来评估您的输入图像。基本示例:如果您的输入是灰度并保存为颜色,它可能会输出灰度图像。当然,它使用了更复杂的优化。
仍然可以使用 [UIImage imageWithName:] 加载粉碎的图像吗?
是的
它基本上是一种不涉及任何数据丢失的压缩形式(也就是说,您不会丢失任何图像质量)。压缩任何数据都会减小它的大小,这就是实际这样做的原因。