c# 怎样对窗体本身进行截图,非截屏。。。
用C#怎样对窗体本身进行截图。比方说:本人桌面上打开了好几个Form窗体,并且都重叠着,但每个窗体里面的截图方法只截取本窗体。。。现在只能实现截屏,窗体重叠了就不行。求高...
用C#怎样对窗体本身进行截图。比方说:本人桌面上打开了好几个Form窗体,并且都重叠着,但每个窗体里面的截图方法只截取本窗体。。。现在只能实现截屏,窗体重叠了就不行。求高手解答,谢谢!!!
展开
1个回答
2013-08-06
展开全部
先引入系统api函数 [DllImport("gdi32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)]
public static extern int BitBlt(HandleRef hDC, int x, int y, int nWidth, int nHeight, HandleRef hSrcDC, int xSrc, int ySrc, int dwRop);下面是具体操作代码 Graphics gSrc = this.CreateGraphics(); //创建窗体的Graphics对象
HandleRef hDcSrc = new HandleRef(null, gSrc.GetHdc()); int width = this.Width-SystemInformation.FrameBorderSize.Width; //获取宽度
int height = this.Height-SystemInformation.FrameBorderSize.Height; //获取高度 const int SRCCOPY = 0xcc0020; //复制图块的光栅操作码 Bitmap bmSave = new Bitmap(width, height); //用于保存图片的位图对象
Graphics gSave = Graphics.FromImage(bmSave); //创建该位图的Graphics对象
HandleRef hDcSave = new HandleRef(null, gSave.GetHdc()); //得到句柄 BitBlt(hDcSave, 0, 0, width, height, hDcSrc, 0, 0, SRCCOPY); 以上这段代码就应该能实现你所要的功能了。有什么问题共同学习研究吧。
public static extern int BitBlt(HandleRef hDC, int x, int y, int nWidth, int nHeight, HandleRef hSrcDC, int xSrc, int ySrc, int dwRop);下面是具体操作代码 Graphics gSrc = this.CreateGraphics(); //创建窗体的Graphics对象
HandleRef hDcSrc = new HandleRef(null, gSrc.GetHdc()); int width = this.Width-SystemInformation.FrameBorderSize.Width; //获取宽度
int height = this.Height-SystemInformation.FrameBorderSize.Height; //获取高度 const int SRCCOPY = 0xcc0020; //复制图块的光栅操作码 Bitmap bmSave = new Bitmap(width, height); //用于保存图片的位图对象
Graphics gSave = Graphics.FromImage(bmSave); //创建该位图的Graphics对象
HandleRef hDcSave = new HandleRef(null, gSave.GetHdc()); //得到句柄 BitBlt(hDcSave, 0, 0, width, height, hDcSrc, 0, 0, SRCCOPY); 以上这段代码就应该能实现你所要的功能了。有什么问题共同学习研究吧。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询