寻找在 C# 中获取重复桌面屏幕截图的最有效方法
我正在寻找在 C# 中拍摄重复桌面屏幕截图的最有效方法。
我目前正在使用copyfromscreen,但它对CPU 的负担有点太大。
我想知道是否还有其他选择。
谢谢
I am looking for the most efficient way to take repetitive desktop screenshots in C#.
I am currently using copyfromscreen but it is a little bit too taxing on the CPU.
I would like to know if there is other alternatives.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 p/Invoke GetWindowDC
try using p/Invoke GetWindowDC
这是我不久前使用的一些测试代码。有一段时间没有运行了,但请随意看看。希望这能让您朝着正确的方向前进。请注意,这只是一个概念证明。在投入生产之前,您需要更改一些内容(例如 Thread.Sleep)。
This is some test code that I was using a while back. Have not ran it in a while but feel free to take a look. Hope this puts you in the right direction. Note that this is just a proof of concept. There are some stuff you would want to change before putting into productions (such as the Thread.Sleep).