微信截图
当程序被遮挡不在最上层,或者程序最小化,也能截取到窗口图片
原理流程
- 获取设备上下文句柄:GetWindowDC-- > ReleaseDC
- 获取指定窗口边界和尺寸:GetWindowRect
- 计算窗口大小(注意C#中的Rectangle与C++中RECT区别)
- 创建一个设备上下文相关的位图:CreateCompatibleBitmap->DeleteObject
- 创建一个内存上下文兼容的句柄:CreateCompatibleDC->DeleteDC
- 选择一个设备上下文对象:SelectObject
- 拷贝窗口到设备上下文:PrintWindow
- 清理垃圾
代码
定义:
[DllImport("Gdi32.dll")]
public static extern int DeleteDC(IntPtr hdc);
[DllImport("Gdi32.dll")]
public static extern int DeleteObject(IntPtr ho);
[DllImport("User32.dll")]
public static extern int PrintWindow(IntPtr hwnd, IntPtr hdcBlt, UInt32 nFlags);
[DllImport("Gdi32.dll")]
public static extern IntPtr SelectObject(IntPtr hdc, IntPtr h);
[DllImport("Gdi32.dll")]
public static extern IntPtr CreateCompatibleDC(IntPtr hdc);
[DllImport("Gdi32.dll")]
public static extern IntPtr CreateCompatibleBitmap(IntPtr hdc, int cx, int cy);
[DllImport("User32.dll")]
public static extern int GetWindowRect(IntPtr hWnd, ref Rectangle lpRect);
[DllImport("User32.dll")]
public static extern int ReleaseDC(IntPtr hWnd, IntPtr hDC);
[DllImport("User32.dll")]
public static extern IntPtr GetWindowDC(IntPtr hWnd);
使用:
//获取微信进程
if (Init() == false) return;
// 1)获取设备上下文句柄:GetWindowDC-- > ReleaseDC
IntPtr windowDCHandle = GetWindowDC(IntPtr.Zero);
if (windowDCHandle == IntPtr.Zero)
{
MessageBox.Show("获取设备上下文句柄失败!");
return;
}
// 2)获取指定窗口边界和尺寸:GetWindowRect,
Rectangle rectangle = new Rectangle();
if (GetWindowRect(WxProcess.MainWindowHandle, ref rectangle) == 0)
{
MessageBox.Show("获取指定窗口边界和尺寸失败!");
return;
};
// 注意C#中的Rectangle与C++中RECT区别
//3)计算窗口大小
int width = rectangle.Width - rectangle.X;
int height = rectangle.Height - rectangle.Y;
// 4)创建一个设备上下文相关的位图:CreateCompatibleBitmap->DeleteObject
IntPtr compatibleBitmapHandle = CreateCompatibleBitmap(windowDCHandle, width, height);
if (compatibleBitmapHandle == IntPtr.Zero)
{
MessageBox.Show("创建一个设备上下文相关的位图失败!");
return;
}
// 5)创建一个内存上下文兼容的句柄:CreateCompatibleDC->DeleteDC
IntPtr compatibleDCHandle = CreateCompatibleDC(windowDCHandle);
if (compatibleDCHandle == IntPtr.Zero)
{
MessageBox.Show("创建一个内存上下文兼容的句柄失败!");
return;
}
// 6)选择一个设备上下文对象:SelectObject
if (SelectObject(compatibleDCHandle, compatibleBitmapHandle) == IntPtr.Zero)
{
MessageBox.Show("选择一个设备上下文对象失败!");
return;
}
// 7)拷贝窗口到设备上下文:PrintWindow
if (PrintWindow(WxProcess.MainWindowHandle, compatibleDCHandle, 0) == 0)
{
MessageBox.Show("拷贝窗口到设备上下文失败!");
return;
}
this.pictureBox1.Width = width;
this.pictureBox1.Height = height;
this.pictureBox1.Image = Image.FromHbitmap(compatibleBitmapHandle);
// 8)清理垃圾
DeleteObject(compatibleBitmapHandle);
DeleteDC(compatibleDCHandle);
ReleaseDC(WxProcess.MainWindowHandle, windowDCHandle);
《梦想职达2012》大陆综艺高清在线免费观看:https://www.jgz518.com/xingkong/55610.html
《战争与和平4:皮埃尔别祖霍夫》剧情片高清在线免费观看:https://www.jgz518.com/xingkong/126676.html