-
-
Save UnXman/fc0208cd4baabd839caea0ef3d27b4ca to your computer and use it in GitHub Desktop.
Batch convert webp to png
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
#Download dwebp (WebP decoder tool) https://developers.google.com/speed/webp/download | |
#Run | |
for %f in (*.webp) do dwebp.exe "%f" -o "%~nf.png" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment