【问题标题】:iconset:error: Failed to generate ICNS图标集:错误:无法生成 ICNS
【发布时间】:2015-10-16 09:52:38
【问题描述】:

我正在尝试为应用程序制作图标集,但在制作时不断出现错误:Hexchat.iconset:error: Failed to generate ICNS.

我尝试从 Illustrator 单独导出 .png 文件,以及使用脚本。当前具有 1024x1024 png 文件为 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 不起作用,并且手册页没有显示详细错误输出的选项。我做错了什么?

【问题讨论】:

    标签: macos icns iconutil


    【解决方案1】:

    将您的文件名从 hexchat_16x16.png 更改为 icon_16x16.png,所有其他大小都相同。

    我刚刚遇到了同样的错误,名称类似于 myappicon16x16.png,但不明白为什么会失败。

    我很乐意为发现这一点而感到自豪,但在看到你的问题后,我发现了这个StackOverflow answer

    【讨论】:

    • 它也区分大小写 - icon_16x16.png,而不是 Icon_16x16.png
    • 查看您是否已设法消除图标中的每一个错字(我将它们作为 icon_16pt,这也不起作用)的一种快速方法是将 .iconset 文件夹导入您的项目并选择它。如果可行,您现在可以使用滑块来欣赏各种尺寸的图标。如果没有,您会看到一个悲伤的文件夹图标,并且您将收到失败生成错误。
    【解决方案2】:

    就我而言,当我尝试存档时,mac osx 应用程序出现此错误。命名约定

    icon_16x16.png icon_16x16@2x.png 图标_32x32.png icon_32x32@2x.png 图标_128x128.png icon_128x128@2x.png 图标_256x256.png icon_256x256@2x.png 图标_512x512.png icon_512x512@2x.png

    是正确的,但我发现我的图标的 alpha = NO。我再次使用 alpha = Yes 导出图像,并修复了错误。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2014-08-11
      • 2022-01-23
      • 2012-01-27
      • 1970-01-01
      • 2013-12-14
      • 1970-01-01
      • 2021-03-27
      • 1970-01-01
      相关资源
      最近更新 更多