How to Convert CR3 to JPEG on a Mac (2026 Guide)

A print shop, a client portal, or a forum upload just refused your .CR3 file, and now you need a JPEG. Your Mac can make one without installing anything. Here are four ways to do it, from a single file in Preview to a whole card in Terminal, plus the settings that keep the result looking like your photograph.

The short version

SituationUse
One file, right nowPreview (File > Export)
A handful, and you want them in your libraryPhotos (import, then export)
A whole foldersips in Terminal
You want to edit before convertingA RAW editor such as RevelRaw

Method 1: Preview

  1. Double-click the .CR3 file. It opens in Preview.
  2. Choose File > Export…
  3. Set Format to JPEG, drag the Quality slider toward Best, and save.

Preview exports at full resolution and takes about ten seconds. Two caveats. Preview renders Apple's default interpretation of the RAW data — not your Picture Style, and none of your intent. And if your Canon is a recently released body, Preview may refuse the file until Apple ships RAW support for it; our guide to opening CR3 files on a Mac covers the workarounds, including Canon's free Digital Photo Professional, which reads every CR3 regardless of what macOS knows.

Method 2: Photos

  1. Drag the CR3 files into Photos.
  2. Select them, then choose File > Export > Export Photos…
  3. 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 — worth knowing if you shoot C-RAW precisely to save that space. 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:

sips -s format jpeg -s formatOptions 90 photo.CR3 --out photo.jpg

To convert every CR3 file in the folder:

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. Both RAW and C-RAW flavors convert identically. 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. It decodes the .CR3, ranks 40+ presets against the scene it detects in your photo, gives you the standard controls to fine-tune, and then exports 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 — or Canon's DPP if you want the Picture Style rendered. 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:

FAQ

How do I convert CR3 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, run sips -s format jpeg -s formatOptions 90 photo.CR3 --out photo.jpg in Terminal. Both ship with macOS. Canon's free Digital Photo Professional also converts, with your Picture Style rendered.

Does converting CR3 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 original CR3 as your negative and you lose nothing permanently.

Do RAW and C-RAW convert differently?

No. Both are CR3 files and every method on this page treats them identically. C-RAW's compression already happened in the camera; conversion to JPEG works the same from either flavor.

Why won't my CR3 file open in Preview?

Apple adds RAW support for new bodies through macOS updates, so files from a recently released Canon can fail in Preview and Photos until an update lands. Canon's DPP reads every CR3 today, and a dedicated editor with its own decoder doesn't wait on Apple's camera list.

Edit it before you convert it. Download RevelRaw, drop in a .CR3, 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: Canon RAW editing on a Mac · How to open CR3 files on a Mac · What is a CR3 file? · Best editing software for the Canon EOS R6 Mark II