Batch resize image on windows 11 using powershell
This script below work as resize all image with jpg, jpeg, JPG, JPEG extension inside folder and subfolder save the result into ‘web’ folder at same folder as this script make file with ps1 extension Add-Type -AssemblyName System.Drawing $w = 300 $h = 400 $quality = 70 # JPEG quality 0–100 $root = Get-Location $outDir […]