gpt4 book ai didi

favicon - 创建多分辨率图标

转载 作者:行者123 更新时间:2023-12-02 10:40:50 24 4
gpt4 key购买 nike

我正在寻找一种从单个图像创建 favicon.ico 的方法,但是,我在使用所有分辨率时都遇到了一些问题。

我尝试使用以下 ImageMagick 的命令:

convert -file1- -file2- favicon.ico

由于几个论坛帖子和网站上都建议了这一点,但我无法准确地弄清楚......

有人知道怎么做吗?

最佳答案

经过一番搜索,我想出了两个解决方案:

解决方案#1:

您只需登录任何安装了 ImageMagick 的 Linux 机器,将源图像(分辨率至少为 256x256 像素和 PNG 格式文件)重命名为“favicon.png”,然后运行以下命令:
convert favicon.png -bordercolor white -border 0 \
\( -clone 0 -resize 16x16 \) \
\( -clone 0 -resize 32x32 \) \
\( -clone 0 -resize 48x48 \) \
\( -clone 0 -resize 57x57 \) \
\( -clone 0 -resize 64x64 \) \
\( -clone 0 -resize 72x72 \) \
\( -clone 0 -resize 110x110 \) \
\( -clone 0 -resize 114x114 \) \
\( -clone 0 -resize 120x120 \) \
\( -clone 0 -resize 128x128 \) \
\( -clone 0 -resize 144x144 \) \
\( -clone 0 -resize 152x152 \) \
-delete 0 -alpha off -colors 256 favicon.ico

.. 您将拥有最知名格式的 favicon.ico 直接烘焙到一个文件中。

请务必查看网站图标备忘单@ https://github.com/audreyr/favicon-cheat-sheet了解更多网站图标信息。

解决方案#2:

冒着推广最终会变成付费服务的网站的风险:

For those of you without Imagemagick or no knowledge on how toimplement these favicons, have a look at this tip I got abouthttps://realfavicongenerator.net/ .. it also generates HTML code andgives you a couple of extra options on how to render the file for certainplatforms.

关于favicon - 创建多分辨率图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23375608/

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