获得一个窗口的区域

时间:2011-06-20 22:44:02

标签: c# graphics screen-capture region

我正在尝试使用此方法获取窗口的高度和宽度:

    [DllImport("User32.dll", SetLastError = true)]
    [return: MarshalAs(UnmanagedType.Bool)]
    private static extern bool PrintWindow(IntPtr hwnd, IntPtr hDC, uint nFlags);

    [DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true)]
    public static extern IntPtr GetForegroundWindow();

    [DllImport("user32.dll")]
    private static extern bool GetWindowRect(IntPtr handle, out Rectangle rect);

    private void timer1_Tick(object sender, EventArgs e)
    {
        Rectangle bonds = new Rectangle();
        GetWindowRect(GetForegroundWindow(), out bonds);
        Bitmap bmp = new Bitmap(bonds.Width, bonds.Height);
        Graphics memoryGraphics = Graphics.FromImage(bmp);
        IntPtr dc = memoryGraphics.GetHdc();
        PrintWindow(GetForegroundWindow(), dc, 0x1);
        memoryGraphics.ReleaseHdc(dc);
        bmp.Save("C:\\Test.gif", ImageFormat.Gif);
    }

但bonds.width和height比真实窗口更多。

示例:我的窗口是100x150,bond.height就像是400,bonds.width就像500.我得到的图片大小为400x500,由图片角落的窗口组成(这很好)其余部分是黑色的,因为图片比窗口大(这很糟糕)

注意:我不在乎窗户是无气味的,这对我有好处。

那么任何建议,或者更好的方式来获得一个地区?

1 个答案:

答案 0 :(得分:2)

您需要使用ScreenToClient并翻译坐标。

GetWindowRect返回相对于屏幕左上角的窗口区域(0,0)。