Skip to content

Instantly share code, notes, and snippets.

@vheidari
Last active March 29, 2022 09:18
Show Gist options
  • Save vheidari/a92db15c849e50d3898515588f18764c to your computer and use it in GitHub Desktop.
Save vheidari/a92db15c849e50d3898515588f18764c to your computer and use it in GitHub Desktop.
Webp format to Png with Windows batch script and dwebp.exe
@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