如何从网站链接获取网站徽标路径

时间:2013-08-02 06:50:02

标签: php

我在社交网站的某个地方看过如 bluefoxx.com ,如果您尝试在 champrep.com 或<上的帖子中分享网站链接strong> google.com ,它会显示这些网站的图片可能是徽标。

如果我必须在我的php网站中使用相同的功能,那么任何人都可以帮助我,我该怎么做。

由于

2 个答案:

答案 0 :(得分:1)

它是网络服务器上名为/favicon.ico的文件或使用<link rel="icon">定义的文件:

<link rel="icon" href="http://example.com/favicon.ico" type="image/x-icon">

答案 1 :(得分:0)

在c#ASP.Net很简单......你需要知道那个图像的虚拟路径...贝娄是一种方法,我用来保存我的条形码图像,我加入到网络浏览器中

public void GetPhoto(string filePath)
           {

               WebClient fileReader = new WebClient();
               fileReader.DownloadFile(filePath, Server.MapPath(string.Format("Image/someImage_{0}.jpg",txtBarCodeText.Text)));
               byte[] photo = null;


               string stream = Server.MapPath(string.Format("Image/someImage_{0}.jpg",txtBarCodeText.Text));
               TextBox1.Text = stream.ToString();

           }

filePath需要看起来像这样...... http://www.website.com/image.jpg 您可以右键单击要获取的Web图片,并查看属性以查看其路径 好运;)