Image MIME Reference
BTIF
Bank Telecommunications Image Format
image/prs.btif
VS
Portable Anymap
image/x-portable-anymap
PNM
A complete technical comparison of Bank Telecommunications Image Format and Portable Anymap — covering compression, feature support, browser compatibility, magic bytes, and when to choose each format.
Equal browser support
Feature Support
| Feature | BTIF | PNM |
|---|---|---|
| Transparency (Alpha) | ✕ No | ✕ No |
| Animation Support | ✕ No | ✕ No |
| Progressive Loading | ✕ No | ✕ No |
| HDR Support | ✕ No | ✕ No |
| EXIF Metadata | ✕ No | ✕ No |
| ICC Color Profile | ✕ No | ✕ No |
Bank Telecommunications Image Format
image/prs.btif
Extension
.btif.btf
Container
Proprietary Check Image Container
Compression
Lossy (JPEG-based) / Lossless (TIFF-based)
Algorithm
JPEGTIFF-variant
Color Depth
1-bit (B&W), 8-bit (Grayscale)
Developed by
NationsBank (Bank of America) / Ben Simon
Released
1998
Magic Bytes
Unknown (Proprietary container)
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 | BTIF | PNM |
|---|---|---|
|
|
✕ | ✕ |
|
|
✕ | ✕ |
|
|
✕ | ✕ |
|
|
✕ | ✕ |
|
|
✕ | ✕ |
BTIF
BTIF Strengths
- Allowed early digital archiving and web-based transmission of cleared bank checks
- Encapsulated both image data and ASCII transaction metadata in a single file
Limitations
- Completely proprietary and obsolete format
- Lacks native support in modern operating systems and image viewers
- Requires legacy plugins or specialized bio-format readers (like ImageC) to decode
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
BTIF
Use BTIF when…
- Bank Check Archiving (Legacy)
- Financial Transaction Records
PNM
Use PNM when…
- Unix/Linux Command-Line Image Processing (Netpbm suite)
- Academic Computer Vision Research
- Intermediary Format for Image Format Conversion