Generated image
|| #resource #automation

Convert WEBP to JPG

Quickly convert WEBP images to a more standard JPG format

Step 1: Install dwebp (part of webp package)

apt install webp

Step 2: Convert Files

dwebp image.webp -o image.jpg

Converting in bulk:

for file in $(ls *.webp); do dwebp $file -o $file.jpg; done

This will convert all files in the current folder (with the .webp extension) to JPG and append .jpg to the file name.

Related


Maybe try another one?

Terminal PDF Manipulation Splitting, merging, and compressing PDF files
2022.09.17
Go: Embed Static Assets Embedding static assets in a go binary for easy distribution
2021.09.12
Speeding up my website Reducing the size of my website by 60% 🚀
2024.08.20