Last active
July 28, 2023 16:03
-
-
Save Edwardtonnn/5bf571cde3bf019a4fdc1aa7dc1e3a6e to your computer and use it in GitHub Desktop.
Convert all img file types to jpg keep same name
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
for %f in (*.webp *.png *.jpeg) do magick "%f" "%~nf.jpg" & del "%f" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment