By

How to Convert RAW to JPEG on Mac — Fast Batch Method

Shooting in RAW but need JPEG? Convert CR2, NEF, ARW, RAF, and other RAW files to JPEG on Mac in seconds — three methods including free built-in tools and a 500-photo batch option.

Quick Answer

To convert RAW to JPEG on Mac: for under 20 files, open them in Preview → File → Export → JPEG (free, built in). For scriptable workflows, use sips in Terminal. For 20+ files, or when you also need to resize, watermark, or rename in one pass, use a dedicated batch editor like RapidPhoto — import up to 500 RAW files at once, set exact JPEG quality (1–100%), pick your color space, and export in seconds.

If you shoot in RAW, you already know the tradeoff: maximum image quality and editing headroom, but files that are large, slow to share, and incompatible with most websites, apps, and clients who just need a JPEG.

Whether you're delivering a shoot, uploading to a stock site, or posting to social media, at some point every RAW file needs to become a JPEG. Here are three ways to do it on Mac — from a quick free method to a batch workflow that handles hundreds of files at once.

What Is RAW and Why Do You Need to Convert It?

A RAW file is unprocessed sensor data — the camera captures everything and leaves all the decisions (white balance, sharpening, noise reduction, color grading) to you and your editing software. That's what makes it so valuable for post-processing.

The problem is that RAW is not a universal format. Unlike JPEG, which any app, browser, or device can display, RAW files require a decoder that understands your specific camera's proprietary format. That means:

  • Most websites won't accept RAW uploads
  • Clients, printers, and social platforms expect JPEG or PNG
  • RAW files are 3–6x larger than equivalent JPEGs
  • Sharing via email or messaging apps is impractical

Converting to JPEG is the standard handoff step at the end of any RAW editing workflow.

RAW Formats by Camera Brand

Every camera manufacturer uses its own RAW format. macOS supports most of them natively through its built-in RAW decoder, so you don't need to install extra software for the conversions below.

Brand RAW Extension macOS Native Support
Canon.CR2, .CR3Yes (CR2 fully; CR3 on macOS 14+)
Nikon.NEF, .NRWYes
Sony.ARWYes
Fujifilm.RAFYes
Olympus / OM System.ORFYes
Panasonic.RW2Yes
Leica.DNGYes
Adobe DNG.DNGYes

If your camera model is very new, macOS may not have updated its RAW decoder yet. In that case, the Terminal method may fail — use a dedicated editor like RapidPhoto or Lightroom, which ships its own decoder (Adobe Camera Raw) updated monthly.

Method 1: Preview App (Free, Small Batches)

macOS Preview can open RAW files and export them as JPEG. It's the fastest option for a handful of files:

  1. Select your RAW files in Finder
  2. Open them in Preview (right-click → Open With → Preview)
  3. In Preview, go to File → Export
  4. Set the format to JPEG
  5. Drag the Quality slider to your preferred setting (75–90 is a good range)
  6. Click Save

To convert multiple files at once in Preview: select all thumbnails in the sidebar, then File → Export Selected Images. Choose JPEG and a destination folder — Preview will batch export all of them.

Pros: Free, no setup, visual quality preview before saving, color space handled automatically.

Cons: Slow with large batches (Preview isn't optimized for bulk export), no rename or resize options, quality slider isn't labeled with exact percentages.

Method 2: sips Command Line (Free, Scriptable)

macOS ships with sips (Scriptable Image Processing System), a Terminal command that can batch convert RAW files. Open Terminal and navigate to your RAW folder, then run:

for file in *.CR2; do sips -s format jpeg "$file" --out "${file%.CR2}.jpg"; done

Replace CR2 with your camera's RAW extension (NEF, ARW, RAF, etc.). To convert a mixed folder of RAW formats at once:

for file in *.CR2 *.NEF *.ARW *.RAF *.ORF; do sips -s format jpeg "$file" --out "$(basename "$file" | sed 's/\.[^.]*$//').jpg"; done

To set JPEG quality (0–100):

for file in *.NEF; do sips -s format jpeg -s formatOptions 90 "$file" --out "${file%.NEF}.jpg"; done

To output converted files to a separate folder (so originals stay untouched):

mkdir -p converted && for file in *.ARW; do sips -s format jpeg "$file" --out "converted/${file%.ARW}.jpg"; done

Pros: Free, fast, fully scriptable, precise quality control, can be integrated into Automator or shell scripts.

Cons: Requires Terminal comfort, easy to make path mistakes, no visual preview, no editing capabilities — just conversion.

Method 3: Batch Photo Editor (Recommended for Regular Use)

If you convert RAW files regularly — especially if you also need to crop, resize, watermark, or rename them before delivery — a dedicated batch editor handles everything in one pass. Here's how it works with RapidPhoto:

  1. Import: Drag your RAW files into RapidPhoto (up to 500 at once — CR2, NEF, ARW, RAF, ORF, DNG all supported)
  2. Edit (optional): Crop to a specific ratio, resize to target dimensions, add a watermark, or apply a batch rename — all in the same session
  3. Export: Choose JPEG as the output format, set quality (1–100%), pick your color space (sRGB for web, Adobe RGB for print, Display P3 for Apple devices), and select an output folder
  4. Done: All files converted and saved in seconds with GPU acceleration

The key advantage over the free methods: you combine conversion with editing in a single pass, get exact quality control, choose your color space explicitly, and process hundreds of files without writing a script.

Preserving Quality During Conversion

RAW to JPEG is a one-way conversion. JPEG is a lossy format — once you export, some image data is discarded. You can't recover it by going back to JPEG and re-editing. A few principles to protect quality:

  • Always keep your RAW originals. Export JPEGs as copies into a separate folder. Never delete the RAW files until you're sure you don't need to re-edit.
  • Use 85–95% JPEG quality. At 85%, compression artifacts are virtually invisible. Below 75%, banding and blocking start to appear in smooth gradients and skies. 92–95% is nearly indistinguishable from lossless for most prints and screens.
  • Match color space to your destination. RAW files often contain wide-gamut color (Display P3 or ProPhoto RGB). Exporting to sRGB is standard for web and most printing services. If your print lab accepts Adobe RGB, use that — it preserves more color in shadows and saturated tones.
  • Don't re-convert. If you convert RAW → JPEG → JPEG, each JPEG encoding adds another round of lossy compression. Convert once to your final format.
  • Consider DNG as an intermediate. If you need to share an editable file (not a final JPEG), DNG is an open RAW format most editors can read. It's smaller than a proprietary RAW file and more portable than CR2 or NEF.

Batch Convert RAW to JPEG: Quick Reference

Method Best For Max Batch Quality Control Combined Editing Price
PreviewUnder 20 files, one-off~20Slider (no %)NoFree
sips (Terminal)Scriptable workflowsUnlimitedYes (0–100)NoFree
RapidPhotoRegular use, combined edits500Yes (1–100%)YesFree / $29.99 Pro

Bottom Line

For a one-off conversion of a few RAW files, Preview gets the job done without any setup. If you need scripted automation, sips in Terminal is fast and free. For regular use — or any time you want to combine conversion with cropping, resizing, watermarking, or renaming in a single pass — RapidPhoto handles it all on your Mac, without uploading your photos anywhere.

Download RapidPhoto free to convert up to 10 RAW files per batch, or upgrade to Pro for 500 files, all export formats, and full editing tools.

Try RapidPhoto Free

Batch edit up to 10 photos free. Pro unlocks 500 photos, AI tools, and 100+ effects for a one-time $29.99.

Download on the Mac App Store