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

时间:2016-07-25 15:38:11

标签: c# screenshot external

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

我已经搜索过,但是我找不到太多内容,我知道无法截取最小化的应用程序,但我认为应该可以截取非活动应用程序。

PS:我想只截取应用程序,所以如果另一个应用程序位于我想要的应用程序之上,那会不会有问题?

我现在没有代码,我找到了一个user32 API,它可以做我想要的但我忘了名字..

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

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

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

答案 1 :(得分:1)

您之后的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");
    }
}