C\#실 현 된 스크롤 웹 캡 처 기능 예시

1471 단어 C#캡 처
본 고의 실례 는 C\#가 실현 한 스크롤 페이지 캡 처 기능 을 설명 한다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
  public partial class Form1 : Form
  {
    private int _currentWidth = 1024;
    private Bitmap _currentBitmap = null;
    public Form1()
    {
      InitializeComponent();
    }
private void button1_Click(object sender, EventArgs e)
{
  if (webBrowser1.Document == null)
    return;
  try
  {
    int width = _currentWidth;
    int height = webBrowser1.Document.Body.ScrollRectangle.Height;
    webBrowser1.Width = width;
    webBrowser1.Height = height;
    _currentBitmap = new Bitmap(width, height);
    webBrowser1.Stop();
    webBrowser1.DrawToBitmap(_currentBitmap, new Rectangle(0, 0, width, height));
    pictureBox1.Image = _currentBitmap;
  }
  catch (Exception ex)
  {
    MessageBox.Show(ex.ToString(), "    ", MessageBoxButtons.OK, MessageBoxIcon.Error);
  }
}
  }
}

C\#관련 내용 에 관심 이 있 는 독 자 는 본 사이트 의 주 제 를 볼 수 있다.,,,,,,,,,,,,,,,,,,,,,,,,,,,
본 고 에서 말 한 것 이 여러분 의 C\#프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기