How to Convert WebP to JPG on Mac — 4 Free Methods

WebP is the modern web image format — smaller than JPEG, used everywhere online. But if you have downloaded a WebP image and need to open it in older Mac software, send it by email, or use it in a design tool that doesn't support WebP yet, you need to convert it to JPG first.

This guide covers four free methods to convert WebP to JPG on Mac — no paid software, no watermarks.

Method 1 — Convert WebP to JPG Free Online (Any Mac)

1
Convertlo — Browser-Based, No Upload
Fastest
  1. Open convertlo.pro/webp-to-jpg.html in Safari or Chrome.
  2. Drag and drop your WebP file onto the converter, or click Browse.
  3. Conversion runs entirely in your browser — the file never leaves your Mac.
  4. Click Download — your JPG is saved to your Downloads folder.

Works on all macOS versions. Supports files up to 50 MB. Batch conversion available for multiple WebP files at once.

Method 2 — Convert Using Preview (macOS Ventura and Later)

2
macOS Preview — Built-in, No Install
macOS 13+
  1. Open your WebP file in Preview (double-click, or right-click → Open With → Preview).
  2. Go to File → Export (not "Export as PDF").
  3. In the Format dropdown, select JPEG.
  4. Adjust the Quality slider if desired (85–90 recommended).
  5. Choose a save location and click Save.

Preview supports WebP on macOS Ventura (13) and later. On Monterey (12) or older, Preview cannot open WebP files — use Method 1 instead.

Method 3 — Convert Using Terminal (sips — All macOS Versions)

3
Terminal — sips Command (Built Into macOS)
All macOS
  1. Open Terminal (Applications → Utilities → Terminal, or Spotlight search "Terminal").
  2. Navigate to the folder containing your WebP file, or use the full path.
  3. Run this command to convert a single file:
sips -s format jpeg image.webp --out image.jpg

To convert all WebP files in the current folder at once:

mkdir -p jpgs && sips -s format jpeg *.webp --out jpgs/

This saves all converted JPG files into a subfolder called jpgs/. The sips command is built into every Mac — no installation needed. Works on all macOS versions including Monterey and older.

Method 4 — Batch Convert With Automator (No Terminal)

4
Automator — Batch Right-Click Converter
macOS 12+
  1. Open Automator (Applications → Automator).
  2. Choose Quick Action as the document type.
  3. Set "Workflow receives current" to image files in Finder.
  4. Search for "Change Type of Images" in the actions library and drag it in.
  5. When prompted, click Add to add a "Copy Finder Items" action first (to avoid overwriting originals).
  6. Set the output type to JPEG.
  7. Save the workflow as "Convert to JPG" (or any name you like).

Once saved, right-click any WebP file (or selection of files) in Finder → Quick Actions → Convert to JPG. The converted files appear in the same folder. This method is best for recurring batch conversions without opening a browser or Terminal.

Convert WebP to JPG — Free, Instant, Private

Drop your WebP file and download JPG in seconds — no upload, no signup, works on any Mac.

Which Method Should You Use?

Method Best for macOS Batch
1. Browser (Convertlo) Quickest — no setup All versions Yes
2. Preview Single files with quality control Ventura (13)+ Limited
3. Terminal (sips) Batch conversion, scripting All versions Yes — entire folders
4. Automator Recurring batch via right-click Monterey (12)+ Yes

Does Converting WebP to JPG Lose Quality?

WebP and JPG are both lossy formats. Converting between them re-encodes the image, which can introduce a small additional quality loss. In practice:

  • At quality 90% or higher — the difference is invisible. Use this for photos you care about.
  • At quality 80–85% — excellent quality, file size noticeably smaller. Recommended for most use cases.
  • At quality 70% — acceptable for web thumbnails and small images. Not for printing.
  • Below 70% — visible compression artefacts. Avoid unless file size is critical.

The sips terminal command does not let you set JPEG quality directly (it defaults to ~75%). For quality control, use the browser method (Convertlo) or Preview, both of which let you choose the quality level.

Frequently Asked Questions

Can Mac open WebP files?
macOS Ventura (13) and later can open WebP files natively in Preview and Quick Look. On Monterey (12) and earlier, Preview cannot open WebP — use a browser like Chrome or Safari to view WebP files, or convert them to JPG using one of the methods above.
How do I convert WebP to JPG on Mac for free?
The fastest method: open convertlo.pro/webp-to-jpg.html in your browser, drop the WebP file, and download the JPG — no software needed. Alternatively, use macOS Preview (File → Export → JPEG) on macOS Ventura or later, or the built-in sips command in Terminal: sips -s format jpeg image.webp --out image.jpg
Does converting WebP to JPG lose quality?
At quality 85–95%, the difference is invisible to most people. Both WebP and JPEG use lossy compression. Converting at high quality preserves all visible detail from the original WebP. Avoid re-converting multiple times as each conversion stacks a small quality loss.
Can I batch convert WebP to JPG on Mac?
Yes. The fastest batch method is the sips Terminal command: mkdir -p jpgs && sips -s format jpeg *.webp --out jpgs/ — this converts every WebP in the current folder. The Automator method also supports batch conversion via a right-click menu. Convertlo supports batch conversion in the browser too.
Why won't my WebP file open on Mac?
WebP support was added to macOS Preview in Ventura (13). On Monterey (12) and earlier, Preview cannot open WebP files — they appear as a blank icon or with an error. Fix: convert to JPG using a browser-based converter like Convertlo, open the file in Chrome or Firefox, or upgrade to macOS Ventura.
Will the converted JPG have the same dimensions as the original WebP?
Yes — all the methods above preserve the original image dimensions exactly. Only the file format and compression change. If you also need to resize the image, do that as a separate step after converting.