Canon CR3: The Modern RAW Format
CR3 is Canon's current RAW image format, introduced in 2018 with the EOS M50 and used across the entire EOS R mirrorless system (R3, R5, R6, R7, R8, R10, R50, R100). It replaces the older CR2 format with a more modern HEIF-based container structure that supports both uncompressed RAW and Canon's efficient CRAW (Compressed RAW) mode.
If you shoot with any Canon camera released after 2018, your RAW files are CR3. While Canon's Digital Photo Professional (DPP) software handles CR3 natively, you may need to convert to JPG for sharing on social media, emailing to clients, uploading to websites, or printing through services that do not accept RAW files.
The challenge with CR3 conversion is that it is one of the newest RAW formats, and not all software supports it yet. Older versions of Photoshop, Lightroom, and open-source tools may fail to open CR3 files. This guide covers methods that work reliably with CR3.
CR3 Technical Details
| Property | Specification |
|---|---|
| Container | ISO BMFF (HEIF-based) |
| Sensor data | 14-bit, Bayer CFA |
| Compression modes | RAW (lossless), CRAW (lossy ~40% smaller) |
| Image processor | DIGIC X / DIGIC 8 |
| Typical file size | RAW: 25-50 MB, CRAW: 15-30 MB |
| Color depth | 14 bits per channel (16,384 levels) |
| Cameras | EOS R3, R5, R6 II, R7, R8, R10, R50, R100, M50 |
| Dual Pixel data | Optional (for focus refinement in DPP) |
CR3 uses a fundamentally different container than CR2. While CR2 was TIFF-based, CR3 uses the ISO Base Media File Format (the same foundation as MP4 and HEIF), which enables features like embedded preview images and more flexible metadata storage.
Method 1: Using Canon DPP (Best Color Accuracy)
Canon's free Digital Photo Professional software uses the exact color science profiles designed for each Canon camera model. For color-critical work, this is the gold standard:
- Open CR3 files in DPP
- Apply desired adjustments (white balance, exposure, picture style)
- Select File → Batch Process → Convert and Save
- Choose JPEG, quality 8-10 (out of 10), sRGB color space
- Process the batch
DPP produces the most accurate colors because it uses Canon's proprietary demosaicing algorithms and color matrices — the same processing applied when the camera generates its internal JPG.
Method 2: Command-Line with LibRaw
LibRaw (the successor to dcraw) provides CR3 support:
# Install LibRaw (includes dcraw_emu)
# macOS: brew install libraw
# Ubuntu: apt install libraw-bin
# Convert with camera white balance and sRGB output
dcraw_emu -w -T -o 1 -q 3 input.cr3
# Convert the resulting TIFF to JPG
convert input.tiff -quality 92 output.jpg
For a streamlined one-liner using exiftool and ImageMagick together:
# If your ImageMagick build supports CR3 via LibRaw delegate
convert input.cr3 -auto-orient -set colorspace sRGB \
-auto-level -quality 92 output.jpg
Batch Convert
mkdir -p jpg
for file in *.cr3 *.CR3; do
[ -f "$file" ] || continue
dcraw_emu -w -T -o 1 -q 3 "$file"
tiff="${file%.*}.tiff"
convert "$tiff" -quality 92 "jpg/${file%.*}.jpg"
rm "$tiff"
done
Method 3: Online Conversion
Use the CR3 to JPG converter online for quick conversions without installing software. Upload your CR3 file and get a processed JPG back. For other RAW formats, try the Image Converter.
Quality and Settings Tips
CRAW vs. RAW: Canon's CRAW mode applies visually lossless compression, reducing file sizes by roughly 40%. For JPG conversion purposes, the difference between RAW and CRAW is invisible — both produce identical JPGs. Shoot CRAW to save card space without sacrificing final output quality.
JPG quality levels: For Canon EOS R5 (45 MP) files, quality 90 produces 8-12 MB JPGs. Quality 85 produces 5-8 MB with negligible visual difference. For web use, quality 80 at 2048px long edge is the optimal balance of size and quality.
Picture Styles: When using DPP, Canon's Picture Styles (Standard, Portrait, Landscape, Faithful, Neutral) dramatically affect the output. For neutral, accurate conversions, use "Faithful." For punchier, more vibrant output, use "Standard" or "Landscape."
Color space: Always output in sRGB for sharing and web use. Canon cameras can capture in wider gamuts, but web browsers assume sRGB. Using Adobe RGB for web content results in desaturated, muted colors on most displays.
Sharpening: RAW files are intentionally unsharpened — the demosaicing process produces slightly soft output. Apply gentle output sharpening when converting to JPG. In DPP, use Unsharp Mask with strength 3-5, fineness 3-5. In ImageMagick: -sharpen 0x0.5.
For more on RAW conversion workflows, see our RAW photo conversion guide.
Common Issues and Troubleshooting
"Unknown image file format" error
Your software does not support CR3. This is common with ImageMagick versions before 7.0.10 and dcraw versions that predate CR3 support. Solutions:
- Update ImageMagick to the latest version
- Use LibRaw's
dcraw_emuinstead of the original dcraw - Use the online converter as a fallback
Output is too dark
CR3 data is linear — without proper tone mapping, the JPG appears dark and flat. Ensure your conversion applies gamma correction. In ImageMagick, use -auto-level or -level 0,65535. In dcraw_emu, the -o 1 flag applies sRGB gamma.
Colors look different from camera LCD
The camera's LCD shows a processed JPG preview, not the RAW data. When converting CR3 without Canon's specific color processing, the output may differ in saturation, contrast, and white balance. For the closest match to the camera preview, use Canon DPP with the same Picture Style that was set during shooting.
Dual Pixel RAW handling
Some Canon cameras offer Dual Pixel RAW, which stores additional data for micro-focus adjustment. This data is only useful in Canon DPP — other conversion tools simply ignore the Dual Pixel information and process the standard RAW data. No quality is lost.
Batch processing is slow
CR3 files from high-resolution cameras (45 MP R5, 24 MP R6) require significant processing for demosaicing. For batch workflows, use -q 0 (bilinear) instead of -q 3 (AHD) to trade slight quality for 5-8x faster processing.
Conclusion
Converting Canon CR3 to JPG bridges the gap between archival RAW quality and universal sharing. For color-critical work, Canon's free DPP software gives the best results. For batch processing and automation, LibRaw and ImageMagick handle CR3 reliably. Always shoot in RAW or CRAW to preserve your options, then convert to JPG at the quality level appropriate for your output — 92 for archival, 85-90 for sharing, 80 for web.
Ready to convert? Try our free CR3 to JPG converter — no registration required.



