Reference Formats
PNG
A lossless, DEFLATE-compressed raster format created as a patent-free, alpha-channel-capable replacement for GIF, standardized by the W3C.
Extension
.png
Full name
Portable Network Graphics
Introduced
Specification frozen 1995; W3C Recommendation October 1, 1996
Vendor
PNG Development Group, standardized by the World Wide Web Consortium (W3C)
What is inside the container
PNG uses lossless DEFLATE compression (LZ77 plus Huffman coding, unencumbered by patents) and supports indexed color, grayscale, and truecolor up to 16 bits per channel with a full alpha channel — up to 64 bits per pixel total. It carries EXIF via the eXIf chunk (added to the core W3C spec in the Third Edition, June 2025), XMP via iTXt chunks, and ICC profiles via the iCCP chunk, though many export pipelines (browsers, screenshot tools, older editors) still omit this metadata by default.
How to open it
For archives
A solid master format for graphics, screenshots, logos, and anything requiring transparency or exact lossless fidelity, but it is not the standard choice for archiving photographic scans — TIFF and JPEG 2000 dominate there because of broader bit-depth, CMYK, and multi-page support. Use PNG as the DAM master specifically for lossless graphic assets, not as a general photography archive format.
PNG exists because of a licensing dispute, not a technical shortfall in GIF’s image quality. In late 1994 Unisys announced it would enforce its patent on the LZW compression algorithm used inside GIF, prompting an independent PNG Development Group to design a royalty-free, technically improved lossless replacement built on the unpatented DEFLATE algorithm. The specification froze in early 1995, and PNG became a W3C Recommendation on October 1, 1996 — with a Third Edition in June 2025 adding animation (APNG), HDR support, and a formal EXIF chunk to the core standard.
In a DAM, PNG is the default choice whenever lossless fidelity or alpha-channel transparency matters more than file size: logos, icons, UI assets, screenshots, and diagrams typically live and get previewed as PNG rather than JPEG, since JPEG’s compression artifacts and lack of transparency would be unacceptable for that content. Because DEFLATE compression is lossless, PNG derivatives can be regenerated repeatedly without generation loss, which makes it a safe intermediate format in editing pipelines.
The recurring pitfall for DAM ingestion is metadata poverty: even though the PNG spec has supported XMP for years and gained a formal EXIF chunk only in 2025, most PNG-producing tools — browsers, screenshot utilities, many older editors — still don’t embed it by default. A DAM that expects to auto-populate search fields the way it does from JPEG camera files will often find PNGs arriving metadata-empty, so PNG assets frequently depend more heavily on manual tagging or filename-based ingestion rules than on embedded metadata extraction.
Frequently asked
Is PNG a good DAM master format?
Yes, specifically for graphics, screenshots, logos, and anything requiring transparency or exact lossless fidelity. It is not the standard choice for archiving photographic scans, where TIFF and JPEG 2000 dominate because of broader bit-depth, CMYK, and multi-page support.
Why was PNG created?
PNG exists because of a licensing dispute, not a technical shortfall: in late 1994 Unisys announced it would enforce its patent on the LZW compression used inside GIF, prompting the independent PNG Development Group to design a royalty-free, unpatented DEFLATE-based lossless replacement.
Does PNG support alpha transparency?
Yes. PNG's alpha channel supports a full 8-bit range — 256 levels of partial transparency per pixel — rather than the binary on/off masking GIF uses. Combined with indexed, grayscale, or truecolor modes up to 16 bits per channel, PNG can represent up to 64 bits per pixel including alpha. That granularity is what lets soft edges, drop shadows, and semi-transparent overlays render cleanly instead of the jagged, single-color fringing GIF transparency produces.
Does PNG carry EXIF metadata?
It can, via the eXIf chunk, but that was only added to the core W3C spec in the Third Edition in June 2025. Many export pipelines — browsers, screenshot tools, older editors — still omit embedded metadata by default.
Why do PNG assets often arrive in a DAM with no metadata?
Even though the PNG spec supports XMP (iTXt chunks) and now a formal EXIF chunk, most PNG-producing tools don't embed it by default, so PNG assets frequently depend more on manual tagging or filename-based ingest rules than on embedded metadata extraction.
Is PNG safe for repeated editing without quality loss?
Yes. PNG uses lossless DEFLATE compression, so re-saving a PNG never discards pixel data the way JPEG's lossy re-encoding does with each pass. Open, edit, and save a PNG a hundred times and — provided the underlying pixel content is unchanged — the decompressed image data comes back byte-identical to the original every time. That makes PNG a safe intermediate or working format for multi-step editing pipelines, unlike JPEG, where repeated open-edit-save cycles compound generation loss with each save.
What compression does PNG use?
PNG uses DEFLATE, the same lossless compression algorithm behind ZIP archives and gzip. DEFLATE combines LZ77 dictionary-based redundancy elimination with Huffman entropy coding to shrink file size without discarding any pixel data — decompression reconstructs the image pixel-for-pixel identical to the source. DEFLATE was deliberately chosen because it was unencumbered by patents, unlike GIF's LZW, whose Unisys patent enforcement in 1994 was the direct reason PNG was created in the first place.
What metadata mechanisms does PNG support?
PNG supports several metadata channels: tEXt and iTXt chunks hold arbitrary key-value text pairs (including embedded XMP packets), iCCP chunks carry ICC color profiles, and — since the Third Edition became a W3C Recommendation in June 2025 — a dedicated eXIf chunk carries native EXIF data, which previously had to be wrapped inside XMP. In practice, though, most PNG-producing tools (browsers, screenshot utilities, many editors) still don't populate these chunks by default, so PNGs often arrive with no embedded metadata at all.
Sources
- PNG's specification was frozen in early 1995 and became a W3C Recommendation on October 1, 1996. checked 2026-08-07 — libpng.org: History of PNG
- PNG's Third Edition, adding APNG, HDR, and a native EXIF chunk, became a W3C Recommendation on June 24, 2025. checked 2026-08-07 — W3C News: PNG Third Edition is now a W3C Recommendation
- PNG was designed as a patent-free replacement for GIF after Unisys asserted its LZW patent. checked 2026-08-07 — libpng.org PNG book, chapter 7