Forum Discussion
Aki_Davis
Jun 06, 2024Copper Contributor
How can I batch Convert WEBP to JPG on my Windows 11?
I'm looking for a way to batch convert WEBP images to JPG format on my Windows 11 PC. I have a large number of WEBP files that I need to convert into JPGs for easier compatibility with various applic...
Philip_Goetz
Jun 06, 2024Copper Contributor
There's a handy command-line utility known as dwebp which is perfect for decompressing WEBP files. If you have all the files you want to convert in a single directory, simply navigate to that directory using cd in your command prompt.
Once there, you can execute the following command:
for %f in (*.webp) do dwebp %f -o %f.jpg.
This command loops through all WEBP files in the directory and converts each one to a JPG file.
It’s always a bit satisfying to see that Windows can still handle those good old DOS commands!
Aki_Davis
Jun 06, 2024Copper Contributor
Thanks, but I hate to use command because my computer skills are average, I am afraid of corrupting my files! Any other suggestion to convert webp to JPG in bulk.