# WebP frosty
# Convert Images to the WebP Format
- Go to the root folder of toadsworth and install cwebp (opens new window) from Google running:
make install-cwebp
- Go to the folder where you have the images to convert and run:
for F in *.png; do cwebp $F -o `basename ${F%.png}`.webp; done