FormatDrop
How-To Guide

How to Convert WebP to JPG on Mac

macOS Monterey (12) and later added native WebP support to Preview, making WebP-to-JPG conversion trivial. On older macOS versions, sips and FFmpeg are the go-to solutions. This guide covers all three approaches.

Step-by-step instructions

  1. 1

    Convert with Preview (macOS Monterey+)

    Open the WebP file in Preview (double-click, or right-click → Open With → Preview). Go to File → Export. Set Format to JPEG. Adjust the Quality slider (85–90% recommended). Choose a location and click Save. On macOS Ventura and Sonoma, Preview handles WebP natively at full quality.

    Go to converter
  2. 2

    Convert with sips (macOS Ventura+)

    Open Terminal. Single file: `sips -s format jpeg input.webp --out output.jpg`. Batch convert a folder: `for f in *.webp; do sips -s format jpeg "$f" --out "${f%.webp}.jpg"; done`. sips WebP support was added in macOS 13 Ventura. On older macOS, use FFmpeg instead.

  3. 3

    Convert with FFmpeg (older macOS or batch)

    Install FFmpeg via Homebrew: `brew install ffmpeg`. Single file: `ffmpeg -i input.webp output.jpg`. Control quality: `ffmpeg -i input.webp -q:v 2 output.jpg` (1=best, 31=worst; 2–5 is high quality). Batch: `for f in *.webp; do ffmpeg -i "$f" "${f%.webp}.jpg"; done`.

  4. 4

    Verify the output

    Open the JPG in Preview to confirm quality. WebP transparency (if any) appears as white in the JPG. Check file sizes — JPG may be larger than WebP for photographs since WebP has better compression. If size is critical, compare WebP vs JPG visually at the same quality setting.

Why convert WebP to JPG?

WebP is the modern web format, but older apps, email clients, and image editors don't support it. Converting WebP to JPG gives you a universally compatible image for any workflow.

Your files never leave your device

FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.

Frequently asked questions

Can Preview open WebP files on older macOS?
Native WebP support in Preview was added in macOS 12 Monterey. On older versions (Catalina, Big Sur), Preview cannot open WebP. Use FFmpeg, an online converter, or a third-party app like Permute to handle WebP on older macOS.
Why is my JPG larger than the WebP?
WebP typically achieves 25–35% smaller file sizes than JPG at equivalent visual quality. When you convert WebP to JPG, the JPG is usually larger at the same quality level. This is expected — you're trading WebP's superior compression for broader JPG compatibility.
How do I batch convert WebP to JPG on Mac?
Using Terminal with sips (macOS 13+): `for f in *.webp; do sips -s format jpeg "$f" --out "${f%.webp}.jpg"; done`. Or with FFmpeg (all versions): `for f in *.webp; do ffmpeg -i "$f" "${f%.webp}.jpg"; done`. Automator Quick Action can also batch-convert WebP if you add the Change Type of Images action.
Convert WebP to JPG Now — Free

No account. No upload. Works in any browser.