使用 Imagemagick 将 GIF、PNG 和 JPG 转换为 .ICO 文件
来自:JPG,至:ICO;
/usr/bin/convert -resize x16 -gravity center -crop 16x16+0+0 input.jpg \
-transparent white -colors 256 output/favicon.ico
这是命令行的输出。
从:GIF、PNG 到:ICO;
/usr/bin/convert -resize x16 -gravity center -crop 16x16+0+0 input.png \
-flatten -colors 256 output/favicon.ico
我在透明度方面遇到了问题。我似乎无法获得正确的代码,我尝试过 -channel alpha -negate 等
这会创建一个图像,当我应用于该网站时,它适用于 Firefox,但不适用于其他浏览器。 IE、Chrome、Opera 和 Safari 出于某种原因都讨厌它,它是一个简单的 favicon.ico 文件。我的结论是,一定是我的命令在某个地方被破坏了。请帮忙?
From: JPG, To: ICO;
/usr/bin/convert -resize x16 -gravity center -crop 16x16+0+0 input.jpg \
-transparent white -colors 256 output/favicon.ico
This is the output for the command line.
From: GIF's, PNG To: ICO;
/usr/bin/convert -resize x16 -gravity center -crop 16x16+0+0 input.png \
-flatten -colors 256 output/favicon.ico
I am having issues with transparency. I can't seem to get the right code for it, i have tried -channel alpha -negate, etc
This creates an image and when i apply to the site, it works with Firefox but none of the other browsers. IE, Chrome, Opera and Safari all hate it for some reason, it is a simple favicon.ico file. My conclusion is it must be my command somewhere is breaking. Please help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要将 PNG 转换为 ICO,设置所需的尺寸并保留透明度:
(适用于 ImageMagick 7.0 或更高版本)
在此示例中,ico 文件将有 9 个条目:16x16 px、24x24 px 等(假设它是正方形)
提示:
如果您使用的是 Windows 7,您可以将以下代码保存到 REG 文件并将其应用到注册表。这将在 PNG 文件的上下文菜单中创建一个名为“转换为 ICO”的条目。当您右键单击file.png并选择此命令时,将在同一文件夹中生成file.png.ico。
安装ConvertToIcoCtxMenu.reg
(记住将 ImageMagick 路径替换为您计算机上的安装路径)
To convert PNG to ICO, setting the sizes you want, and preserving transparency:
(works for ImageMagick 7.0 or newer)
In this example, the ico file will have 9 entries: 16x16 px, 24x24 px, etc (assuming it is square)
Hint:
If you are on Windows 7, you can save the code below to a REG file and apply it to the registry. This will create an entry in the context menu of PNG files called "Convert to ICO". When you right-click file.png and select this command, file.png.ico will be generated in the same folder.
InstallConvertToIcoCtxMenu.reg
(remember to replace the ImageMagick path with the path where it is installed on your computer)
将此选项添加到
convert
:但是,请记住,您的原始图像实际上必须具有 Alpha 通道。 PNG 可能有 Alpha 通道,而 JPEG 则没有。
Add this option to
convert
:However, keep in mind that your original image must actually have an alpha channel. PNGs may have an alpha channel, JPEGs do not.
解决 ICO 问题的一种方法是不使用它:
适用于所有浏览器,并且您可以使用具有更好压缩效果的更清晰的文件格式。
One solution to the ICO problem would be not using it:
Works in all browsers, and you get to use saner file format with better compression.