将 hdc 内容复制到位图

发布于 2024-07-10 13:37:38 字数 24 浏览 4 评论 0原文

如何将 HDC 的内容复制到位图?

How could you copy the contents of an HDC to a bitmap?

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

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

发布评论

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

评论(2

吖咩 2024-07-17 13:37:38

我突然想到你需要:

  • 创建一个与源 DC 兼容的新 DC。 将此称为内存 DC。
  • 创建正确大小的新位图。
  • 选择位图到内存DC中。
  • BitBlt 将源 DC 写入内存 DC。
  • 位图现在应该包含源 DC 的副本。

我在家,所以无法给您任何代码,所以我希望这足以让您开始。 Code Project 上有一个很好的 GDI 部分。

http://www.codeproject.com/KB/graphics/

Off the top of my head I think you need to:

  • Create a new DC compatible with the source DC. Call this the memory DC.
  • Create a new bitmap of the correct size.
  • Select the bitmap into the memory DC.
  • BitBlt the source DC into the memory DC.
  • The bitmap should now contain a copy of the source DC.

I'm at home so can't give you any code, so I hope this is enough to get you started. There is a good GDI section on Code Project.

http://www.codeproject.com/KB/graphics/

为你拒绝所有暧昧 2024-07-17 13:37:38

这里有一段很好的示例代码,它可以做到这一点(除其他外) 。

我以前使用过类似的技术(很多个月前),但手头没有代码。

There is a good piece of sample code here that does just that (amongst other things).

I've used a similar technique before (many moons ago), but do not have the code to hand.

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