Back to Blog

18 Best RAW to JPG Converters in 2026 (Free and Paid)

The best RAW to JPG converters in 2026. Compare offline desktop apps, open-source tools, and online converters for sharing camera files quickly without opening a full photo editor.

Posted by

18 best RAW to JPG converters in 2026

RAW to JPG is the conversion every photographer eventually wants without opening Lightroom. RAW is the format your camera writes when you shoot in “RAW” mode — full sensor data, 12 or 14 bits per channel, untouched by any in-camera processing. JPG is what every website, every messaging app, every social platform, and every client's phone actually accepts. Sharing the RAW file is not an option; opening every shot in Lightroom is not always worth it; you just want a JPG that looks good. This guide compares 18 RAW to JPG converters in 2026, including the dedicated photo editors that do it properly and the lightweight tools that work when you just want a quick share-ready file.

How to Convertis listed first because it is made by the same indie developer who writes this blog. A note on terminology: “RAW” is not one format. It is dozens — .CR2 and .CR3 (Canon), .NEF (Nikon), .ARW (Sony), .RAF (Fujifilm), .ORF (Olympus), .RW2 (Panasonic), .DNG (Adobe's open RAW), and many more. Tool support varies by camera brand and by how new the camera is.

Why RAW → JPG Is Not Quite Trivial

When the camera writes a RAW file, it is not a viewable image — it is sensor data plus metadata. Every RAW file has to be “developed” into a viewable image, which involves:

  • Demosaicing — interpolating color from the Bayer-pattern sensor data.
  • White balance — either the as-shot value or one chosen during conversion.
  • Tone curve — turning linear sensor data into the contrast curve a JPEG expects.
  • Sharpening, noise reduction, lens correction — applied as configured.
  • Compression to 8-bit JPEG — the final step.

A simple “convert RAW to JPG” tool makes choices for all of these. Sometimes those choices look great; sometimes the result looks dull or noisy compared to your camera's in-camera JPEG. If your camera supports shooting RAW+JPEG, the in-camera JPEG is usually the fastest path. If you only have the RAW, the choice of converter matters.

Quick Picks for RAW → JPG

  • Best quality, free: Darktable or RawTherapee. Both are dedicated open-source RAW developers.
  • Best paid quality: Lightroom, Capture One, or DxO PhotoLab.
  • Just want a JPG quickly: macOS Preview, dcraw, or How to Convert.
  • Batch a folder of camera files: Darktable, Lightroom, or any tool below with a batch mode.
  • Newest cameras (under 6 months old): use the camera manufacturer's free utility (Canon DPP, Nikon NX Studio, Sony Imaging Edge) — third-party RAW support takes months to catch up.

One-shot: RAW to JPG converter.

1. How to Convert

How to Convert app screenshot

Drop RAWs in (CR2, CR3, NEF, ARW, RAF, ORF, DNG, RW2, all supported), pick JPG, set quality, hit convert. Uses ImageMagick with dcraw under the hood; respects the in-RAW JPEG preview for speed. Local — the right pick for sensitive shoots.

Pricing

  • One-time license; free trial.

How to Convert logoHow to Convert

The offline file converter for Mac, Windows and Linux.

  • Converts video, audio, images, documents, ebooks and more
  • Everything runs locally. Your files never leave your device
  • Pay once. Access forever

Get the app on Mac, Windows and Linux

2. Darktable — best free RAW developer

Open-source RAW developer with a Lightroom-class feature set. Supports almost every RAW format. The Export module produces JPGs with full control over quality, color profile, and resize. Cross-platform.

For a quick batch: select all images in the lighttable, set the Export module to JPEG at quality 92, click Export.

Pricing

  • Free, open source.

3. RawTherapee — best free alternative to Darktable

Another full-featured open-source RAW developer. Slightly different UI philosophy from Darktable; some photographers prefer it. Same RAW format support; same JPG export quality. Cross-platform.

Pricing

  • Free, open source.

4. Adobe Lightroom Classic

The reference RAW developer. Imports, edits, exports JPGs at any quality / size / metadata setting. Adobe's RAW support is updated within days for new cameras. The right pick if photography is a regular part of your work.

Pricing

  • Subscription (Adobe Creative Cloud).

5. Capture One

Phase One's pro RAW developer. Considered to produce better-default-looking output than Lightroom on most camera files. Available as subscription or perpetual license. Strong for studio workflows.

Pricing

  • Subscription or one-time depending on edition.

6. DxO PhotoLab

Strong on noise reduction (DeepPRIME) and lens corrections. Pro RAW developer with one-time pricing. Especially good for high-ISO night photos.

Pricing

  • One-time purchase.

7. Apple Photos / Preview

On macOS, both Photos and Preview read RAW files (Apple supports a wide list of formats; check the Photos “RAW formats” help page). For a quick JPG: open in Preview, File → Export → JPEG, set quality, save.

Quality is fine for share-ready output. For real editing, jump to Lightroom, Darktable, or Capture One.

Pricing

  • Free with macOS.

8. Canon DPP / Nikon NX Studio / Sony Imaging Edge / Fujifilm X RAW Studio

Manufacturer-provided free tools. Use these specifically when:

  • Your camera is brand new and third-party support has not caught up.
  • You want the “in-camera look” — picture styles, film simulations, etc.
  • You shoot Fujifilm and want film simulations applied to the RAW.

Pricing

  • Free from each manufacturer.

9. dcraw — best command-line RAW decoder

The original open-source RAW decoder. Still works; still useful in scripts.

dcraw -c input.cr2 | magick - output.jpg

Or with a specific white balance and quality:

dcraw -c -w -q 3 input.cr2 | magick - -quality 92 output.jpg

For batches:

for f in *.cr2; do dcraw -c -w "$f" | magick - -quality 92 "${f%.cr2}.jpg"; done

Pricing

  • Free, open source.

10. LibRaw / rawpy (Python)

Successor to dcraw. Python bindings via rawpy:

import rawpy, imageio
with rawpy.imread("input.cr2") as raw:
    rgb = raw.postprocess(use_camera_wb=True, output_bps=8)
imageio.imsave("output.jpg", rgb, quality=92)

The right pick for Python pipelines processing RAW files.

Pricing

  • Free, open source.

11. ImageMagick

ImageMagick screenshot

ImageMagick reads RAW via dcraw (install both):

magick input.cr2 -quality 92 output.jpg

Output quality is decent but not as nice as dedicated RAW developers because the defaults are conservative. Good for batch when you do not need fine-grained control.

Pricing

  • Free, open source.

12. Affinity Photo

Has a RAW develop persona similar to Lightroom's Develop module. Solid quality. One-time pricing.

Pricing

  • One-time purchase.

13. ON1 Photo RAW

Lightroom alternative with a one-time-purchase model. Decent RAW support, more presets than Lightroom out of the box.

Pricing

  • One-time purchase.

14. Pixelmator Pro

Pixelmator Pro screenshot

Mac-native. Opens RAW, includes basic develop tools, exports JPG. Good for casual photographer who does not want a Lightroom subscription.

Pricing

  • One-time purchase.

15. GIMP (with RawTherapee or Darktable as RAW handler)

GIMP screenshot

GIMP itself does not develop RAW, but it integrates with Darktable or RawTherapee for the RAW step. Useful for the “develop RAW, then edit in GIMP, then export as JPG” workflow.

Pricing

  • Free, open source.

16. CloudConvert

Web converter with RAW support for common camera formats. Slow for big files (RAWs are 20–50 MB each).

Pricing

  • Free tier; paid above.

17. Convertio

Web RAW → JPG with format-by-format support. Same web upload caveat. Camera RAW files often contain personal subjects and embedded thumbnails worth handling locally.

Pricing

  • Free with caps; paid above.

18. Tip: extract the in-RAW JPEG preview

Almost every RAW file contains an embedded JPEG preview that the camera generated. Tools like exiftool can pull it out without doing any RAW decoding:

exiftool -b -JpgFromRaw input.cr2 > output.jpg

The embedded JPEG is small (1–4 MB), uses the camera's in-camera processing (so it matches the JPEG your camera would have written), and extraction is instant. Useful when you just need a share-ready file and do not care about full-resolution development.

Pricing

  • Free, open source.

How to Choose

  • Casual: just a JPG, fast: macOS Preview, How to Convert, or extract the embedded preview.
  • Editing, free: Darktable or RawTherapee.
  • Pro photography: Lightroom, Capture One, or DxO PhotoLab.
  • Very new camera: the manufacturer's utility.
  • Scripted pipeline: dcraw or rawpy.
  • Sensitive shoot (clients, events): stay local.

Final Thoughts

RAW → JPG is the conversion that quietly involves the most decisions — white balance, demosaicing, tone curve, sharpening. Dedicated RAW developers (Darktable, RawTherapee, Lightroom) give you those controls. Quick-convert tools make the choices for you and produce decent but not great output. For a folder of holiday photos, the quick tool is fine. For client work or anything you might want to print, develop in a real RAW tool.

How to Convert logoHow to Convert

The offline file converter for Mac, Windows and Linux.

  • Converts video, audio, images, documents, ebooks and more
  • Everything runs locally. Your files never leave your device
  • Pay once. Access forever

Get the app on Mac, Windows and Linux