Reference Formats
HEIC
Apple's HEVC-encoded implementation of the HEIF container, delivering roughly half the file size of JPEG at comparable quality but with limited non-Apple browser support due to codec licensing.
Extension
.heic
Full name
High Efficiency Image Coding (Apple's HEVC-encoded HEIF file)
Introduced
2017 (announced WWDC June 2017, shipped with iOS 11)
Vendor
Apple Inc. (implementation using HEVC/H.265, standardized by MPEG)
What is inside the container
HEIC stores HEVC (H.265) intra-frame-coded image data inside an ISOBMFF/HEIF container, in lossy or lossless mode, and can hold image sequences (bursts, Live Photos). It supports higher bit depth (up to 16-bit per channel) and wider color gamuts such as Display P3 than JPEG's 8-bit/sRGB ceiling. EXIF is embedded inside the container (structurally different from JPEG's APP1 header but data-compatible with standard EXIF readers), and XMP is stored as an item with MIME type application/rdf+xml; IPTC data typically travels via XMP.
How to open it
For archives
Convert for long-term DAM master storage rather than relying on HEIC alone. The core risks are patent/licensing fragility around HEVC (multiple competing patent pools) and near-total lack of non-Apple browser support. Many DAM ingest pipelines auto-convert HEIC to TIFF or high-quality JPEG on upload for broad compatibility and to de-risk the archive from a single-vendor codec.
Apple introduced HEIC at WWDC in June 2017 and shipped it that autumn with iOS 11, making it the default photo-capture format on any device with an A9 chip or later. The pitch was straightforward: HEVC/H.265 intra-frame coding delivers roughly 40–50% smaller files than JPEG at comparable visual quality, directly cutting device storage pressure and iCloud sync costs as camera sensors kept growing. Because HEIC is Apple’s specific codec-plus-container pairing rather than an independently standardized format, its long-term ecosystem health is tied to HEVC’s patent-licensing landscape, which spans several competing pools (MPEG LA, HEVC Advance, and others).
For a DAM, HEIC is overwhelmingly an ingest problem rather than a delivery format, given how many uploads now arrive from iPhones by default. Server-side thumbnail and preview generation requires an HEVC-capable decoder (typically via libheif), which not every imaging library ships with by default, and because no non-Apple browser renders HEIC inline, any web-facing preview has to be transcoded to JPEG or WebP — there’s no way around this step for a DAM serving assets to a general audience.
HEIC does carry EXIF and XMP reliably inside its ISOBMFF container, so metadata-driven search doesn’t have to suffer just because an asset arrived as HEIC — but conversion is where things go wrong in practice. Some third-party HEIC-to-JPEG converters silently drop EXIF or XMP during transcoding, so a DAM’s ingest pipeline needs to verify metadata survives the conversion rather than assume it does, and should default to normalizing HEIC uploads to a more broadly compatible master format.
Frequently asked
Should a DAM keep HEIC as its long-term master format?
No — convert for long-term storage. The core risks are patent/licensing fragility around HEVC (multiple competing patent pools) and near-total lack of non-Apple browser support, so most DAM ingest pipelines auto-convert HEIC to TIFF or high-quality JPEG on upload.
Does HEIC display in non-Apple browsers?
No — Chrome, Firefox, and Edge do not render HEIC inline in any version because they don't license HEVC. Safari is the only major browser with native support.
What metadata does HEIC carry?
EXIF is embedded inside the ISOBMFF container (structurally different from JPEG's APP1 header but data-compatible with standard EXIF readers), and XMP is stored as an item with MIME type application/rdf+xml; IPTC data typically travels via XMP.
Why do so many DAM uploads arrive as HEIC?
HEIC has been the default photo-capture format on any iPhone with an A9 chip or later since iOS 11 shipped in autumn 2017.
What's the risk when converting HEIC to JPEG during ingest?
Some third-party HEIC-to-JPEG converters silently drop EXIF or XMP during transcoding, so a DAM's ingest pipeline needs to verify metadata survives the conversion rather than assume it does.
What advantages does HEIC have over JPEG?
Roughly 40–50% smaller files at comparable visual quality, plus higher bit depth (up to 16-bit per channel) and wider color gamuts such as Display P3, versus JPEG's 8-bit/sRGB ceiling.
Can HEIC store image sequences like bursts or Live Photos?
Yes — HEIC stores HEVC intra-frame-coded image data inside an ISOBMFF/HEIF container and can hold image sequences such as bursts and Live Photos.
What does a DAM need to generate previews of HEIC files?
Server-side thumbnail and preview generation requires an HEVC-capable decoder, typically via libheif, which not every imaging library ships with by default.
Sources
- Apple introduced HEIF/HEVC as the default iPhone camera format with iOS 11, announced at WWDC June 2017. checked 2026-08-07 — 9to5Mac: iOS 11's new HEIF/HEVC camera formats
- Apple's HEIF/HEVC platform support details. checked 2026-08-07 — Apple Support: Using HEIF or HEVC media on Apple devices
- GIMP added HEIC/AVIF support in version 2.10.22 via libheif. checked 2026-08-07 — GIMP 2.10.22 Released
- HEIC lacks native rendering support in Chrome, Firefox, and Edge due to HEVC licensing. checked 2026-08-07 — HEIF/HEIC browser support overview