How to Convert PNG to JPG on Mac: 4 Free Methods
For one file, open the PNG in Preview and use File → Export As → JPEG with quality 85. For batches, build an Automator Quick Action that converts a whole folder with one click.
Step-by-step
Open the PNG in Preview and export as JPEG
Mac's built-in Preview app is the fastest single-file converter and most Mac users never realize it. Open the PNG in Preview (double-click in Finder), then choose File → Export As → JPEG. A quality slider appears with options from Low to Best — "Best" is roughly equivalent to quality 95 and is overkill for most uses. Drag the slider to about 80-85% for the standard trade-off between size and quality. Click Save and Preview writes a new JPG alongside the original PNG. Photopea is the closest browser-based equivalent if Preview is unavailable. The whole process takes about 10 seconds per image.
Build an Automator Quick Action for folder conversion
Open Automator (built into macOS), create a new Quick Action, and add the Render Images action with Format set to JPEG. Save the Quick Action — it now appears in Finder's right-click menu under Quick Actions. Right-click any folder of PNGs, choose the Quick Action, and Automator converts every PNG to JPG in place. This is the most powerful native Mac batch workflow and stays completely offline. Reusable forever, no uploads, no third-party tools.
Use a dedicated Mac app for quality control and previews
If you need a quality slider, side-by-side comparison, or batch settings beyond what Automator offers, install iMazing Converter or Photopea (browser-based, runs locally). iMazing gives you per-folder quality settings, EXIF preservation, and the ability to rename output files with a pattern. Both are free for basic use. For photographers who already use Capture One or Affinity Photo, the built-in Export dialog also handles PNG-to-JPG with full quality control.
Run a Terminal one-liner for scripted batches
Mac comes with the `sips` command built in — open Terminal and run `sips -s format jpeg -s formatOptions 85 *.png --out ~/Desktop/jpg-output/` to convert every PNG in a folder to JPG at quality 85. For more advanced options, install ImageMagick via Homebrew and run `magick mogrify -format jpg -quality 85 *.png`. Both methods are scriptable — chain them with a cron job or a folder action to fully automate recurring conversions.
Verify the JPGs and clean up
After conversion, open a few output files in Preview to confirm quality and verify the originals are untouched. Mac-native conversion typically shrinks PNG photos by 60-80% at quality 85. If you used Automator's Quick Action, the originals stay in place by default — check that the new files appear in the same folder or your chosen output location. Tools like iMazing Converter show file-count and size summaries for batch jobs to make verification easier. Delete the source PNGs only after spot-checking at least three JPGs at 100% zoom in Preview.
Recommended Tools