Last active
March 29, 2022 09:18
-
-
Save vheidari/a92db15c849e50d3898515588f18764c to your computer and use it in GitHub Desktop.
Webp format to Png with Windows batch script and dwebp.exe
This file contains 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
@echo off | |
set list=*.webp | |
(for %%a in (%list%) do ( | |
dwebp.exe %%a -o %%a.png | |
)) | |
echo "All .webp file converted to .png" | |
echo "All most done !" | |
echo "Delete All .webp format" | |
del *.webp | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment