Quick Answer
For photographers using iPhone as a secondary or primary camera: shoot in HEIC or Apple ProRAW on device, convert to JPG at 95% quality for client delivery and web use, and keep original HEIC/RAW files archived. Use macOS sips or the HEIC to JPG Converter extension for batch export. Never deliver HEIC to clients — always JPG.
The iPhone has become a serious photography tool — capable of producing images that compete with dedicated cameras in many scenarios. But the HEIC format it uses by default creates friction in professional workflows designed around RAW, JPG, and TIFF.
This guide covers how to integrate HEIC files into professional photography workflows: when to convert, what quality settings to use, which editing tools support HEIC, and how to deliver files that clients can actually open.
Understanding Your iPhone Camera Format Options
Before building a workflow, it helps to understand what format options are available on modern iPhones:
| Format | Type | File Size | Edit Latitude | Compatibility |
|---|---|---|---|---|
| HEIC (default) | Compressed | ~2MB avg | Limited | Apple only |
| JPEG (Most Compatible) | Compressed | ~4MB avg | Limited | Universal |
| Apple ProRAW | Lossless RAW | ~25–75MB | Maximum | Limited |
| Apple ProRes (video) | Near-lossless video | Very large | Maximum | Limited |
For professional photography use, Apple ProRAW (available on iPhone 12 Pro and later, in Settings → Camera → Formats → Apple ProRAW) is typically the right choice — it gives you full editing latitude in Lightroom and other RAW editors. HEIC is more appropriate for everyday shooting where you don't plan extensive editing.
Photography Workflow: HEIC Integration
Scenario 1: iPhone as Secondary Camera (Event Photography)
Using iPhone to grab quick shots at an event alongside a primary camera (DSLR/mirrorless):
Shoot in HEIC
Use default HEIC format for quick iPhone shots. Storage efficiency matters when shooting hundreds of event photos alongside your main camera's RAW files.
Cull and Select
Import to Lightroom (supports HEIC on Mac/Windows). Flag keepers and rejects without converting anything yet.
Edit Selected Images
Edit selects in Lightroom. HEIC files support full Lightroom adjustments — exposure, color, tone curve, HSL, etc.
Export as JPG for Delivery
Use Lightroom's Export function: File → Export, select JPEG format, quality 90–95%, sRGB color space. This handles HEIC-to-JPG conversion automatically as part of the export.
Archive Original HEICs
Keep the original HEIC files archived. They're smaller than the delivered JPGs and serve as your source files.
Quick Conversions Outside Lightroom
For HEIC files that don't need editing, convert to JPG directly in Chrome — no Lightroom round-trip needed.
HEIC to JPG Converter — FreeEditing HEIC in Professional Software
| Application | HEIC Support | Platform | Notes |
|---|---|---|---|
| Lightroom Classic / CC | Full | Mac, Windows | Windows needs HEIF codec |
| Photoshop | Full (Mac), Partial (Win) | Mac, Windows | Windows: Camera Raw plug-in required |
| Capture One | Full (Mac), Partial (Win) | Mac, Windows | Good HEIC support overall |
| DxO PhotoLab | Limited | Mac, Windows | Import may require conversion |
| GIMP | Plugin required | Mac, Windows, Linux | heif-gimp plugin |
| Affinity Photo | Full | Mac, Windows | Strong HEIC support |
| Final Cut Pro | Full | Mac only | Excellent HEIC integration |
Client Delivery: Always JPG (Never HEIC)
This is non-negotiable for professional photographers: deliver to clients in JPG, not HEIC.
Even technically sophisticated clients may run into HEIC issues on their Windows PCs. The support request ("I can't open these files") wastes your time and makes you look unprofessional. JPG has worked everywhere for 30 years and will continue to work for the foreseeable future.
JPG delivery settings for photographers:
- Quality: 90–95% (visually perfect, reasonable file size)
- Color space: sRGB (universal compatibility; Adobe RGB/P3 only if client requests and can handle it)
- Resolution: Full resolution from camera (don't downsample unless client requests web-only files)
- Metadata: Include EXIF, GPS strip for web delivery if needed
- Sharpening: Screen sharpening in Lightroom for web delivery, print sharpening for print
Batch Converting HEIC for Client Galleries
For converting large batches of HEIC files quickly without Lightroom:
On Mac (sips command — fastest):
Open Terminal and run:
mkdir -p ~/Desktop/client-jpgs
for f in ~/Desktop/heic-photos/*.heic; do
sips -s format jpeg -s formatOptions 92 "$f" \
--out ~/Desktop/client-jpgs/"$(basename "${f%.heic}").jpg"
done
Using the Chrome extension (for smaller batches):
The HEIC to JPG Converter extension handles batches of dozens of files at a time without any terminal commands — good for quick turnaround on smaller jobs.
Archiving: HEIC vs Other Formats
| Format | For Archiving? | Reason |
|---|---|---|
| Apple ProRAW (DNG) | Excellent | Lossless, open standard, future-proof |
| TIFF | Excellent | Lossless, universally supported archival format |
| HEIC (original) | Good | Efficient, preserves metadata; long-term HEVC support uncertain |
| JPG 95% | Good | Universal, slight quality loss acceptable for most use |
| JPG 85% | Acceptable | Smaller size, visible quality loss at high zoom |