Image MIME Reference
HEIC-Sequence
HEVC Image Sequence (HEIF Container)
image/heic-sequence
VS
Scalable Vector Graphics
image/svg+xml
SVG
A complete technical comparison of HEVC Image Sequence (HEIF Container) and Scalable Vector Graphics — covering compression, feature support, browser compatibility, magic bytes, and when to choose each format.
SVG wins on browser support
Feature Support
| Feature | HEIC-Sequence | SVG |
|---|---|---|
| Transparency (Alpha) | Yes | Yes |
| Animation Support | Yes | Yes |
| Progressive Loading | ✕ No | ✕ No |
| HDR Support | Yes | Yes |
| EXIF Metadata | Yes | ✕ No |
| ICC Color Profile | Yes | ✕ No |
HEVC Image Sequence (HEIF Container)
image/heic-sequence
Extension
.heics.heic
Container
HEIF / ISOBMFF (ISO/IEC 14496-12)
Compression
Lossy / Lossless
Algorithm
HEVC (H.265)
Color Depth
8-bit, 10-bit, 12-bit, 16-bit
Developed by
Moving Picture Experts Group (MPEG) / Apple
Released
2017
Magic Bytes
XX XX XX XX 66 74 79 70 68 65 76 63
Scalable Vector Graphics
image/svg+xml
Extension
.svg.svgz
Container
XML Document
Compression
Uncompressed (Plain Text XML) / Lossless (GZIP via .svgz)
Algorithm
None (for .svg)GZIP (for .svgz)
Color Depth
Vector (Independent of bit-depth), CSS Colors (HEX, RGB, HSL, Display-P3)
Developed by
World Wide Web Consortium (W3C)
Released
2001
Magic Bytes
3C 73 76 67 (for <svg) / 3C 3F 78 6D 6C (for <?xml)
Browser Support Comparison
| Browser | HEIC-Sequence | SVG |
|---|---|---|
|
|
✕ |
✓ All
|
|
|
✕ |
✓ All
|
|
|
✓ 11+
|
✓ All
|
|
|
✕ |
✓ All
|
|
|
✕ |
✓
|
HEIC-Sequence
HEIC-Sequence Strengths
- Incredibly efficient storage for bursts and short animations compared to GIF or motion JPEG
- Supports 16-bit color, HDR, and alpha channel transparency across all frames
- Shares frame data blocks, meaning the base image and animation data are heavily optimized for space
Limitations
- Zero support in web browsers outside the Apple ecosystem (Chrome, Firefox, Edge do not support it)
- Heavily encumbered by HEVC patent pools, hindering open-source adoption
- Complex container structure makes parsing and decoding difficult without specialized libraries
SVG
SVG Strengths
- Provides infinite resolution scalability, looking perfectly crisp on high-DPI (Retina) displays without increasing file size
- Extremely lightweight compared to raster formats for flat graphics, logos, and UI elements
- Can be manipulated dynamically via the browser's CSS and JavaScript engines (DOM integration)
Limitations
- Unsuitable for complex photographic images or photorealistic textures
- Poses critical security vulnerabilities (XSS and XML External Entity attacks) if user-uploaded SVGs are not heavily sanitized
- Rendering performance degrades significantly if the SVG contains tens of thousands of complex nodes or deeply nested paths
When to choose which format
HEIC-Sequence
Use HEIC-Sequence when…
- Apple Live Photos
- Burst Photography
- High-Quality Animations
- Cinemagraphs
SVG
Use SVG when…
- Web Logos & UI Icons
- Responsive Web Design Elements
- Interactive Data Visualizations (D3.js)
- CSS and SMIL Web Animations