Skip to content

Instantly share code, notes, and snippets.

@coskuntekin
Created October 19, 2022 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coskuntekin/c8c51e8e1bd4023208afa528801d9d5a to your computer and use it in GitHub Desktop.
Save coskuntekin/c8c51e8e1bd4023208afa528801d9d5a to your computer and use it in GitHub Desktop.
Convert PNG to WebP
for f in *.png ; do magick "$f" -quality 50 -define webp:lossless=true "${f%.png}.webp" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment