国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C#實現(xiàn)將網(wǎng)頁保存成圖片的網(wǎng)頁拍照功能

2020-01-24 02:37:04
字體:
供稿:網(wǎng)友

本文實例主要實現(xiàn)了網(wǎng)頁照相機程序的功能。C#實現(xiàn)將網(wǎng)頁保存成圖片格式,簡單實現(xiàn)網(wǎng)頁拍照,主要是基于ActiveX 組件的網(wǎng)頁快照類,AcitveX 必須實現(xiàn) IViewObject 接口。因此讀者完全可擴展此類將其用于你的C#軟件項目中。在此特別感謝作者:隨飛提供的代碼。

主要功能代碼如下:

using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;using System.Runtime.InteropServices.ComTypes;using System.Drawing;using System.Windows.Forms;namespace SnapLibrary{  /// <summary>  /// ActiveX 組件快照類,用于網(wǎng)頁拍照,將網(wǎng)頁保存成圖片  /// AcitveX 必須實現(xiàn) IViewObject 接口  /// 作者:隨飛  /// </summary>  public class Snapshot  {    /// <summary>    /// 取快照    /// </summary>    /// <param name="pUnknown">Com 對象</param>    /// <param name="bmpRect">圖象大小</param>    /// <returns></returns>    public Bitmap TakeSnapshot(object pUnknown, Rectangle bmpRect)    {      if (pUnknown == null)        return null;      //必須為com對象      if (!Marshal.IsComObject(pUnknown))        return null;      //IViewObject 接口      SnapLibrary.UnsafeNativeMethods.IViewObject ViewObject = null;      IntPtr pViewObject = IntPtr.Zero;      //內(nèi)存圖      Bitmap pPicture = new Bitmap(bmpRect.Width, bmpRect.Height);      Graphics hDrawDC = Graphics.FromImage(pPicture);      //獲取接口      object hret = Marshal.QueryInterface(Marshal.GetIUnknownForObject(pUnknown),        ref UnsafeNativeMethods.IID_IViewObject, out pViewObject);      try      {        ViewObject = Marshal.GetTypedObjectForIUnknown(pViewObject, typeof(SnapLibrary.UnsafeNativeMethods.IViewObject)) as SnapLibrary.UnsafeNativeMethods.IViewObject;        //調(diào)用Draw方法        ViewObject.Draw((int)DVASPECT.DVASPECT_CONTENT,          -1,          IntPtr.Zero,          null,          IntPtr.Zero,          hDrawDC.GetHdc(),          new NativeMethods.COMRECT(bmpRect),          null,          IntPtr.Zero,          0);        Marshal.Release(pViewObject);      }      catch (Exception ex)      {        Console.WriteLine(ex.Message);        throw ex;      }      //釋放      hDrawDC.Dispose();      return pPicture;    }  }}
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 田阳县| 柘城县| 巴楚县| 沽源县| 达拉特旗| 革吉县| 仁化县| 增城市| 江永县| 娄烦县| 上饶市| 中卫市| 高邮市| 深圳市| 得荣县| 宽城| 南皮县| 鄱阳县| 黄山市| 大丰市| 新泰市| 宿松县| 武强县| 罗定市| 弋阳县| 抚州市| 喀喇| 武宣县| 原平市| 道孚县| 铁岭县| 云南省| 东海县| 忻城县| 尼玛县| 绿春县| 九寨沟县| 大英县| 黎平县| 龙井市| 抚松县|