gpt4 book ai didi

icons - 使用 ImageMagick 创建 Windows ICO 文件的秘诀?

转载 作者:行者123 更新时间:2023-12-03 10:49:20 28 4
gpt4 key购买 nike

我要创建 .ico使用 ImageMagick 动态地(来自 SVG 文件)为我的 Windows 应用程序添加图标。我怎么做?

微软 lists various color depth and size requirements为图标。 ImageMagick 有 -depth -colors 选项,但我不确定在这种情况下如何正确使用它们。

另外,它看起来像 Vista+ supports 256x256 hi-res icon嵌入到相同的 .ico哪个可以(应该?必须?)是压缩的 PNG。如何将 Windows XP 图标和这个新的 Vista 图标“合并”成一个 .ico文件?

最佳答案

ImageMagick 在他们的文档中对此有一个秘诀,参见 FavIcon Web Page Link Thumbnail

基本上你运行以下:

convert image.png  -bordercolor white -border 0 \
\( -clone 0 -resize 16x16 \) \
\( -clone 0 -resize 32x32 \) \
\( -clone 0 -resize 48x48 \) \
\( -clone 0 -resize 64x64 \) \
-delete 0 -alpha off -colors 256 favicon.ico

您可以根据需要修改它以包含更大的分辨率,并更改边框、透明度设置等内容。

关于icons - 使用 ImageMagick 创建 Windows ICO 文件的秘诀?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11423711/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com