我刚刚将我的Xcode更新为版本8,我之前构建的AppIcon(对于Xcode 7)已经不再有用了。我尝试了许多在线AppIcon生成器,但没有人可以创建一整套AppIcon。新版AppIcon设置如下:
此外,我搜索了AppIcon的official doc,解释和说明都是关于以前的版本。甚至没有描述iPhone 7图标大小的文档。下面是Apple doc中的表格:
任何人都知道整套AppIcon的大小?无论如何要方便地生成它们?
答案 0 :(得分:2)
当你看到20pt 2x它应该是40x40,60pt 2x 120和60 pt 3x 180时,你只需要将pt值乘以x值。
要生成所有尺寸,我建议使用Inkscape,它非常适合调整图像大小。
答案 1 :(得分:2)
创建您的1024x1024图标,在您的Mac上安装imagemagick并运行此脚本
#!/bin/bash
convert icon1024.png -resize 40x40 icon20ptx2.png
convert icon1024.png -resize 60x60 icon20ptx3.png
convert icon1024.png -resize 58x58 icon29ptx2.png
convert icon1024.png -resize 87x87 icon29ptx3.png
convert icon1024.png -resize 80x80 icon40ptx2.png
convert icon1024.png -resize 120x120 icon40ptx3.png
convert icon1024.png -resize 120x120 icon60ptx2.png
convert icon1024.png -resize 180x180 icon60ptx3.png