我发现代码在某个地方,我发现它非常有用,但我想找到一种方法使其工作,因此它只捕获给定的窗口目标.也许使用processID或Window Name.即使该窗口未激活.
我不想让那个窗口处于活动状态但想要获得一个屏幕截图,就像我在它上面做Alt PrintScreen一样.
以下是适用于全屏捕获的代码
Private bmpScreenShot As Bitmap Private gfxScreenshot As Graphics bmpScreenShot = New Bitmap(Screen.PrimaryScreen.Bounds.Width,Screen.PrimaryScreen.Bounds.Height,PixelFormat.Format32bppArgb) gfxScreenshot = Graphics.FromImage(bmpScreenShot) gfxScreenshot.CopyFromScreen(Screen.PrimaryScreen.Bounds.X,Screen.PrimaryScreen.Bounds.Y,Screen.PrimaryScreen.Bounds.Size,CopyPixelOperation.SourceCopy) bmpScreenShot.Save(fileName,ImageFormat.Png)
我使用Visual Basic 2008 Express
先谢谢你!
看看这个
Capture screenshot of active window? 而不是this.Handle(当前窗口)你可以插入任何其他窗口的句柄(使用像FindWindow这样的WinAPI函数)
原文链接:https://www.f2er.com/vb/255944.html