非活动外部应用程序的屏幕截图

本文关键字:屏幕截图 应用程序 外部 非活动 | 更新日期: 2023-09-27 17:58:30

我需要截屏一个非活动的外部应用程序,例如TeamSpeak或Skype。

我已经搜索过了,但没有找到太多,我知道不可能截图一个最小化的应用程序,但我认为应该可以截图一个非活动的应用程序。

PS:我只想截屏应用程序,所以如果另一个应用程序在我想要的应用程序之上,会有问题吗?

我现在没有代码,我找到了一个user32 API,可以做我想做的事情,但我忘记了名称。。

谢谢你的帮助。

非活动外部应用程序的屏幕截图

您所追求的API是PrintWindow:

void Example()
{
    IntPtr hwnd = FindWindow(null, "Example.txt - Notepad2");
    CaptureWindow(hwnd);
}
[DllImport("User32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool PrintWindow(IntPtr hwnd, IntPtr hDC, uint nFlags);
[DllImport("user32.dll")]
static extern bool GetWindowRect(IntPtr handle, ref Rectangle rect);
[DllImport("user32.dll", SetLastError = true)]
static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
public void CaptureWindow(IntPtr handle)
{
    // Get the size of the window to capture
    Rectangle rect = new Rectangle();
    GetWindowRect(handle, ref rect);
    // GetWindowRect returns Top/Left and Bottom/Right, so fix it
    rect.Width = rect.Width - rect.X;
    rect.Height = rect.Height - rect.Y;
    // Create a bitmap to draw the capture into
    using (Bitmap bitmap = new Bitmap(rect.Width, rect.Height))
    {
        // Use PrintWindow to draw the window into our bitmap
        using (Graphics g = Graphics.FromImage(bitmap))
        {
            IntPtr hdc = g.GetHdc();
            if (!PrintWindow(handle, hdc, 0))
            {
                int error = Marshal.GetLastWin32Error();
                var exception = new System.ComponentModel.Win32Exception(error);
                Debug.WriteLine("ERROR: " + error + ": " + exception.Message);
                // TODO: Throw the exception?
            }
            g.ReleaseHdc(hdc);
        }
        // Save it as a .png just to demo this
        bitmap.Save("Example.png");
    }
}

使用GetWindowRect和来自user32 API的PrintWindow应该是实现该功能所需要的全部。PrintWindow将正确捕获特定应用程序的内容,即使它被上面的另一个窗口遮挡。

值得注意的是,这可能不适用于捕获DirectX窗口的内容。