Blog
Wild & Free Tools

Convert PNG to JPG on Mac — Free, No Extra Software Needed

Last updated: January 2026 7 min read
Quick Answer

Table of Contents

  1. Method 1: Browser converter (fastest)
  2. Method 2: Preview (built into macOS)
  3. Method 3: Terminal command (sips)
  4. Which method to use when
  5. Frequently Asked Questions

There are three free ways to convert PNG to JPG on a Mac, and none of them require downloading extra software. The fastest is a browser-based converter that takes about 10 seconds. Preview (built into every Mac) works too but has a clunkier interface. And if you like the terminal, macOS has a one-line command built in.

This guide covers all three methods so you can pick whichever fits your workflow. Each approach produces identical JPG output — the only differences are speed, batch capability, and how much control you get over quality settings.

Method 1: Browser-Based Converter (10 Seconds)

The quickest method on any Mac, regardless of macOS version:

  1. Open the PNG to JPG converter in Safari, Chrome, or Firefox
  2. Drag your PNG file from Finder directly into the browser window (or click to select)
  3. Set quality — the slider defaults to 90, which is excellent for most images
  4. Click Convert and download your JPG

This method handles multiple files at once (drag a group of PNGs), shows before/after file sizes, and lets you download everything as a ZIP. The image processes in your browser — nothing is uploaded anywhere.

Best for: quick conversions, batch processing, when you want to see file size savings before downloading.

Method 2: Using Preview (Built Into Every Mac)

Preview is already on your Mac. Here is how to use it for conversion:

  1. Double-click your PNG file to open it in Preview (if it opens in another app, right-click > Open With > Preview)
  2. Go to File > Export (not "Save As" — that keeps the original format)
  3. Change the Format dropdown to JPEG
  4. Adjust the Quality slider — Preview shows a preview of file size as you drag
  5. Click Save

Preview's advantage is the real-time file size preview as you adjust quality. Its downside is that it only handles one file at a time through this Export workflow.

Batch with Preview: You can select multiple PNGs in Finder, open them all in Preview (they appear in a sidebar), then use File > Export Selected Images. Set format to JPEG and choose a destination folder. It works but the quality control is limited — you cannot set an exact quality number, just drag a slider without precise values.

Sell Custom Apparel — We Handle Printing & Free Shipping

Method 3: Terminal One-Liner With sips

macOS ships with sips (Scriptable Image Processing System), a command-line tool that handles format conversion:

Single file:

sips -s format jpeg screenshot.png --out screenshot.jpg

Entire folder of PNGs:

for f in *.png; do sips -s format jpeg "$f" --out "$(basename "$f" .png).jpg"; done

With quality control:

sips -s format jpeg -s formatOptions 90 screenshot.png --out screenshot.jpg

The formatOptions value ranges from 0-100, where 100 is highest quality. sips is fast, scriptable, and great for automation. The downside is zero visual feedback — you will not see file sizes or quality previews until you check the output manually.

Power users who prefer the command line might also be interested in ImageMagick (magick convert) or browser-native processing engine, which offer more advanced options like resizing during conversion.

Quick Decision: Which Method For Your Situation

SituationBest MethodWhy
Quick one-off conversionBrowser toolFastest — no menu diving
Need to see file size preview before savingPreviewReal-time size estimate as you adjust quality
Converting 20+ files at onceBrowser toolDrag all files, one-click ZIP download
Automating in a script or cron jobTerminal (sips)Scriptable, no GUI needed
Already have the file open in PreviewPreviewFile > Export is right there

For most Mac users, the browser tool is the fastest path for occasional conversions and the best option for batches. Preview is convenient when you already have the file open. Terminal is for power users and automation.

If your images are headed for a website, consider converting to WebP instead — it produces even smaller files than JPG and is supported by all modern browsers. Our website image format guide covers the full comparison.

Convert PNG to JPG on Your Mac — Free, Instant

Works in Safari, Chrome, or any browser. Quality slider, batch support, ZIP download.

Open Free PNG to JPG Converter

Frequently Asked Questions

Does Mac have a built-in PNG to JPG converter?

Yes. Preview (built into every Mac) can convert PNG to JPG via File > Export. macOS also includes the sips command-line tool that converts formats in Terminal. Neither requires any additional software.

How do I batch convert PNG to JPG on Mac?

The fastest way is a browser-based converter — drag all your PNGs at once and download the JPGs as a ZIP. You can also use Preview (open multiple files, File > Export Selected) or a terminal one-liner with sips.

Can I convert PNG to JPG on Mac without losing quality?

Set quality to 90-95 and the output will be visually identical to the original. JPG is technically lossy, but at high quality settings the difference is invisible. For mathematically lossless output, use WebP instead.

What is the Terminal command to convert PNG to JPG on Mac?

Run: sips -s format jpeg -s formatOptions 90 input.png --out output.jpg. Replace 90 with your desired quality (0-100). For an entire folder: for f in *.png; do sips -s format jpeg "$f" --out "$(basename "$f" .png).jpg"; done

Carlos Mendez
Carlos Mendez Photo Editing & Image Writer

Carlos has been a freelance photographer and photo editor for a decade, working with clients from local businesses to regional magazines.

More articles by Carlos →
Launch Your Own Clothing Brand — No Inventory, No Risk