Created
September 11, 2019 15:20
-
-
Save gtallen1187/5b034305d255259932bdfba61a872174 to your computer and use it in GitHub Desktop.
Using Google's webp - https://developers.google.com/speed/webp/docs/using
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
# Convert TO webp | |
# cwebp docs - https://developers.google.com/speed/webp/docs/cwebp | |
cwebp -q 80 image.png -o image.webp | |
# Convert FROM webp | |
#dwebp docs - https://developers.google.com/speed/webp/docs/dwebp | |
dwebp image.webp -o image.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment