Image MIME Reference
HEIC-Sequence
HEVC Image Sequence (HEIF Container)
image/heic-sequence
VS
Portable Pixmap
image/x-portable-pixmap
PPM
A complete technical comparison of HEVC Image Sequence (HEIF Container) and Portable Pixmap — covering compression, feature support, browser compatibility, magic bytes, and when to choose each format.
HEIC-Sequence wins on browser support
Feature Support
| Feature | HEIC-Sequence | PPM |
|---|---|---|
| Transparency (Alpha) | Yes | ✕ No |
| Animation Support | Yes | ✕ No |
| 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
Portable Pixmap
image/x-portable-pixmap
Extension
.ppm
Container
Netpbm
Compression
Uncompressed
Algorithm
None
Color Depth
24-bit (RGB), 48-bit (RGB High Color)
Developed by
Jef Poskanzer (Netpbm Project)
Released
1988
Magic Bytes
50 33 (ASCII) or 50 36 (Binary)
Browser Support Comparison
| Browser | HEIC-Sequence | PPM |
|---|---|---|
|
|
✕ | ✕ |
|
|
✕ | ✕ |
|
|
✓ 11+
|
✕ |
|
|
✕ | ✕ |
|
|
✕ | ✕ |
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
PPM
PPM Strengths
- Absolute structural simplicity allows parsers and renderers (such as custom raytracers) to write directly to the format with virtually no overhead or external libraries
- Supports 16-bit per channel (48-bit total) precision, preserving deep color accuracy before converting to final delivery formats
- ASCII encoding ('P3') allows manual editing and visual inspection of RGB values directly within a text editor
Limitations
- Zero compression results in astronomical file sizes, making it entirely impractical for web delivery or consumer storage
- Does not natively support an alpha channel for transparency (this is handled by the newer PAM extension format within the Netpbm suite)
- Lacks support for modern metadata standards like EXIF, XMP, or embedded ICC color profiles
When to choose which format
HEIC-Sequence
Use HEIC-Sequence when…
- Apple Live Photos
- Burst Photography
- High-Quality Animations
- Cinemagraphs
PPM
Use PPM when…
- Intermediary Format for Image Format Conversion
- Academic Computer Graphics and Raytracing Output
- Unix/Linux Command-Line Image Pipelines