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

You need a JPEG out of a Fujifilm RAW file: a lab order, a listing, a group chat that won't take a .RAF. Quick answer: Preview converts one RAF through File > Export, the built-in sips command converts a whole folder in Terminal, and both work when the camera wrote the file uncompressed and macOS knows the body. One thing to settle before you pick a method: your camera bakes a film simulation into its JPEGs, and the RAF carries none of that. Every converter on this page starts from neutral sensor data, so converting the file yourself means choosing the look yourself.

Three Fujifilm quirks that decide the method

Thirty seconds here saves a failed batch later.

The Fujifilm hub collects every Fuji guide on this site if you want the wider picture.

Match the method to the job

You haveConvert with
One uncompressed RAF, right nowPreview
A folder, no edits neededsips in Terminal
A need for the exact in-camera film simulationX RAW Studio, camera connected
Compressed RAF, or a body macOS doesn't know yetRAW FILE CONVERTER EX, or an editor with its own decoder
Photos you want edited before they become JPEGsA RAW editor such as RevelRaw

Method 1: Preview, one file at a time

  1. Double-click the .RAF. If it opens in Preview, you're clear to convert.
  2. Choose File > Export…
  3. Set Format to JPEG, push the Quality slider toward Best, and save.

Full resolution, ten seconds, nothing to install. The output is Apple's neutral rendering of the sensor data: fine for a record shot, flat next to the Velvia frame you remember shooting. And if the file shows a generic icon instead of opening, you've hit the compression rule or a body newer than your macOS RAW support; our guide to opening RAF files on a Mac walks through both.

Method 2: Photos, if you want a library copy

Drag the RAFs into Photos, select them, then File > Export > Export Photos… with JPEG at Maximum quality. Photos converts several at once and keeps the originals in its library, which doubles the disk those files occupy. It shares Preview's decoder, so the uncompressed-only rule and the neutral rendering carry over unchanged.

Method 3: sips, for a full folder

Terminal beats Preview the moment there's more than a handful. cd into the folder and convert one file:

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

Or every RAF in the folder:

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

formatOptions is JPEG quality, 0 to 100. sips uses the same macOS decoder as Preview, so compressed and lossless compressed RAF fail here too; run one test file before you point the loop at a card. Uncompressed RAF runs large (a 102-megapixel GFX frame lands around 200 MB), so a full folder takes a few minutes. Nothing uploads, nothing leaves your Mac.

Method 4: Fujifilm's free converters

Fujifilm gives away two Mac apps that convert RAF, and each fixes a different gap.

X RAW Studio is the only route to a JPEG that matches the camera's own rendering, film simulation included. Connect your camera over USB and the app develops each RAF through the camera's processor, so a Classic Chrome conversion is Classic Chrome to the pixel. The trade: no camera plugged in, no conversions, and batches move at the camera's pace.

RAW FILE CONVERTER EX, built on SILKYPIX, decodes RAF on the Mac itself: compressed files, lossless compressed files, and bodies Apple hasn't added yet. It exports JPEG and TIFF and asks for no hardware. The interface feels a generation old, but as a bridge for files the built-in tools refuse, it earns the download.

Method 5: Edit first, export last

Our app, so judge accordingly. Everything above copies the camera's data into a JPEG; none of it lets you decide how the photograph looks first, and with Fujifilm the look was half the reason you pressed the shutter. RevelRaw is a native macOS editor for every major camera brand. It decodes the .RAF with its own pipeline, compressed or not, without waiting on Apple's camera list. AI scene detection reads each photograph and ranks more than 40 presets against it, including a Film Emulation category built for exactly the character a straight conversion strips out; our film-look guide shows those presets against Fujifilm's simulations, honestly (they're RevelRaw's own looks, not clones). Batch export then handles the whole shoot in one pass, with JPEG quality, sRGB, Display P3 or Adobe RGB, and size presets for Instagram, print or web. One-time purchase, no subscription, and the free download includes a full-quality export to test with your own files. Requires macOS 26 or later.

If a fast, faithful copy is all the job needs, Preview and sips are free and already installed. Reach for an editor when the JPEG is the finished product.

Export settings that hold up

FAQ

How do I convert RAF to JPEG on a Mac for free?

Preview converts one file at a time: open the RAF, choose File > Export, pick JPEG and set the quality slider. The built-in sips command in Terminal converts a whole folder. Both need an uncompressed RAF from a body macOS supports; Fujifilm's free RAW FILE CONVERTER EX picks up the files they refuse.

Why doesn't my converted JPEG match the JPEG from the camera?

The camera bakes your film simulation into its JPEGs, but the RAF stores it as a metadata note over neutral sensor data. Mac converters render that neutral data, so Velvia or Classic Chrome never appears unless you add a look yourself in an editor or run the file through Fujifilm's X RAW Studio with the camera connected.

Why won't Preview or sips convert my RAF file?

Apple's RAW decoder reads uncompressed RAF only, so a camera set to compressed or lossless compressed produces files every built-in macOS tool refuses. A body released ahead of your macOS RAW support fails the same way. Switch the camera to uncompressed, install macOS updates when they land, or use an app with its own decoder.

Does converting RAF to JPEG lose quality?

Yes. JPEG shrinks files by discarding data, and the conversion runs one way. Set quality to 85 or 90 and the loss stays invisible on screens and in most prints. Keep the RAF and you can re-export at any settings later.

How do I batch convert a folder of RAF files?

For uncompressed RAF from a supported body, a sips loop in Terminal converts the whole folder with the macOS decoder: for f in *.RAF; do sips -s format jpeg -s formatOptions 90 "$f" --out "${f%.RAF}.jpg"; done. For compressed RAF, or when you want your edits and a film look in the output, batch export from a RAW editor such as RevelRaw.

Give the JPEG your look first. Download RevelRaw, drop in a .RAF, and see which film presets the scene detection ranks for your frame; one full-quality export is free. Get it on the Mac App Store (requires macOS 26 or later).

Related reading: How to open RAF files on a Mac · The film look from Fujifilm RAW · Fujifilm RAW editing on a Mac · RAF editing in RevelRaw · Convert RAW to JPEG on a Mac, any camera