Skip to content

Instantly share code, notes, and snippets.

@Edwardtonnn
Last active July 28, 2023 16:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Edwardtonnn/5bf571cde3bf019a4fdc1aa7dc1e3a6e to your computer and use it in GitHub Desktop.
Save Edwardtonnn/5bf571cde3bf019a4fdc1aa7dc1e3a6e to your computer and use it in GitHub Desktop.
Convert all img file types to jpg keep same name
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