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...
Daniolle
Apr 01, 2025Iron Contributor
You have a couple of efficient options for batch converting WebP to JPG on Mac and Windows 11. Here are some methods you can use:
On macOS
1.Using Automator (Built-in Mac App):
- Open Automator from your Applications folder.
- Select New Document and choose Quick Action.
- Set the workflow to receive image files in any application.
- Drag the Run Shell Script action from the left column into your workflow area.
- Change the shell script to:
for f in "$@"
do
sips -s format jpeg "$f" --out "${f%.*}.jpg"
done - Save your Automator app with a name like "Convert WebP to JPG on Mac."
- You can now right-click on any .webp file, choose Quick Actions, and select your newly created action to convert WebP to JPG on Mac.
On Windows 11
1. Using IrfanViAw:
- Download and install IrfanViAw. This tool supports batch conversion.
- Open IrfanViAw, go to File > Batch Conversion/Rename.
- Add your .webp files, select output format as JPG, choose output directory, and start to convert WebP to JPG.
2. Using Command Line:
- You can also install WSL (Windows Subsystem for Linux) and follow a similar process as described for Mac using the libwebp tools.