sips Terminal command or the WebP to JPG/PNG Converter Chrome extension. For bulk conversion, sips or ImageMagick handle entire folders at once.
- macOS WebP Support by Version
- Method 1: macOS Preview (Ventura and Later)
- Method 2: Terminal with sips (All macOS Versions)
- Method 3: Chrome Extension (Any macOS Version)
- Method 4: ImageMagick (For Power Users)
- Automator Quick Action (Convert WebP via Right-Click)
- Related Guides
- Frequently Asked Questions
- macOS WebP Support by Version
- Method 1: macOS Preview (Ventura and Later)
- Method 2: Terminal with sips (All macOS Versions)
- Method 3: Chrome Extension (Any macOS Version)
- Method 4: ImageMagick (For Power Users)
- Automator Quick Action (Convert WebP via Right-Click)
- Related Guides
- Frequently Asked Questions
Mac users have several strong options for converting WebP files, including tools built directly into macOS. Depending on your macOS version and whether you prefer a graphical or command-line approach, one of the methods below will fit your workflow.
Convert WebP Right from Your Browser
Works on any macOS version. Right-click any WebP image and save as JPG or PNG.
Add to Chrome — FreemacOS WebP Support by Version
| macOS Version | Preview | Quick Look | sips Command |
|---|---|---|---|
| Ventura 13 (2022+) | Full WebP support | WebP thumbnails | Full support |
| Monterey 12 | Limited support | No thumbnails | Partial support |
| Big Sur 11 | No native support | No thumbnails | No support |
| Catalina 10.15 and older | No native support | No thumbnails | No support |
Method 1: macOS Preview (Ventura and Later)
If you are on macOS Ventura or later, Preview can open WebP files and export them to other formats:
Convert WebP to JPG using Preview
- Double-click the WebP file to open it in Preview (or right-click → Open With → Preview).
- Go to File → Export.
- In the Format dropdown, select JPEG.
- Adjust the quality slider (85-95% recommended for high quality).
- Click Save.
Convert WebP to PNG using Preview (preserves transparency)
- Open the WebP file in Preview.
- Go to File → Export.
- Select PNG from the Format dropdown.
- Ensure the Alpha checkbox is checked if the image has transparency.
- Click Save.
Batch Export in Preview
Preview can convert multiple files at once:
- Select all WebP files in Finder and open them all in Preview.
- In Preview, select all images in the sidebar (Cmd+A).
- Go to File → Export Selected Images.
- Choose format (JPEG or PNG), set quality, and pick an output folder.
- Click Choose — all files convert simultaneously.
Method 2: Terminal with sips (All macOS Versions)
sips (Scriptable Image Processing System) is a command built into every version of macOS. Unlike Preview, it does not require WebP support from the system — it reads the file's internal format and processes it directly.
Single file conversion with sips
# Convert WebP to JPG
sips -s format jpeg input.webp --out output.jpg
# Convert WebP to PNG (preserves transparency)
sips -s format png input.webp --out output.png
# Convert with specific quality (0-100)
sips -s format jpeg -s formatOptions 90 input.webp --out output.jpg
Batch convert all WebP files in a folder
# Batch convert all WebP to JPG in current directory
for f in *.webp; do
sips -s format jpeg "$f" --out "${f%.webp}.jpg"
done
# Batch convert to PNG
for f in *.webp; do
sips -s format png "$f" --out "${f%.webp}.png"
done
# Batch convert all WebP in a specific folder
cd ~/Downloads/webp-images
for f in *.webp; do
sips -s format jpeg "$f" --out ~/Desktop/converted/"${f%.webp}.jpg"
done
sips is available on every macOS version — Leopard through Sequoia. No installation required. Open Terminal (Applications → Utilities → Terminal) and the command is ready to use.
Method 3: Chrome Extension (Any macOS Version)
The Chrome extension is the best option when you encounter a WebP image on a website and want to save it as JPG immediately, without downloading the WebP file first:
Save web WebP images as JPG on Mac
- Install the WebP to JPG/PNG Converter extension in Chrome.
- Navigate to any webpage with a WebP image.
- Right-click the image.
- Select Save as JPG or Save as PNG.
- The file downloads to your Mac's Downloads folder as a proper JPG or PNG.
This works on any macOS version — Big Sur, Catalina, Monterey, Ventura, Sequoia — because the conversion happens in the Chrome browser, not in macOS system apps.
Method 4: ImageMagick (For Power Users)
If you work with image conversion regularly on Mac, ImageMagick via Homebrew is the most flexible option:
# Install ImageMagick via Homebrew
brew install imagemagick
# Convert single WebP to JPG
magick input.webp output.jpg
# Convert with high quality setting
magick input.webp -quality 95 output.jpg
# Batch convert entire folder
magick mogrify -format jpg -quality 90 -path ./output *.webp
# Convert to PNG (preserves transparency)
magick input.webp output.png
Automator Quick Action (Convert WebP via Right-Click)
For frequent converters, macOS Automator can create a right-click menu option:
- Open Automator (Applications → Automator).
- Create a new Quick Action.
- Set "Workflow receives current" to image files in Finder.
- Add a Run Shell Script action.
- Set Shell to
/bin/bashand paste:
for f in "$@"; do
dir=$(dirname "$f")
base=$(basename "${f%.*}")
sips -s format jpeg "$f" --out "$dir/$base.jpg"
done
- Save the Quick Action (name it "Convert to JPG").
- Now right-click any WebP file in Finder → Quick Actions → Convert to JPG.
Convert WebP from Any Website on Mac
Faster than Terminal for one-off conversions. Works on any macOS version.
Install WebP to JPG ConverterRelated Guides
- Batch Convert Multiple WebP Files
- Convert WebP to PNG with Transparency
- WebP to JPG Without Quality Loss
- Convert WebP to JPG via Command Line
Frequently Asked Questions
Can Mac Preview open and convert WebP files?
Yes, on macOS Ventura (13) and later. Open the WebP in Preview, then go to File > Export and choose JPEG or PNG. On older macOS versions, Preview does not support WebP — use sips or the Chrome extension instead.
How do I convert WebP to JPG on Mac without any software installation?
Use the built-in sips command in Terminal: sips -s format jpeg input.webp --out output.jpg. This works on all macOS versions with no installation required. Alternatively, use the Chrome extension to convert directly from browser.
How do I batch convert WebP files to JPG on Mac using Terminal?
Navigate to the folder with your WebP files in Terminal, then run: for f in *.webp; do sips -s format jpeg "$f" --out "${f%.webp}.jpg"; done. This converts all WebP files in the current directory to JPG.
Does macOS support WebP natively?
macOS Ventura (13) and later support WebP in Preview and Quick Look. Older macOS versions (Monterey, Big Sur, Catalina) have limited or no native WebP support in system apps, though Chrome and Firefox support WebP on all macOS versions.
What is the sips command for WebP conversion on Mac?
Single file: sips -s format jpeg input.webp --out output.jpg. Batch convert: for f in *.webp; do sips -s format jpeg "$f" --out "${f%.webp}.jpg"; done. Sips is built into every macOS version.