Reference Formats
PBM
The simplest Netpbm raster format, storing 1-bit-per-pixel monochrome bitmap data in either plain-text or raw binary form for maximum portability between imaging tools.
Extension
.pbm
Full name
Portable Bitmap
Introduced
1980s, distributed publicly as part of Pbmplus in 1988
Vendor
Jef Poskanzer / the Netpbm project
What is inside the container
A PBM file is just a short text header (magic number, width, height) followed by raw black/white bit data, with no compression and no color. It has no capacity for embedded EXIF, IPTC, XMP, or ICC metadata, and no concept of layers or transparency; the plain-text variant was originally designed to survive being pasted into an email message intact.
How to open it
For archives
Do not use PBM as a DAM archival master for photographic or graphic assets — it cannot carry rights, creator, or descriptive metadata, and 1-bit depth throws away tonal information. Treat it strictly as a pipeline intermediate (fax/OCR/print-mask workflows) and convert to TIFF or PNG on ingest if the asset needs to live in a catalog long-term.
Jef Poskanzer created PBM in the 1980s as the deliberately minimal common denominator for exchanging bitmap images between the many incompatible graphics tools of the era, and folded it into the Pbmplus toolkit he distributed in 1988 — the direct ancestor of today’s Netpbm project. The design goal was portability over sophistication: a format so simple that any programmer could write a parser in an afternoon, and so plain-text-friendly that a bitmap could survive being routed through early email systems that mangled binary attachments.
That minimalism is exactly what makes PBM a poor fit for a DAM catalog. There is no field for a caption, copyright notice, or keyword, and no color information at all — a PBM file is pure black-and-white geometry. Where PBM still shows up in modern pipelines is as an intermediate step: OCR engines, fax transmission, and some print-imposition tools still emit or expect 1-bit PBM data. A DAM that receives PBM files from a scanning or OCR vendor should treat them as transient working files and convert to a metadata-capable format (TIFF or PNG) rather than storing PBM as the asset of record.
Frequently asked
Can PBM store the descriptive metadata a DAM catalog needs?
No. PBM has no capacity for embedded EXIF, IPTC, XMP, or ICC metadata, so it cannot carry rights, creator, or descriptive information natively.
Should a DAM archive photographic assets as PBM?
No. PBM should never be used as an archival master; its 1-bit-per-pixel depth throws away tonal information, and it should be treated strictly as a pipeline intermediate for fax, OCR, or print-mask workflows.
What should a DAM do with an incoming PBM file meant for long-term cataloging?
Convert it to TIFF or PNG on ingest, since those formats can carry metadata and preserve more than 1-bit tonal information.
What does a PBM file actually contain?
A short text header with magic number, width, and height, followed by raw black-and-white bit data, with no compression, no color, and no layers or transparency.
Why was the plain-text variant of PBM designed the way it was?
It was originally built to survive being pasted directly into an email message intact, reflecting its origin as a lowest-common-denominator exchange format rather than a storage format.
What tools can open PBM files for DAM ingestion pipelines?
The Netpbm toolkit and ImageMagick's convert read and write PBM directly, and GIMP, IrfanView, and XnView can open it for quick inspection.
Is PBM color capable?
No. PBM is strictly 1-bit monochrome, black and white only; a color image needs PGM for grayscale or PPM for RGB, the other members of the Netpbm family.
What kind of workflow typically produces PBM files that a DAM might ingest?
Fax transmission, OCR preprocessing, and print-mask generation are typical sources, since PBM's simple 1-bit structure suits those pipeline stages rather than final photographic delivery.
Sources
- Jef Poskanzer invented the PBM format in the 1980s to provide a common, trouble-free bitmap format that could survive being sent through email. checked 2026-08-07 — Netpbm History
- Poskanzer distributed Pbmplus, the forerunner of Netpbm bundling the PBM tools, in 1988. checked 2026-08-07 — Wikipedia - Netpbm
- In the binary Netpbm formats, PBM uses 1 bit per pixel. checked 2026-08-07 — Adobe - What are PPM files and how do you open them?