C# Which is the fastest way to take a screen shot?

后端 未结 3 1542
再見小時候
再見小時候 2020-12-09 06:06

I am implementing a feature that will take screen shot repeatedly and output dirty rectangles between 2 different shots then send re-draw the screen in a window.

I c

3条回答
  •  醉酒成梦
    2020-12-09 06:17

    For alternative to CopyFromScreen() check this. Note that the Graphics.CopyFromScreen() itself calls the API BitBlt() to copy from screen, you can check the source code using Reflector.

提交回复
热议问题