Free webp to jpg
Image MIME Reference
AVCI

AVC Image (HEIF Container)

image/avci
VS

Portable Bitmap

image/x-portable-bitmap
PBM

A complete technical comparison of AVC Image (HEIF Container) and Portable Bitmap — covering compression, feature support, browser compatibility, magic bytes, and when to choose each format.

Equal browser support

Feature Support

Feature AVCI PBM
Transparency (Alpha) Yes ✕ No
Animation Support ✕ No ✕ No
Progressive Loading ✕ No ✕ No
HDR Support Yes ✕ No
EXIF Metadata Yes ✕ No
ICC Color Profile Yes ✕ No
AVC Image (HEIF Container)
image/avci
Extension
.avci.hif
Container HEIF / ISOBMFF (ISO/IEC 14496-12)
Compression Lossy / Lossless
Algorithm
AVC (Advanced Video Coding / H.264)
Color Depth 8-bit, 10-bit, 12-bit
Developed by Moving Picture Experts Group (MPEG) / ISO/IEC JTC 1
Released 2015
Magic Bytes
XX XX XX XX 66 74 79 70 61 76 63 69
Full AVCI reference →
Portable Bitmap
image/x-portable-bitmap
Extension
.pbm
Container Netpbm
Compression Uncompressed
Algorithm
None
Color Depth 1-bit (Monochrome)
Developed by Jef Poskanzer (Netpbm Project)
Released 1988
Magic Bytes
50 31 (ASCII) or 50 34 (Binary)
Full PBM reference →

Browser Support Comparison

Browser AVCI PBM
Chrome Chrome
Firefox Firefox
Safari Safari
Edge Edge
IE IE (Legacy)
AVCI

AVCI Strengths

  • Shares the robust, flexible HEIF container architecture that allows for rich metadata, HDR, and depth maps.
  • Backed by the highly ubiquitous AVC (H.264) codec, which is widely supported in hardware decoding.
  • Supports rectangular cropping and rotation metadata without needing to re-encode the pixel data.
Limitations
  • No native support within web browsers for HTML rendering.
  • Inferior compression efficiency when compared to newer container formats like HEIC (HEVC) or AVIF (AV1).
  • Easily confused with HEIC and AVIF, which use the same base ISOBMFF container.
PBM

PBM Strengths

  • Absolute structural simplicity allows parsers to be written from scratch with just a few lines of code
  • ASCII encoding allows manual editing and debugging directly within a standard text editor
  • Serves as a flawless, lossless intermediary for 1-bit raster data like scanned documents or barcodes
Limitations
  • Strictly limited to 1-bit monochrome images; cannot natively display shades of gray or color
  • Lack of compression results in extremely large file sizes, particularly when using the ASCII 'P1' encoding
  • No support for alpha transparency or modern metadata standards like EXIF

When to choose which format

AVCI
Use AVCI when…
  • Digital Photography
  • Camera Capture
  • Archival Storage
PBM
Use PBM when…
  • Optical Character Recognition (OCR) Pre-processing
  • Unix/Linux Command-Line Image Pipelines
  • Academic Image Processing Teaching
Share this comparison