非 Apple 平台可以生成 iOS 显示的最佳 PNG 内部格式是什么?
推荐使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
鉴于 Xcode 优化的 PNG 被高估,简单地创建尽可能小的文件可能是更好的选择,并且 pngquant + PNGOUT或 AdvPNG 是很好的工具。
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.
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.
请参阅 http://developer.apple.com/library/ios/# qa/qa1681/_index.html
see http://developer.apple.com/library/ios/#qa/qa1681/_index.html