使用 Windows 10 PowerShell 批量调整目录中所有图像的大小

使用 Windows 10 PowerShell 批量调整目录中所有图像的大小

您能否告诉我是否可以使用 Windows 10 PowerShell 命令批量调整文件夹中所有图像的大小

$path = "D:/imgs/Nature" #target directory

[System.Reflection.Assembly]::LoadWithPartialName("System.Drawing")
Get-ChildItem -recurse ($path) -include @("*.png", "*.jpg") |
ForEach-Object {
  $image = [System.Drawing.image]::FromFile( $_ )
}

相关内容