What Is CR2 Format?
CR2 (Canon RAW version 2) is Canon’s proprietary RAW image format used by most Canon DSLRs and mirrorless cameras since the mid-2000s. Unlike JPG, which is a compressed, processed image, CR2 files contain the unprocessed sensor data exactly as the camera captured it.
A CR2 file stores 14-bit (or 12-bit on older models) color depth per channel, compared to JPG’s 8-bit. This means a CR2 image contains up to 16,384 brightness levels per channel, while JPG has only 256. The extra data gives you significantly more room to adjust exposure, white balance, and color in post-processing.
CR2 vs CR3: Canon’s newer mirrorless cameras (EOS R series, from 2018 onward) use the CR3 format instead of CR2. CR3 is based on the ISO Base Media File Format and supports more efficient compression. Both are Canon RAW formats, but CR2 remains the most common due to the huge installed base of Canon DSLRs.
Canon Cameras That Use CR2
Virtually all Canon DSLRs released between 2004 and 2018 shoot in CR2 format. Here are the most popular models:
| Category | Camera Models |
|---|---|
| Professional | EOS 1D X Mark II, 1D X, 5D Mark IV, 5D Mark III, 5DS, 5DS R |
| Enthusiast | EOS 6D Mark II, 6D, 7D Mark II, 7D, 80D, 77D, 70D |
| Entry-level | EOS Rebel T7i/800D, T6i/750D, T6/1300D, T5i/700D, SL2/200D |
| Mirrorless (older) | EOS M50 (original), M6, M5, M3 |
| Compact | PowerShot G7 X Mark II, G5 X, G9 X (select models) |
If you shoot with any of these cameras in RAW mode, your files will have the .cr2 extension.
Method 1: Convert Online with Convertio
The fastest way to convert CR2 to JPG without installing any software. Convertio works in any web browser on any device — desktop, tablet, or phone.
- Upload your CR2 file — drag and drop it onto the converter above, or click to browse your files. You can select multiple CR2 files for batch conversion.
- Verify the output format — make sure “JPG” is selected as the target format (it should be by default on this page).
- Click Convert — the conversion takes a few seconds per file. Convertio processes the RAW data server-side using professional-grade rendering.
- Download your JPG — once conversion is complete, click the download button. For batch conversions, you can download all files at once.
Privacy: All uploaded files are transmitted over encrypted HTTPS and automatically deleted from our servers within 2 hours. We do not access, analyze, or share your photos.
Method 2: Convert with Desktop Software
If you need more control over the conversion process, these desktop applications let you fine-tune RAW processing settings before exporting to JPG:
Adobe Lightroom / Camera Raw
- Import your CR2 files into the Lightroom library
- Adjust exposure, white balance, tone curve, and other settings
- Select the photos to export, then go to File → Export
- Choose JPEG as the format, set quality (80–95 recommended), and select the output folder
- Click Export — Lightroom processes and saves JPG files with your adjustments applied
Canon Digital Photo Professional (DPP)
- Free software from Canon, optimized specifically for Canon RAW files
- Download from Canon’s support website (requires camera serial number)
- Open CR2 files, apply Canon’s Picture Style processing
- Use File → Convert and save to export as JPG
- Supports Canon-specific features like Dual Pixel RAW and in-camera lens corrections
RawTherapee (Free, Open Source)
- Powerful free RAW processor available on Windows, macOS, and Linux
- Open your CR2 file and adjust processing settings
- Use the export queue (Ctrl+B) to batch-process multiple files
- Set output format to JPEG with desired quality level
dcraw (Command Line)
- Free, open-source command-line RAW decoder that supports virtually every RAW format
- Basic usage:
dcraw -T photo.cr2(outputs TIFF, then convert to JPG) - With quality settings:
dcraw -w -H 2 -o 1 -q 3 -T photo.cr2 - Best for scripting automated batch conversions on Linux/macOS servers
JPG Quality Settings for Photos
When converting CR2 to JPG, the quality setting controls the compression level. Higher quality means larger files with more detail preserved; lower quality means smaller files with visible compression artifacts.
| Quality Level | Typical File Size (24 MP) | Best For |
|---|---|---|
| 95–100% | 8–15 MB | Archival, printing, maximum quality |
| 85–94% | 3–7 MB | General photography, portfolios, client delivery |
| 70–84% | 1–3 MB | Web publishing, blogs, social media |
| Below 70% | < 1 MB | Thumbnails, previews (visible quality loss) |
For most photography use cases, quality 85–92 provides the best balance between file size and visual quality. At this range, compression artifacts are invisible to the naked eye, and files are small enough for easy sharing and uploading.
Batch Conversion: Multiple CR2 Files
Photographers rarely need to convert just one photo. After a shoot, you might have hundreds or thousands of CR2 files. Here is how to handle batch conversion efficiently:
- Convertio (online): Upload multiple CR2 files at once. The converter processes them in parallel and lets you download all JPGs together.
- Lightroom: Select all photos in the Library module (Ctrl+A), then File → Export. All selected images are processed with the same export settings.
- RawTherapee: Add multiple files to the processing queue, set a common output profile, and process the entire batch.
- Command line (dcraw + ImageMagick): Use a simple script to process an entire folder:
for f in *.cr2; do dcraw -c -w "$f" | cjpeg -quality 90 > "${f%.cr2}.jpg"; done
Preserving EXIF Data During Conversion
EXIF (Exchangeable Image File Format) data contains valuable metadata embedded in your photos: camera model, lens used, exposure settings, GPS location, date/time, and more. When converting CR2 to JPG, preserving this data is important for organizing and searching your photo library.
Most RAW converters preserve EXIF data by default. However, some tools strip it during conversion. To verify your EXIF data was preserved, check the file properties in your operating system or use a tool like ExifTool.
Convertio preserves EXIF metadata during CR2 to JPG conversion, so your camera settings, date, and other information carry over to the output JPG file.
Privacy note: EXIF data can include GPS coordinates. If you are sharing photos publicly, consider stripping GPS data before uploading. Most social media platforms do this automatically, but personal websites and email do not.