如何在Windows PowerShell中进行屏幕截图?

前端之家收集整理的这篇文章主要介绍了如何在Windows PowerShell中进行屏幕截图?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在Windows PowerShell中捕获屏幕?我需要能够将屏幕保存到磁盘。
您也可以使用.NET以截图进行截图(这样可以更精细的控制):
[Reflection.Assembly]::LoadWithPartialName("System.Drawing")
function screenshot([Drawing.Rectangle]$bounds,$path) {
   $bmp = New-Object Drawing.Bitmap $bounds.width,$bounds.height
   $graphics = [Drawing.Graphics]::FromImage($bmp)

   $graphics.CopyFromScreen($bounds.Location,[Drawing.Point]::Empty,$bounds.size)

   $bmp.Save($path)

   $graphics.Dispose()
   $bmp.Dispose()
}

$bounds = [Drawing.Rectangle]::FromLTRB(0,1000,900)
screenshot $bounds "C:\screenshot.png"
原文链接:https://www.f2er.com/windows/373127.html

猜你在找的Windows相关文章