Convert RAW to JPEG on a Mac (Any Camera, 2026)
You have a RAW file — .ARW, .CR3, .NEF, .RAF, whatever your camera writes — and something just refused it: a print shop, a client portal, a forum upload. You need a JPEG (same thing as a JPG — one format, two spellings). Your Mac can make one without installing anything, and the method is the same no matter which brand's RAW you're holding. Here are four ways, from a single file in Preview to a whole card in Terminal.
The short version
| Situation | Use |
|---|---|
| One file, right now | Preview (File > Export) |
| A handful, and you want them in your library | Photos (import, then export) |
| A whole folder | sips in Terminal |
| You want to edit before converting | A RAW editor such as RevelRaw |
Method 1: Preview
- Double-click the RAW file. It opens in Preview.
- Choose File > Export…
- Set Format to JPEG, drag the Quality slider toward Best, and save.
Preview exports at full resolution and takes about ten seconds, and it works identically for every RAW format macOS supports — Sony, Canon, Nikon, Fujifilm, Panasonic, Olympus and the rest share one system decoder. Two caveats. Preview renders Apple's default interpretation of the file, with none of your intent in it. And if your camera is recently released, Preview may refuse the file until Apple ships RAW support for that body — the fix for that is in the format-specific guides below.
Method 2: Photos
- Drag the RAW files into Photos.
- Select them, then choose File > Export > Export Photos…
- Pick JPEG, set quality to Maximum, and choose a destination.
Photos handles several files at once and remembers them in your library, which you may want or may resent. The import step copies every RAW into the library bundle, so a 400-shot card costs you the disk space twice. Same rendering caveat as Preview: Apple's interpretation, unedited.
Method 3: sips, for whole folders
macOS ships with a command-line image tool called sips. Open Terminal, cd into the folder with your RAW files, and run (swap the extension for your camera's):
sips -s format jpeg -s formatOptions 90 photo.NEF --out photo.jpg
To convert every RAW in the folder — this example takes Canon files, change CR3 to your extension:
for f in *.CR3; do
sips -s format jpeg -s formatOptions 90 "$f" --out "${f%.CR3}.jpg"
done
The formatOptions number is JPEG quality from 0 to 100. This uses the same macOS RAW engine as Preview, so the rendering and the new-camera limitation match, but it chews through a full card while you make coffee. No installs, no uploads, nothing leaves your Mac.
Method 4: Edit first, then export
Our app, so judge accordingly. The three methods above convert the file; none of them let you decide how the photograph looks first. RevelRaw is a native macOS editor for every major camera brand — 24 RAW formats through one pipeline. Drop the file in, AI scene detection ranks 40+ presets against the photo, you fine-tune with the standard controls, and export JPEG with the choices that matter: quality, sRGB or Display P3 or Adobe RGB, and size presets for Instagram, print or web. The free download includes one full-quality export, so you can run a real file through before paying anything.
If you just need a fast, faithful copy of what the camera saw, use Preview or sips and keep your money. Reach for an editor when the JPEG is the finished product.
"Without losing quality," honestly
JPEG compresses by discarding data, so every conversion loses something. You control how much:
- Quality 85 to 90. Below 80 you invite banding in skies; above 92 the file balloons for gains you can't see. 90 is a safe default.
- sRGB for anything going online. Browsers and phone screens assume it. Wide-gamut exports look dull once a platform strips the profile. Our Instagram export guide has the full recipe.
- Keep the RAW. It's the negative. As long as it exists, the JPEG is disposable and you can re-export at any settings later.
Format-specific guides
Each brand's RAW has its own quirks — compression flavors, in-camera looks stored as metadata, free manufacturer software worth knowing about:
- Sony: convert ARW to JPEG · open ARW files
- Canon: convert CR3 to JPEG · open CR3 files
- Nikon: open NEF files
- All brands: every RAW format RevelRaw opens
FAQ
How do I convert RAW to JPEG on a Mac for free?
Open the file in Preview, choose File > Export, pick JPEG and set the quality slider. For a whole folder, use the sips loop above. Both ship with macOS and work for any supported camera brand.
Is JPG different from JPEG?
No — same format, two spellings. The three-letter version is a leftover from old Windows file-name limits.
Does converting RAW to JPEG lose quality?
Yes, by design; JPEG discards data to shrink the file. At quality 85 to 90 the loss is invisible on screens and in most prints. Keep the RAW as your negative and you lose nothing permanently.
Why won't my RAW file convert?
If Preview can't open it, macOS doesn't support that camera yet — common for just-released bodies. Your camera maker's free software (Canon DPP, Nikon NX Studio, Sony Imaging Edge) reads its own brand's files in the meantime, or a dedicated editor with its own decoder skips the wait.
Edit it before you convert it. Download RevelRaw, drop in a RAW from any major brand, and export one finished JPEG at full quality on the house. Get it on the Mac App Store (requires macOS 26 or later).
Related reading: All RAW formats RevelRaw opens · ARW vs JPEG: what RAW buys you · Instagram export settings