主頁(yè) > 知識(shí)庫(kù) > Asp.Net獲取網(wǎng)站截圖的實(shí)例代碼

Asp.Net獲取網(wǎng)站截圖的實(shí)例代碼

熱門(mén)標(biāo)簽:智能電話營(yíng)銷(xiāo)外呼系統(tǒng) 電銷(xiāo)語(yǔ)音自動(dòng)機(jī)器人 戶(hù)外地圖標(biāo)注軟件手機(jī)哪個(gè)好用 長(zhǎng)春呼叫中心外呼系統(tǒng)哪家好 鄭州400電話辦理 聯(lián)通 萊蕪?fù)夂綦婁N(xiāo)機(jī)器人價(jià)格 五常地圖標(biāo)注 凱立德導(dǎo)航官網(wǎng)地圖標(biāo)注 地圖標(biāo)注和認(rèn)領(lǐng)
復(fù)制代碼 代碼如下:

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; //不顯示滾動(dòng)條
            _webBrowser.Navigate(url);
            _webBrowser.DocumentCompleted = new WebBrowserDocumentCompletedEventHandler(Completed);
            while (_webBrowser.ReadyState != WebBrowserReadyState.Complete)
            {
                System.Windows.Forms.Application.DoEvents(); //避免假死,若去掉則可能無(wú)法觸發(fā) DocumentCompleted 事件。
            }
        }
        public void Completed(object sender, WebBrowserDocumentCompletedEventArgs e)
        {
            //設(shè)置瀏覽器寬度、高度為文檔寬度、高度,以便截取整個(gè)網(wǎng)頁(yè)。
            _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);
        }
    }
}
您可能感興趣的文章:
  • jQuery jcrop插件截圖使用方法
  • jcrop 網(wǎng)頁(yè)截圖工具(插件)開(kāi)發(fā)
  • asp.net截屏功能實(shí)現(xiàn)截取web頁(yè)面
  • js插件Jcrop自定義截取圖片功能

標(biāo)簽:湖州 衢州 紅河 西寧 宣城 西藏 岳陽(yáng) 福州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Asp.Net獲取網(wǎng)站截圖的實(shí)例代碼》,本文關(guān)鍵詞  Asp.Net,獲取,網(wǎng)站,截圖,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Asp.Net獲取網(wǎng)站截圖的實(shí)例代碼》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于Asp.Net獲取網(wǎng)站截圖的實(shí)例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章