蒙版的图像格式
可以使用什么格式来制作占用最少空间的掩模?我需要的只是 8 位 alpha 通道(没有颜色,没有其他任何东西)。我需要它用于 iPhone 应用程序,因此可以使用 UIImage
轻松打开的所有内容都很好(其中列表 此处)。
What format can be used to make masks that takes least space? what I need is only 8 bit alpha channel (no color and nothing else). I need it for an iPhone application so everything that can easily be opened with UIImage
will be good (list of them here).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
png
。编译 Xcode 时,会优化png
在 iOS 上的性能以及与UIImage
的使用,但它不会对其他格式执行相同的操作,导致除极端情况外任何外部优化都是徒劳的。Use a
png
. When compiling Xcode optimizespng
s for performance on iOS and for using withUIImage
whereas it does not do the same for other formats, rendering any external optimizations futile except for extreme circumstances.