# WebP frosty

# Convert Images to the WebP Format

  1. Go to the root folder of toadsworth and install cwebp (opens new window) from Google running:
make install-cwebp
  1. 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