Image MIME Reference
DECE-Graphic
Digital Entertainment Content Ecosystem (DECE) Graphic
image/vnd.dece.graphic
VS
X Bitmap (Legacy MIME Alias)
image/x-xbm
XBM
A complete technical comparison of Digital Entertainment Content Ecosystem (DECE) Graphic and X Bitmap (Legacy MIME Alias) — covering compression, feature support, browser compatibility, magic bytes, and when to choose each format.
Equal browser support
Feature Support
| Feature | DECE-Graphic | XBM |
|---|---|---|
| Transparency (Alpha) | Yes | Yes |
| 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)
X Bitmap (Legacy MIME Alias)
image/x-xbm
Extension
.xbm
Container
C Source Code Header (.h)
Compression
Uncompressed (Source Code)
Algorithm
None
Color Depth
1-bit (Monochrome)
Developed by
MIT / X Consortium (X Window System)
Released
1988
Magic Bytes
23 64 65 66 69 6e 65 (ASCII '#define')
Browser Support Comparison
| Browser | DECE-Graphic | XBM |
|---|---|---|
|
|
✕ | ✕ |
|
|
✕ | ✕ |
|
|
✕ | ✕ |
|
|
✕ | ✕ |
|
|
✕ |
✓
|
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
XBM
XBM Strengths
- Can be compiled directly into C or C++ source code without needing an external file loader or binary asset manager
- Human-readable structure allows developers to inspect, edit, or hand-craft tiny icons directly within a text editor
- Extremely predictable and lightweight for 1-bit hardware displays and embedded systems
Limitations
- Strictly limited to 1-bit monochrome (black and white) graphics with no gray or color support
- Text-based C syntax creates massive file bloat compared to binary 1-bit formats like PBM
- Completely deprecated in modern web browsers and desktop GUI frameworks
When to choose which format
DECE-Graphic
Use DECE-Graphic when…
- UltraViolet Movie Cover Art
- Common File Format (CFF) Asset Manifests
- Legacy DRM Ecosystems
XBM
Use XBM when…
- X Window System (X11) Cursors and Icons
- Embedded C/C++ Firmware UI Assets
- Early 1990s Unix Web Graphics