• 获取图片的三种方法


    第一种方法

                HtmlElementCollection hc = webBrowser1.Document.GetElementsByTagName("img");
                HtmlElement h0 = null;
                foreach (HtmlElement h in hc)
                {
                    if (h.OuterHtml.Contains("code.en.img.php"))
                    {
                        h0 = h;
                        MessageBox.Show(h.OuterHtml.ToString());
                    }

                }

                MessageBox.Show(h0.GetAttribute("src"));
                string imgurl = h0.GetAttribute("src");
                pictureBox1.ImageLocation = imgurl;



    ------------------------分割符---------------------------------
    第二种方法
                HtmlElement he = webBrowser1.Document.Images[10];
                mshtml.IHTMLImgElement img = (mshtml.IHTMLImgElement)(he.DomElement);
                string a = img.src;

    ------------------------分割符---------------------------------
    第三种方法

    HttpWebRequest hwr = (HttpWebRequest)HttpWebRequest.Create("http://www.doudou.com/code.en.img.php");

                Bitmap bmp = new Bitmap(hwr.GetResponse().GetResponseStream());
                bmp.Save("L:\\test\\111.bmp", System.Drawing.Imaging.ImageFormat.Bmp);

  • 相关阅读:
    对于开发WEB方面项目需要的工具和技术了解
    SQLServer创建链接服务器
    Tomcat部署Web应用方法总结
    JDK/bin目录下的不同exe文件的用途
    js高级技巧自定义事件
    HTML5 web SQL
    js高级技巧拖放
    图片替换文字
    CSS内容生成(重要内容:css计数器)
    CSS 使元素垂直居中
  • 原文地址:https://www.cnblogs.com/zzh1236/p/1578165.html
Copyright © 2020-2023  润新知