Image MIME Reference
DECE-Graphic
Digital Entertainment Content Ecosystem (DECE) Graphic
image/vnd.dece.graphic
VS
Portable Anymap
image/x-portable-anymap
PNM
A complete technical comparison of Digital Entertainment Content Ecosystem (DECE) Graphic and Portable Anymap — covering compression, feature support, browser compatibility, magic bytes, and when to choose each format.
Equal browser support
Feature Support
| Feature | DECE-Graphic | PNM |
|---|---|---|
| Transparency (Alpha) | Yes | ✕ No |
| Animation Support | ✕ No | ✕ No |
| Progressive Loading | ✕ No | ✕ No |
| HDR Support | ✕ No | ✕ No |
| EXIF Metadata | ✕ No | ✕ No |
| ICC Color Profile | ✕ No | ✕ No |
Digital Entertainment Content Ecosystem (DECE) Graphic
image/vnd.dece.graphic
Extension
.jpg.png.uvi
Container
Standard JPEG/PNG within DECE CFF structures
Compression
Lossy (JPEG) / Lossless (PNG)
Algorithm
DCT (JPEG)DEFLATE (PNG)
Color Depth
8-bit (RGB), 24-bit (RGB)
Developed by
Digital Entertainment Content Ecosystem (DECE) LLC
Released
2011
Magic Bytes
FF D8 FF (If JPEG) / 89 50 4E 47 (If PNG)
Portable Anymap
image/x-portable-anymap
Extension
.pnm
Container
Netpbm
Compression
Uncompressed
Algorithm
None
Color Depth
1-bit (PBM), 8-bit to 16-bit (PGM), 24-bit to 48-bit (PPM)
Developed by
Jef Poskanzer (Netpbm Project)
Released
1988
Magic Bytes
50 31, 50 32, 50 33, 50 34, 50 35, or 50 36
Browser Support Comparison
| Browser | DECE-Graphic | PNM |
|---|---|---|
|
|
✕ | ✕ |
|
|
✕ | ✕ |
|
|
✕ | ✕ |
|
|
✕ | ✕ |
|
|
✕ | ✕ |
DECE-Graphic
DECE-Graphic Strengths
- Allowed the UltraViolet DRM ecosystem to easily distinguish structural UI/cover graphic assets from actual encrypted video tracks in a Common File Format container
Limitations
- Completely obsolete since the 2019 shutdown of UltraViolet
- Unnecessary abstraction, as the underlying files were just standard JPEGs or PNGs
- Causes modern strict MIME-type validators to fail if they rely on the Content-Type header
PNM
PNM Strengths
- Unparalleled simplicity: parsers and writers for PNM files can be written from scratch in C or Python in just a few minutes without relying on external libraries
- Serves as an excellent foundational teaching tool for computer science students learning about image arrays and raster graphics
- Flawlessly pipes through Unix command-line utilities for robust automated image processing (via the Netpbm suite)
Limitations
- Zero compression natively results in astronomical file sizes, making it entirely impractical for web delivery or consumer storage
- No support for standard metadata formats like EXIF, XMP, or ICC color profiles
- No native alpha channel support in the classic PNM specification (though the newer PAM format 'P7' addresses this)
When to choose which format
DECE-Graphic
Use DECE-Graphic when…
- UltraViolet Movie Cover Art
- Common File Format (CFF) Asset Manifests
- Legacy DRM Ecosystems
PNM
Use PNM when…
- Unix/Linux Command-Line Image Processing (Netpbm suite)
- Academic Computer Vision Research
- Intermediary Format for Image Format Conversion