C# 使用 PrintWindow

发布于 2024-11-16 14:36:58 字数 312 浏览 3 评论 0原文

我试图在 win7 中捕获一个窗口而不禁用 aero,我听到 PrintWindow 有效。

但我不知道如何使用它,我找到了一些文章但我在其中任何一个中都看不到任何图像或位图输出

有没有人有过此功能的经验并知道如何使用它?

I am trying to capture a window in win7 without disabling aero and I hear PrintWindow Works.

But I'm not sure how to use it, I found some articles but I can't see any image or bitmap output in any of them

Has anyone ever had experience with this function and knows how to use it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深府石板幽径 2024-11-23 14:36:58

上一个链接此处

来自同一链接的代码示例:

Graphics g = form.CreateGraphics();
Bitmap bmp = new Bitmap(form.Size.Width, form.Size.Height, g);
Graphics memoryGraphics = Graphics.FromImage(bmp);
IntPtr dc = memoryGraphics.GetHdc();
bool success = PrintWindow(form.Handle, dc, 0);
memoryGraphics.ReleaseHdc(dc);
// bmp now contains the screenshot

另外,如上面链接中所指定,您可以使用托管 Control.DrawToBitamp 来实现同样的效果。

Previous link here.

Code sample from the same link:

Graphics g = form.CreateGraphics();
Bitmap bmp = new Bitmap(form.Size.Width, form.Size.Height, g);
Graphics memoryGraphics = Graphics.FromImage(bmp);
IntPtr dc = memoryGraphics.GetHdc();
bool success = PrintWindow(form.Handle, dc, 0);
memoryGraphics.ReleaseHdc(dc);
// bmp now contains the screenshot

Also as specified in the above link you can use managed Control.DrawToBitamp to achieve the same thing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文