如何使用多个图像创建ico文件


15

我可以使用imagemagic将png转换为ico,但是(我想,不确定),它将为我指定的大小创建一个图像ico文件。

convert favicon.png --resize 32 favicon.ico

ico文件可以包含2个或3个16x16、32x32和64x64像素的图像。

是否可以使用图像魔术或其他工具来创建这样的图标?

Answers:



16

imagemagick.org网站上找到它:

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
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.