我正在尝试为一个应用程序创建一个图标集,但是当我这样做的时候总是得到一个错误:Hexchat.iconset:error: Failed to generate ICNS.
我尝试了从Illustrator单独导出.png文件,以及使用脚本。使用1024x1024png文件作为Hexchat_8.png的当前脚本为:
mkdir Hexchat.iconset
sips -z 16 16 Hexchat_8.png --out Hexchat.iconset/hexchat_16x16.png
sips -z 32 32 Hexchat_8.png --out Hexchat.iconset/hexchat_16x16@2x.png
sips -z 32 32 Hexchat_8.png --out Hexchat.iconset/hexchat_32x32.png
sips -z 64 64 Hexchat_8.png --out Hexchat.iconset/hexchat_32x32@2x.png
sips -z 128 128 Hexchat_8.png --out Hexchat.iconset/hexchat_128x128.png
sips -z 256 256 Hexchat_8.png --out Hexchat.iconset/hexchat_128x128@2x.png
sips -z 256 256 Hexchat_8.png --out Hexchat.iconset/hexchat_256x256.png
sips -z 512 512 Hexchat_8.png --out Hexchat.iconset/hexchat_256x256@2x.png
sips -z 512 512 Hexchat_8.png --out Hexchat.iconset/hexchat_512x512.png
cp Hexchat_8.png Hexchat.iconset/hexchat_512x512@2x.png
iconutil -c icns Hexchat.iconset
rm -R Hexchat.iconset不管有没有输出文件,每次都是一样的:
iconutil -c icns Hexchat.iconset
Hexchat.iconset:error: Failed to generate ICNS.
iconutil -c icns Hexchat.iconset -o hexchat.icns
Hexchat.iconset:error: Failed to generate ICNS.chmod‘’ing和/或sudo不起作用,并且手册页没有显示详细错误输出的选项。我做错了什么?
发布于 2015-09-10 07:04:44
将您的文件名从hexchat_16x16.png更改为icon_16x16.png,其他所有大小也是如此。
我只是遇到了同样的错误,名称类似于myappicon16x16.png,并且不能理解它为什么会失败。
我很想知道这一点,但在看到你的问题后,我找到了这个StackOverflow answer。
发布于 2016-02-02 19:11:41
在我的例子中,当我尝试归档时,mac osx应用程序给出了这个错误。命名约定
icon_16x16.png icon_16x16@2x.png icon_32x32.png icon_32x32@2x.png icon_128x128.png icon_128x128@2x.png icon_256x256.png icon_256x256@2x.png icon_512x512.png icon_512x512@2x.png
是正确的,但我发现我的图标的alpha = NO。我再次使用alpha = Yes导出图像,错误已修复。
https://stackoverflow.com/questions/31632304
复制相似问题