Created
July 31, 2021 22:02
-
-
Save violethair/3ce7c96c2e65b9cb03f682d3061f52cd to your computer and use it in GitHub Desktop.
Convert PNG to WEBP folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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