C#截取指定应用程序窗口截图
某些情况下,需要截取特定应用程序或窗口的截图,而非整个屏幕。这可以通过PrintWindow Win32 API实现,该API允许将窗口打印到设备上下文。
代码实现
以下C#代码演示如何截取指定窗口的截图:
<code class="language-csharp">// 导入所需的Win32 API [DllImport("user32.dll")] public static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect); [DllImport("user32.dll")] public static extern bool PrintWindow(IntPtr hWnd, IntPtr hdcBlt, int nFlags); // 定义表示RECT结构的类 [StructLayout(LayoutKind.Sequential)] public struct RECT { public int Left; public int Top; public int Right; public int Bottom; } // 获取窗口句柄和尺寸 IntPtr hwnd = ...; // 请替换为要截取的窗口句柄 RECT rc; GetWindowRect(hwnd, out rc); // 创建位图以存储截图 Bitmap bmp = new Bitmap(rc.Width, rc.Height, PixelFormat.Format32bppArgb); // 获取位图的图形设备上下文 Graphics gfxBmp = Graphics.FromImage(bmp); // 创建离屏设备上下文 IntPtr hdcBitmap = gfxBmp.GetHdc(); // 将窗口打印到离屏设备上下文 PrintWindow(hwnd, hdcBitmap, 0); // 释放离屏设备上下文 gfxBmp.ReleaseHdc(hdcBitmap); gfxBmp.Dispose(); // 现在您拥有了表示指定窗口截图的位图</code>
其他说明
以上是如何使用C#截取特定应用程序窗口的屏幕截图?的详细内容。更多信息请关注PHP中文网其他相关文章!