本文介绍了使用CEF以正确的方式获取网站图标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嘿所有,



我只是想知道,有没有一个正确的方法来获取网站的favicon而不是从

   http + Url.Host +   / favicon.ico 

?我知道网站通常设置这样的图标:

 <   meta     content   =   / images / myfavicon.png    itemprop   =  image >  

OR

< link rel = icon type = image / x-icon href = / myfavicon.ico >





有没有办法搜索网站的HTML代码和使用CEF(用于VB.NET WinForms的ChromiumEmbedFramework)或webclient获取这些标签中的图标(我仍然不确定如何使用CEF从网站获取源代码)。



我真的很感激任何帮助! :D

解决方案

Hey all,

I was just wondering, is there a proper way to get a website's favicon without just getting it from

"http" + Url.Host + "/favicon.ico"

? I know that a website usually sets its favicon like this:

<meta content="/images/myfavicon.png" itemprop="image">

OR

<link rel="icon" type="image/x-icon" href="/myfavicon.ico">



Is there a way I can search through the website's HTML code and get the icon from those tags using CEF (ChromiumEmbedFramework for VB.NET WinForms) or a webclient (I'm still not sure how to get the source code from a website using CEF).

I would really appreciate any help! :D

解决方案


这篇关于使用CEF以正确的方式获取网站图标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 06:54