gpt4 book ai didi

powershell - 如何在 Windows PowerShell 中进行屏幕捕获?

转载 作者:行者123 更新时间:2023-12-03 08:35:47 25 4
gpt4 key购买 nike

如何在 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, 0, 1000, 900)
screenshot $bounds "C:\screenshot.png"

关于powershell - 如何在 Windows PowerShell 中进行屏幕捕获?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2969321/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com