是否有免费解决方案从主机链接的网站获取大型徽标或图标(约100 x 100像素)?
我找到了几条曲目,但没有让人满意:
谷歌S2但我找不到大小超过32x32或64x64的方法
http://www.google.com/s2/favicons?domain={URI.host}
在Google的收件箱中,我们发现“brand_avatar_url”指向https://ci4.googleusercontent.com/
我们可以选择尺寸但链接无法作为简单用户或甚至通过API找到
您知道一个简单而免费的解决方案吗?
答案 0 :(得分:0)
来自wikipedia:
此类图标文件的大小可以是16×16,32×32,48×48或64×64像素,颜色深度可以是8位,24位或32位
现在W3C:
但是,您选择的图像格式必须为16x16像素或32x32像素,使用8位或24位颜色。图像格式必须是PNG(W3C标准),GIF或ICO之一。
没有找到喜欢的高分辨率版本,这是完全正常的......
favicon徽标通常托管在网站上,最简单的解决方案是直接查看代码:
<head>
<title>Awesome Prods - Association de courts-métrages</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" href="/icon/favicon.ico">
<meta charset="utf-8">
<meta name=viewport content="width=device-width, initial-scale=1">
<meta name="description" content="Awesome Prods, association de création de courts-métrages.">
</head>
favicon位于<link rel="icon">
标记。