有一个需求,程序运行过程中,定时进行一次截图。
开始的时候,采用的全屏截图的方式
Rectangle bounds = Screen.GetBounds(Point.Empty);
using (Bitmap bitmap = new Bitmap(bounds.Width, bounds.Height))
{
using (Graphics g = Graphics.FromImage(bitmap))
{
g.CopyFromScreen(Point.Empty, Point.Empty, bounds.Size);
}
bitmap.Save("capture.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
}
但是在虚拟机后台运行时中,会出现无效句柄的异常(远程桌面操作没有问题)。
参考了一下源码,CopyFromScreen方法中,会通过GetDC获取屏幕句柄,但虚拟机中获取会出错。推测是虚拟机中屏幕出于非激活状态,就无法通过句柄获取,导致出错。
最后,参考https://www.cnblogs.com/kybs0/p/15768990.html,通过获取窗口句柄,打印窗体的方式,来生成截图,来达到效果。