使用 C# / Winforms / GDI+,我如何获取控件的像素或获取图像?

发布于 2024-09-12 13:36:37 字数 171 浏览 1 评论 0原文

我想“抓取”我的 winforms 对话框上的控件图像。我可以使用以下方法访问控件的“图形”上下文:

MyControl.CreateGraphics()

但是如何将矩形从该图形上下文复制到图像或位图,或在其上调用 getpixel ?

多谢。

I want to 'grab' the image of a control on my winforms dialog. I can access the 'graphics' context for the control using:

MyControl.CreateGraphics()

But how do i copy a rectangle from that graphics context to an image, or a bitmap, or call getpixel on it?

Thanks a lot.

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

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

发布评论

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

评论(1

腻橙味 2024-09-19 13:36:37

我认为 MyControl.DrawToBitmap 是可行的方法:

Bitmap bmp = new Bitmap(MyControl.Width, MyControl.Height);
MyControl.DrawToBitmap(bmp, MyControl.ClientRectangle);

如果您需要获取像素,则使用 Bitmap.GetPixel 或 Bitmap.LockBits

I think MyControl.DrawToBitmap is the way to go:

Bitmap bmp = new Bitmap(MyControl.Width, MyControl.Height);
MyControl.DrawToBitmap(bmp, MyControl.ClientRectangle);

If you need to get the pixels then use Bitmap.GetPixel or Bitmap.LockBits

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