程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> Asp.Net獲取網站截圖的實例代碼

Asp.Net獲取網站截圖的實例代碼

編輯:關於ASP.NET
    這篇文章介紹了Asp.Net獲取網站截圖的實例代碼,有需要的朋友可以參考一下   復制代碼 代碼如下:


    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    namespace WindowsFormsApplication1
    {
        public partial class Form1 : Form
        {
            private WebBrowser _webBrowser;
            public Form1()
            {
                InitializeComponent();
            }
            public void GetThumbNail(string url)
            {
                _webBrowser = new WebBrowser();
                _webBrowser.ScrollBarsEnabled = false; //不顯示滾動條
                _webBrowser.Navigate(url);
                _webBrowser.DocumentCompleted = new WebBrowserDocumentCompletedEventHandler(Completed);
                while (_webBrowser.ReadyState != WebBrowserReadyState.Complete)
                {
                    System.Windows.Forms.Application.DoEvents(); //避免假死,若去掉則可能無法觸發 DocumentCompleted 事件。
                }
            }
            public void Completed(object sender, WebBrowserDocumentCompletedEventArgs e)
            {
                //設置浏覽器寬度、高度為文檔寬度、高度,以便截取整個網頁。
                _webBrowser.Width = _webBrowser.Document.Body.ScrollRectangle.Width;
                _webBrowser.Height = _webBrowser.Document.Body.ScrollRectangle.Height;
                using (Bitmap bmp = new Bitmap(_webBrowser.Width, _webBrowser.Height))
                {
                    _webBrowser.DrawToBitmap(bmp, new Rectangle(0, 0, bmp.Width, bmp.Height));
                    bmp.Save("Capture.png", System.Drawing.Imaging.ImageFormat.Png);
                    pictureBox1.ImageLocation = "Capture.png";
                }
            }
            private void button1_Click(object sender, EventArgs e)
            {
                GetThumbNail(textBox1.Text);
            }
        }
    }

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved