3 lines
141 B
PowerShell
Raw Normal View History

2023-12-21 20:58:00 -05:00
Get-ChildItem -Path "*.png" | ForEach-Object {
magick.exe convert $_.FullName -interpolate Integer -filter point -resize "50%" $_.FullName
}