Image MIME Reference
CMU-Raster
CMU Window Manager Raster
image/x-cmu-raster
VS
Portable Pixmap
image/x-portable-pixmap
PPM
A complete technical comparison of CMU Window Manager Raster and Portable Pixmap — covering compression, feature support, browser compatibility, magic bytes, and when to choose each format.
Equal browser support
Feature Support
| Feature | CMU-Raster | PPM |
|---|---|---|
| Transparency (Alpha) | ✕ No | ✕ No |
| Animation Support | ✕ No | ✕ No |
| Progressive Loading | ✕ No | ✕ No |
| HDR Support | ✕ No | Yes |
| EXIF Metadata | ✕ No | ✕ No |
| ICC Color Profile | ✕ No | ✕ No |
CMU Window Manager Raster
image/x-cmu-raster
Extension
.ras
Container
CMU Window Manager Bitmap
Compression
Uncompressed
Algorithm
None
Color Depth
1-bit (Monochrome), 8-bit (Indexed/Grayscale)
Developed by
Carnegie Mellon University (CMU)
Released
1980s
Magic Bytes
F1 00 40 BB
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 | CMU-Raster | PPM |
|---|---|---|
|
|
✕ | ✕ |
|
|
✕ | ✕ |
|
|
✕ | ✕ |
|
|
✕ | ✕ |
|
|
✕ | ✕ |
CMU-Raster
CMU-Raster Strengths
- Incredibly simple, uncompressed binary structure that was easy for early, memory-constrained UNIX workstations to parse and render
Limitations
- Completely obsolete and unsupported outside of niche historical command-line tools like Netpbm
- The shared '.ras' file extension causes frequent file misidentification and system conflicts
- Lacks all modern imaging features, including metadata, compression, and alpha channel transparency
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
CMU-Raster
Use CMU-Raster when…
- Historical UNIX / Andrew Project Archival
- Legacy Academic Computing Research
PPM
Use PPM when…
- Intermediary Format for Image Format Conversion
- Academic Computer Graphics and Raytracing Output
- Unix/Linux Command-Line Image Pipelines