Convert RAW to JPG on Windows: 3 Methods
Convert RAW to JPG on Windows with Photos, Lightroom, or camera software. Keep RAW masters; deliver JPEG for clients and portals.
Clients and listing portals want JPEG. You shoot CR2, NEF, DNG, or ARW and edit in RAW for latitude. Delivery is a separate export at the right dimensions and quality. Keep ingest read-only and write proofs to a deliverables folder.
Keep the RAW master
| File type | Role |
|---|---|
| RAW | Edit master and archive |
| JPEG | Client, web, MLS, print portal |
| HEIC | Phone intermediate; convert before cross-platform send |
| Folder | Purpose |
|---|---|
| Ingest drive | Untouched camera files |
deliverables\jpeg\ | Exported proofs |
web\ | Smaller copies after resize |
Never overwrite RAW when exporting. For post-export sizing, see how to compress images on Windows .
Method 1: Export JPEG from Photos
Best for: Windows 11 Photos when the camera RAW opens cleanly.
- Open the RAW files in Photos.
- Select images, then … → Save as (or export when available).
- Choose JPEG at high quality into
deliverables\jpeg\.
| Delivery target | Starting quality | Max width hint |
|---|---|---|
| Email proofs | High | 2048 px after export |
| MLS listing | High | Follow portal rules |
| Web gallery | Medium-High | 1920 to 2400 px |
If Photos shows a blank preview for CR3 or another proprietary format, install the camera maker’s codec pack or use Lightroom for that shoot.
Limitation: Importing hundreds of card files only to export JPEG is slower than a Lightroom recipe.
Method 2: Lightroom or camera export
Best for: Every camera RAW and repeatable client recipes.
- Import RAW with your usual edit preset.
- Export → JPEG, quality 80 to 95.
- Set long edge (for example 3000 px for listings, 2400 px for web).
- Use sRGB unless print asked otherwise.
| Setting | Listing shoot | Web gallery |
|---|---|---|
| Long edge | 3000 px | 2400 px |
| Quality | 85 to 90 | 80 to 85 |
| Color space | sRGB | sRGB |
Name export recipes after the portal (“MLS 3000 sRGB high”) so assistants do not guess on rush jobs.
Limitation: Heavier than Photos for a single casual file.
Method 3: Resize exported JPEG with FFmpeg
Best for: Delivery sizing after demosaic, not for developing RAW.
winget install --id Gyan.FFmpeg -e
mkdir web
Get-ChildItem deliverables\*.jpg | ForEach-Object {
ffmpeg -i $_.FullName -vf scale=3000:-2 -q:v 3 "web\$($_.BaseName).jpg"
}Spot-check white balance and sharpening on three frames before uploading the whole set. You cannot recover clipped highlights from the JPEG later.
Limitation: FFmpeg does not demosaic camera RAW. Export JPEG from Photos or Lightroom first.
Which method should you use
| Situation | Start here |
|---|---|
| Photos opens the files | Photos export |
| Proprietary RAW or client recipes | Lightroom or camera app |
| Resize a finished JPEG folder | FFmpeg or GetCompress |
| Same width across many proofs | GetCompress after export |
When Photos or Lightroom is enough
Photos or Lightroom can work when one export already matches portal width and quality.
GetCompress does not develop RAW. After JPEG exists, it fits recurring delivery: max width, quality presets, and a local batch for the proof folder. It does not replace Lightroom. For mixed PNG and JPEG handoffs, see PNG to JPG on Windows .
- How to Compress Images on WindowsCompress images on Windows with GetCompress, Photos, or FFmpeg. Resize JPG and PNG, convert WebP, and keep sharp UI for email or web.
- Convert PNG to JPG on WindowsConvert PNG to JPG on Windows with GetCompress, Paint, or FFmpeg. Keep PNG when you need transparency; flatten first when you do not.
- For photographersCreate JPEG, PNG, HEIC, TIFF, and WebP delivery files for galleries, proofs, downloads, and social posts while protecting color and useful detail.
- Convert RAW to JPG on MacConvert RAW to JPG on Mac with Photos export, Preview for some DNG files, or your editor. Keep RAW masters; deliver JPEG copies.