我正在尝试从网站网址中提取favicon。我正在使用HtmlAgilityPack
。我得到一些favicons但不是全部。我认为问题在于实施的变化。我的当前战略是..
HtmlNode imageNode = head.SelectSingleNode("//link[@rel='shortcut icon' or @rel='apple-touch-icon' or @rel='icon' or @rel='apple-touch-icon-precomposed'] | //link[@type='image/png' or @type='image/gif' or @type='image/vnd.microsoft.icon']");
imageNode = head.SelectSingleNode("link[@rel='image_src']");
和开放图方法
private LinkDetails GetOpenGraphInfo(LinkDetails linkDetails, HtmlNode head)
{
foreach (HtmlNode headNode in head.ChildNodes)
{
switch (headNode.Name.ToLower())
{
case "link": break;
case "meta":
if (headNode.Attributes["property"] != null && headNode.Attributes["content"] != null)
{
switch (headNode.Attributes["property"].Value.ToLower())
{
case "og:title":
linkDetails.Title = HttpUtility.HtmlDecode(headNode.Attributes["content"].Value);
break;
case "og:type":
linkDetails.Type = headNode.Attributes["content"].Value;
break;
case "og:url":
linkDetails.Url = headNode.Attributes["content"].Value;
break;
case "og:image":
linkDetails.Image = new ImageLink(headNode.Attributes["content"].Value, linkDetails.Url);
break;
case "og:site_name":
linkDetails.SiteName = HttpUtility.HtmlDecode(headNode.Attributes["content"].Value);
break;
case "og:description":
linkDetails.Description = HttpUtility.HtmlDecode(headNode.Attributes["content"].Value);
break;
case "og:email":
linkDetails.Email = HttpUtility.HtmlDecode(headNode.Attributes["content"].Value);
break;
case "og:phone_number":
linkDetails.PhoneNumber = HttpUtility.HtmlDecode(headNode.Attributes["content"].Value);
break;
case "og:fax_number":
linkDetails.FaxNumber = HttpUtility.HtmlDecode(headNode.Attributes["content"].Value);
break;
}
}
break;
}
}
return linkDetails;
}
但我仍然缺少一些爱好者。所以我需要知道favicon是如何编码的。
答案 0 :(得分:2)
点击下面的链接下载网站的favicon。
打开链接,然后点击另存为图片进行下载。
http://www.google.com/s2/favicons?domain=codegena.com
将codegena.com替换为您要为其下载favicon的域名。
答案 1 :(得分:0)
<link rel="icon" type="image/png" href="http://yourblog.com/favicon.png" />
和
<link rel="shortcut icon" href="http://example.com/favicon.ico" type="image/x-icon" />
实际上,添加favicon的正确方法是通过插件,因此添加的favicon不依赖于主题。
您也可能缺少某些文件类型。