非 Apple 平台可以生成 iOS 显示的最佳 PNG 内部格式是什么?

发布于 2024-10-24 07:18:50 字数 299 浏览 1 评论 0原文

推荐使用 PNG,这是 iOS 最快的格式。然而 PNG 本身有几个内部子格式。 Alpha 通道、字节顺序、颜色深度等。

我读过 转换普通PNG 到 iPhone 优化格式,但问答涉及捆绑中的图像。现在,我正在从服务器生成许多针对 iOS 优化的缩略图。我无法在服务器上使用Apple的框架。然而,次优格式也足够了。我想听听意见。

PNG is recommended, fastest format for iOS. However PNG itself have several internal sub-formats. Alpha channel, byte ordering, color depth and etc.

I read Converting a normal PNG to iPhone Optimized format but the Q/A is about to images in bundles. Now I'm generating many thumbnails optimized for iOS from server. I can't use Apple's framework on server. However sub-optimal format is enough too. I want to hear opinions.

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

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

发布评论

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

评论(3

煮茶煮酒煮时光 2024-10-31 07:18:50

鉴于 Xcode 优化的 PNG 被高估,简单地创建尽可能小的文件可能是更好的选择,并且 pngquant + PNGOUTAdvPNG 是很好的工具。

Given that Xcode-optimized PNGs are overrated simply creating smallest possible file may be a better option, and pngquant + PNGOUT or AdvPNG are good tools for that.

辞别 2024-10-31 07:18:50

iOS SDK 对放入应用程序包中的图像运行 pngcrush。查看它使用的设置将是一个很好的起点。

The iOS SDK runs pngcrush on the images it puts in the application bundle. Looking at the settings it uses would be a good place to start.

妳是的陽光 2024-10-31 07:18:50
$ /Applications/Xcode.app/Contents/Developer\
/Platforms/iPhoneOS.platform/Developer/usr/bin/pngcrush \
-revert-iphone-optimizations -q Local.png Local-standard.png

请参阅 http://developer.apple.com/library/ios/# qa/qa1681/_index.html

$ /Applications/Xcode.app/Contents/Developer\
/Platforms/iPhoneOS.platform/Developer/usr/bin/pngcrush \
-revert-iphone-optimizations -q Local.png Local-standard.png

see http://developer.apple.com/library/ios/#qa/qa1681/_index.html

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