WebP to JPG/PNG WebP to JPG/PNG
Add to Chrome — Free

WebP to JPG/PNG Blog

How to Convert WebP to JPG on Mac (Preview, Terminal, and More)

Updated March 2026 · 6 min read

Quick Answer On macOS Ventura or later, open the WebP in Preview and use File → Export to save as JPG or PNG — no extra software needed. For any macOS version, use the built-in sips Terminal command or the WebP to JPG/PNG Converter Chrome extension. For bulk conversion, sips or ImageMagick handle entire folders at once.
📋 Table of Contents
📋 Table of Contents

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 — Free


macOS 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

  1. Double-click the WebP file to open it in Preview (or right-click → Open With → Preview).
  2. Go to File → Export.
  3. In the Format dropdown, select JPEG.
  4. Adjust the quality slider (85-95% recommended for high quality).
  5. Click Save.

Convert WebP to PNG using Preview (preserves transparency)

  1. Open the WebP file in Preview.
  2. Go to File → Export.
  3. Select PNG from the Format dropdown.
  4. Ensure the Alpha checkbox is checked if the image has transparency.
  5. Click Save.

Batch Export in Preview

Preview can convert multiple files at once:

  1. Select all WebP files in Finder and open them all in Preview.
  2. In Preview, select all images in the sidebar (Cmd+A).
  3. Go to File → Export Selected Images.
  4. Choose format (JPEG or PNG), set quality, and pick an output folder.
  5. 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 availability: 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

  1. Install the WebP to JPG/PNG Converter extension in Chrome.
  2. Navigate to any webpage with a WebP image.
  3. Right-click the image.
  4. Select Save as JPG or Save as PNG.
  5. 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:

  1. Open Automator (Applications → Automator).
  2. Create a new Quick Action.
  3. Set "Workflow receives current" to image files in Finder.
  4. Add a Run Shell Script action.
  5. Set Shell to /bin/bash and paste:
for f in "$@"; do
 dir=$(dirname "$f")
 base=$(basename "${f%.*}")
 sips -s format jpeg "$f" --out "$dir/$base.jpg"
done
  1. Save the Quick Action (name it "Convert to JPG").
  2. 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 Converter


Related Guides



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.

More Free Chrome Tools by Peak Productivity

Pomodoro Technique Timer
Pomodoro Technique Timer
25-minute focus timer with breaks
YouTube Looper Pro
YouTube Looper Pro
Loop any section of a YouTube video
Citation Generator
Citation Generator
Generate APA/MLA/Chicago citations
PDF Merge & Split
PDF Merge & Split
Merge and split PDFs locally
Auto Refresh Ultra
Auto Refresh Ultra
Auto-refresh pages at custom intervals
Screen Recorder Pro
Screen Recorder Pro
Record your screen or tab with audio