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?

Markdown: Nested Code Block How to render a markdown code block inside another
2020.10.19
Nextcloud: Mount as a Folder How to mount your Nextcloud account as a regular folder on Linux
2021.05.02
New project: a11y translator! My first p5t using S4e!
2024.08.14