Forum Discussion
ViggoBear
Apr 01, 2025Iron Contributor
How do you convert Webp to JPG on mac or Windows 11?
Hello everyone, I usually use an HP Windows 11 laptop. I have always used tools to batch convert WebP images into JPG, which is quite convenient. But this time I just happened to have a Mac, and I ha...
Asainna
Apr 01, 2025Bronze Contributor
If you are a Mac user, you can directly convert WebP to JPG on mac format through terminal commands.
1. Open Terminal
Search and open Terminal in Spotlight.
2. Run the following command:
Assuming that your WebP images are stored in the ~/Pictures/webp/ folder, and you want to save the converted JPG images in the ~/Pictures/jpg/ folder:
bash
mkdir ~/Pictures/jpg # Create a JPG folder
for file in ~/Pictures/webp/*.webp; do sips -s format jpeg "$file" --out ~/Pictures/jpg/$(basename "$file" .webp).jpg; done
This command will automatically convert all WebP files to JPG format in batches and save them to the specified folder.