Skip to content

Instantly share code, notes, and snippets.

@violethair
Created July 31, 2021 22:02
Show Gist options
  • Select an option

  • Save violethair/3ce7c96c2e65b9cb03f682d3061f52cd to your computer and use it in GitHub Desktop.

Select an option

Save violethair/3ce7c96c2e65b9cb03f682d3061f52cd to your computer and use it in GitHub Desktop.
Convert PNG to WEBP folder
# Copy and paste this to PowerSell
$dir = "path_input"
$images = Get-ChildItem $dir
foreach ($img in $images) {
$outputName = 'path_output' + $img.BaseName + ".webp"
cwebp $img.FullName -q 100 -alpha_q 100 -m 6 -o $outputName
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment