HTML PNG 作为 ICO 无需转换
我想在 html 中使用 png 作为 ico,我该怎么做呢?我可以通过一些代码使用 png,例如:
<link rel="ico" type="png/ico" href="link"/>
使用 png 作为 iso 而不将其转换为实际 ico 的正确方法是什么?
I want to use a png as an ico in html, how could I go by doing this? I can you can use a png by some code such as:
<link rel="ico" type="png/ico" href="link"/>
What is the correct way to use a png as an iso with out converting it to an actual ico?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能将 PNG 用作 ICO。它们是不同的文件格式。
您可以指定 Favicon 是 PNG 图像,其语法与任何其他 Favicon 完全相同,只是类型是 PNG 类型。
由于 PNG 不是 ICO,因此浏览器需要支持 PNG 图像作为 Favicon这个工作。
You can't use a PNG as an ICO. They are different file formats.
You can specify that the Favicon is a PNG image, and the syntax is exactly the same as for any other Favicon except that the type is the PNG type.
Since a PNG isn't an ICO, the browser needs to support PNG images as Favicons for this to work.
图标只是位图...您可以只使用这些转换器之一。查看这个问题:
如何将 .ICO 转换为 .PNG?
Icons are just Bitmaps... You could just use one of these converters. Check out this question:
How to convert .ICO to .PNG?