将表单的图像复制到内存中的位图
如何将表单的 clientrectangle 中的图像复制到内存中的位图?我知道如何从位图转到表单,但不知道如何从位图转到表单。谢谢!
How can I copy the image in the clientrectangle of my form to a bitmap in memory? I know how to go from bitmap to form, but not the other way around. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 DrawToBitmap() 方法。大多数情况下可以工作,但您可能有不实现它的控件,例如 RTB 或第 3 方控件。备份方法是Graphics.CopyFromScreen()。
You can use the DrawToBitmap() method. Mostly works, but you might have controls that don't implement it, like RTB or 3rd party controls. The backup method is Graphics.CopyFromScreen().
假设您指的是表单的BackgroundImage 属性。
Assuming you're referring to the BackgroundImage property of the form.