当前位置:  编程技术>.net/c#/asp.net

对指定的网页进行截图的效果 C#版

    来源: 互联网  发布时间:2014-10-13

    本文导语:  碰到一个项目,需要对指定的网页进行截图保存,晕死! 需求永远都是怪异的..... 解决是关键~ 遂写了以下代码,快准狠!(因为赶时间!) 可以实现对指定的页面获取,按指定的大小生成缩略图,当然也可以1:1的产生图,...

碰到一个项目,需要对指定的网页进行截图保存,晕死!

需求永远都是怪异的.....
解决是关键~

遂写了以下代码,快准狠!(因为赶时间!)
可以实现对指定的页面获取,按指定的大小生成缩略图,当然也可以1:1的产生图,
页面上的javascript 运行对截图貌似没任何影响,相当的正常,我个人都觉得很神奇。 

首先对项目添加系统引用
System.Drawing;
System.Drawing.Design;
System.Windows.Forms;

获取指定网页并转换成图片的类:

using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
using System.Windows.Forms;
using System.Diagnostics;

namespace MyLib
{
    public class GetImage
    {
        private int S_Height;
        private int S_Width;
        private int F_Height;
        private int F_Width;
        private string MyURL;

        public int ScreenHeight
        {
            get { return S_Height; }
            set { S_Height = value; }
        }

        public int ScreenWidth
        {
            get { return S_Width; }
            set { S_Width = value; }
        }

        public int ImageHeight
        {
            get { return F_Height; }
            set { F_Height = value; }
        }

        public int ImageWidth
        {
            get { return F_Width; }
            set { F_Width = value; }
        }

        public string WebSite
        {
            get { return MyURL; }
            set { MyURL = value; }
        }

        public GetImage(string WebSite, int ScreenWidth, int ScreenHeight, int ImageWidth, int ImageHeight)
        {
            this.WebSite = WebSite;
            this.ScreenWidth = ScreenWidth;
            this.ScreenHeight = ScreenHeight;
            this.ImageHeight = ImageHeight;
            this.ImageWidth = ImageWidth;
        }

        public Bitmap GetBitmap()
        {
            WebPageBitmap Shot = new WebPageBitmap(this.WebSite, this.ScreenWidth, this.ScreenHeight);
            Shot.GetIt();
            Bitmap Pic = Shot.DrawBitmap(this.ImageHeight, this.ImageWidth);
            return Pic;
        }
    }

    class WebPageBitmap
    {
        WebBrowser MyBrowser;
        string URL;
        int Height;
        int Width;

        public WebPageBitmap(string url, int width, int height)
        {
            this.Height = height;
            this.Width = width;
            this.URL = url;
            MyBrowser = new WebBrowser();
            MyBrowser.ScrollBarsEnabled = false;
            MyBrowser.Size = new Size(this.Width, this.Height);
        }

        public void GetIt()
        {
            MyBrowser.Navigate(this.URL);
            while (MyBrowser.ReadyState != WebBrowserReadyState.Complete)
            {
                Application.DoEvents();
            }
        }

        public Bitmap DrawBitmap(int theight, int twidth)
        {
            Bitmap myBitmap = new Bitmap(Width, Height);
            Rectangle DrawRect = new Rectangle(0, 0, Width, Height);
            MyBrowser.DrawToBitmap(myBitmap, DrawRect);
            System.Drawing.Image imgOutput = myBitmap;
            System.Drawing.Image oThumbNail = new Bitmap(twidth, theight, imgOutput.PixelFormat);
            Graphics g = Graphics.FromImage(oThumbNail);
            g.CompositingQuality = CompositingQuality.HighSpeed;
            g.SmoothingMode = SmoothingMode.HighSpeed;
            g.InterpolationMode = InterpolationMode.HighQualityBilinear;
            Rectangle oRectangle = new Rectangle(0, 0, twidth, theight);
            g.DrawImage(imgOutput, oRectangle);
            try
            {

                return (Bitmap)oThumbNail;
            }
            catch (Exception ex)
            {
                return null;
            }
            finally
            {
                imgOutput.Dispose();
                imgOutput = null;
                MyBrowser.Dispose();
                MyBrowser = null;
            }
        }
    }

}


以下是调用方法,懒省事的方法,嘿嘿,赶时间就不说什么了,反正上面的抓取转换类已经写出来了,大家尽情的用异步,线程等方法自己玩吧!~

    string UrlPath;
    bool CaptureState = false;
    Guid guid;
    protected bool SaveOriginalPageToImage(Guid myGuid)
    {
//使用guid 来命名
        guid = myGuid;
        if (this.CurrentPageAct == PageAct.Edit)
        {
            string PagePath = Request.Url.LocalPath;
            PagePath = PagePath.Replace("Operation", "Capture");

            UrlPath = PagePath + "?act=view&ProjectNo=" + _projectNo;

            Thread NewTh = new Thread(CaptureImage);
            NewTh.SetApartmentState(ApartmentState.STA);
            NewTh.Start();
            while (NewTh.ThreadState == ThreadState.Running)
            {
            }
            //返回截取状态
            return CaptureState;
        }
        return false;
    }

    /**//// 
    /// 捕获屏幕
    /// 
    /// 
    /// 
    public void CaptureImage()
    {
        try
        {
            string url = "http://" + Request.Url.Host + ":" + Request.Url.Port.ToString();
            url = url + UrlPath;

            GetImage thumb = new GetImage(url, 1024, 1200, 1024, 1200);
            System.Drawing.Bitmap x = thumb.GetBitmap();
            string FileName = DateTime.Now.ToString("yyyyMMddhhmmss");

            x.Save(Server.MapPath("~/Capture/SavePage") + "\" + guid + ".jpg");
            CaptureState = true;
        }
        catch (Exception ex)
        {
            CaptureState = false;
        }
    }

    
 
 

您可能感兴趣的文章:

  • C# 读取配置文件(指定路径)的方法
  • C# 读取指定路径配置文件的方法
  • C#实现移除字符串末尾指定字符的方法
  • c#指定区域屏幕截屏功能实现代码
  • C#实现根据指定容器和控件名字获得控件的方法
  • c#不使用系统api实现可以指定区域屏幕截屏功能
  • 基于C#实现的屏幕指定区域截屏代码
  • c# 判断指定文件是否存在的简单实现
  • C#截取中英文混合指定长度字符串实例
  • C#定位txt指定行的方法小例子
  • C#按指定质量保存图片的实现代码
  • C#中按指定质量保存图片的实例代码
  • C# double和decimal数据类型以截断的方式保留指定的小数位数
  • C#中怎样从指定字符串中查找并替换字符串?
  • c#分页显示服务器上指定目录下的所有图片示例
  • c#开发的程序安装时动态指定windows服务名称
  • 解决C# 截取当前程序窗口指定位置截图的实现方法
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Jquery tab效果指定默认显示第几页
  • 使用jquery animate创建平滑滚动效果(可以是到顶部、到底部或指定地方)
  • C++ Lists(链表) 成员 remove_if():按指定条件删除元素
  • 如何用shell实现将指定文件中的指定的字符串替换为我指定的另外的字符串
  • C++ Maps 成员 count():返回指定元素出现的次数
  • 求一SHELL(Linux下批量将指定目录文件传到指定远程服务器的指定目录)!
  • C++ Double Ended Queues(双向队列) 成员 at():返回指定的元素
  • linux如何给指定用户赋予指定文件的权限
  • C++ I/O 成员 ignore():读取字符并忽略指定字符
  • 怎样读取指定内存地址处指定长度的内存数据???(
  • C++ Bitsets 成员 test():返回指定位的状态
  • Applet指定codebase,怎样将其指定到classpath下?不用绝对路径!
  • C++ MultiMaps 成员 equal_range():返回指向元素的key为指定值的迭代器对
  • tar解压解包指定文件到指定目录
  • C++ Vectors 成员 erase():删除指定元素
  • 请教如何在指定目录下查找包含指定文字的文件
  • C++ Vectors 成员 at():返回指定位置的元素
  • linux 指定用户只能读写指定的文件夹
  • Linux下指定运行时加载动态库路径及shell下执行程序默认路径
  • 如何查看系统中有多少个组?有多少个用户?如何把指定用户加到指定组中?
  • Linux下通过rpm安装软件详细介绍以及如何将软件安装到指定目录
  • Linux查找包含指定文字的文件(linux查找指定文件)
  • linxu-如何拷贝指定类型的文件到指定的目录下呢?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3