CSkin博客

标题: 【网页截图】网页全屏截图工具 [打印本页]

作者: 乔克斯    时间: 2014-10-10 14:33
标题: 【网页截图】网页全屏截图工具
网页全屏截图工具

效果图:
1.主界面。


2.CSkin论坛截图效果。



介绍说明:
一款实用简单的网页照相机,能够把整个网页从头到脚保存为一张图片。
原理比较简单,就是一个用一个虚拟的WebBrowser控件加载网页然后获取整个区域的图像并保存,核心类Screenshot.cs代码如下:
[C#] 纯文本查看 复制代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Imaging;
using System.Runtime.InteropServices;
using System.Security;
namespace WebScreenshot
{
    public class Screenshot
    {
        public static Bitmap GetHtmlImage(Uri UrlString)
        {
            WebBrowser MyControl = new WebBrowser();
            MyControl.ScriptErrorsSuppressed = false;
            MyControl.Size = new Size(10, 10);
            MyControl.Url = UrlString;
            while (MyControl.ReadyState != WebBrowserReadyState.Complete)
            {
                Application.DoEvents();
            }
            MyControl.Width = MyControl.Document.Body.ScrollRectangle.Width + 20;
            MyControl.Height = MyControl.Document.Body.ScrollRectangle.Height + 20;
            MyControl.Url = UrlString;
            WebControlImage.Snapshot snap = new WebControlImage.Snapshot();
            Bitmap MyImage = snap.TakeSnapshot(MyControl.ActiveXInstance, new Rectangle(0, 0, MyControl.Width, MyControl.Height));
            MyControl.Dispose();
            return MyImage;
        }
        ///
        /// WebBrowser获取图形
        ///
        private class WebControlImage
        {
            internal static class NativeMethods
            {
                [StructLayout(LayoutKind.Sequential)]
                public sealed class tagDVTARGETDEVICE
                {
                    [MarshalAs(UnmanagedType.U4)]
                    public int tdSize;
                    [MarshalAs(UnmanagedType.U2)]
                    public short tdDriverNameOffset;
                    [MarshalAs(UnmanagedType.U2)]
                    public short tdDeviceNameOffset;
                    [MarshalAs(UnmanagedType.U2)]
                    public short tdPortNameOffset;
                    [MarshalAs(UnmanagedType.U2)]
                    public short tdExtDevmodeOffset;
                }
                [StructLayout(LayoutKind.Sequential)]
                public class COMRECT
                {
                    public int left;
                    public int top;
                    public int right;
                    public int bottom;
                    public COMRECT()
                    {
                    }
                    public COMRECT(Rectangle r)
                    {
                        this.left = r.X;
                        this.top = r.Y;
                        this.right = r.Right;
                        this.bottom = r.Bottom;
                    }
                    public COMRECT(int left, int top, int right, int bottom)
                    {
                        this.left = left;
                        this.top = top;
                        this.right = right;
                        this.bottom = bottom;
                    }
                    public static NativeMethods.COMRECT FromXYWH(int x, int y, int width, int height)
                    {
                        return new NativeMethods.COMRECT(x, y, x + width, y + height);
                    }
                    public override string ToString()
                    {
                        return string.Concat(new object[] { "Left = ", this.left, " Top ", this.top, " Right = ", this.right, " Bottom = ", this.bottom });
                    }
                }
                [StructLayout(LayoutKind.Sequential)]
                public sealed class tagLOGPALETTE
                {
                    [MarshalAs(UnmanagedType.U2)]
                    public short palVersion;
                    [MarshalAs(UnmanagedType.U2)]
                    public short palNumEntries;
                }
            }
            public class Snapshot
            {
              
                /// 图象大小
                ///
                public Bitmap TakeSnapshot(object pUnknown, Rectangle bmpRect)
                {
                    if (pUnknown == null)
                        return null;
                    //必须为com对象
                    if (!Marshal.IsComObject(pUnknown))
                        return null;
                    //IViewObject 接口
                    UnsafeNativeMethods.IViewObject ViewObject = null;
                    IntPtr pViewObject = IntPtr.Zero;
                    //内存图
                    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(UnsafeNativeMethods.IViewObject)) as UnsafeNativeMethods.IViewObject;
                        //调用Draw方法
                        ViewObject.Draw((int)System.Runtime.InteropServices.ComTypes.DVASPECT.DVASPECT_CONTENT,
                        -1,
                        IntPtr.Zero,
                        null,
                        IntPtr.Zero,
                        hDrawDC.GetHdc(),
                        new NativeMethods.COMRECT(bmpRect),
                        null,
                        IntPtr.Zero,
                        0);
                    }
                    catch (Exception ex)
                    {
                        Console.WriteLine(ex.Message);
                        throw ex;
                    }
                    //释放
                    hDrawDC.Dispose();
                    return pPicture;
                }
            }
            [SuppressUnmanagedCodeSecurity]
            internal static class UnsafeNativeMethods
            {
                public static Guid IID_IViewObject = new Guid("{0000010d-0000-0000-C000-000000000046}");
                [ComImport, Guid("0000010d-0000-0000-C000-000000000046"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
                public interface IViewObject
                {
                    [PreserveSig]
                    int Draw([In, MarshalAs(UnmanagedType.U4)] int dwDrawAspect, int lindex, IntPtr pvAspect, [In] NativeMethods.tagDVTARGETDEVICE ptd, IntPtr hdcTargetDev, IntPtr hdcDraw, [In] NativeMethods.COMRECT lprcBounds, [In] NativeMethods.COMRECT lprcWBounds, IntPtr pfnContinue, [In] int dwContinue);
                    [PreserveSig]
                    int GetColorSet([In, MarshalAs(UnmanagedType.U4)] int dwDrawAspect, int lindex, IntPtr pvAspect, [In] NativeMethods.tagDVTARGETDEVICE ptd, IntPtr hicTargetDev, [Out] NativeMethods.tagLOGPALETTE ppColorSet);
                    [PreserveSig]
                    int Freeze([In, MarshalAs(UnmanagedType.U4)] int dwDrawAspect, int lindex, IntPtr pvAspect, [Out] IntPtr pdwFreeze);
                    [PreserveSig]
                    int Unfreeze([In, MarshalAs(UnmanagedType.U4)] int dwFreeze);
                    void SetAdvise([In, MarshalAs(UnmanagedType.U4)] int aspects, [In, MarshalAs(UnmanagedType.U4)] int advf, [In, MarshalAs(UnmanagedType.Interface)] System.Runtime.InteropServices.ComTypes.IAdviseSink pAdvSink);
                    void GetAdvise([In, Out, MarshalAs(UnmanagedType.LPArray)] int[] paspects, [In, Out, MarshalAs(UnmanagedType.LPArray)] int[] advf, [In, Out, MarshalAs(UnmanagedType.LPArray)] System.Runtime.InteropServices.ComTypes.IAdviseSink[] pAdvSink);
                }
            }
        }
    }
}



案例源码下载: 网页全屏截取工具.rar (50.58 KB, 下载次数: 121, 售价: 1 金钱)


作者: 佐佑    时间: 2014-10-10 14:58
以前看到过一个JS版的。。。
作者: easy    时间: 2014-10-11 16:52
回帖加积分,回帖加积分。。。。
作者: 流星    时间: 2015-1-21 11:32
看看。。。。。。
作者: hhjj3388    时间: 2015-1-25 13:10
不错 ···下来来学学·!!
作者: snr19820216    时间: 2015-8-19 15:30
感谢分享,LZ辛苦了~
作者: snr19820216    时间: 2015-8-19 15:30
感谢分享,LZ辛苦了~
作者: X战警2015X    时间: 2015-8-23 03:21
666666有创意。虽然技术点不是很高。
作者: 1328842602    时间: 2015-10-17 18:36
小手一抖金币到手  楼主辛苦了
作者: 39095017    时间: 2015-11-1 14:25
非常给力,赞一个
作者: qq385723790    时间: 2015-12-26 21:41
非常给力,赞一个
作者: freelandy    时间: 2016-1-13 15:05
项目里正好需要这个。多谢分享!
作者: JJboon    时间: 2016-5-2 08:55
好像不能获取积分
作者: lkjlkjhong    时间: 2016-7-13 11:07
我喜欢,谢谢分享。
作者: 758132951    时间: 2017-3-10 00:15
谢谢楼主,共同学习
作者: 土豆哥哥    时间: 2017-3-10 09:42
这思路6啊
作者: sulen    时间: 2018-2-20 22:04
很不错很不错很不错很不错很不错很不错
作者: 小雨哗啦啦    时间: 2018-9-12 18:46
以前看到过一个JS版的。。。
作者: qwe123456    时间: 2018-10-11 11:10
看一下。
作者: jacksonwong    时间: 2019-5-17 13:45
谢谢分享!




欢迎光临 CSkin博客 (http://bbs.cskin.net/) Powered by Discuz! X3.2