Free webp to jpg
Image MIME Reference
PPM

Portable Pixmap

image/x-portable-pixmap
VS

Truevision TGA (Legacy MIME Alias)

image/x-tga
TGA

A complete technical comparison of Portable Pixmap and Truevision TGA (Legacy MIME Alias) — covering compression, feature support, browser compatibility, magic bytes, and when to choose each format.

Equal browser support

Feature Support

Feature PPM TGA
Transparency (Alpha) ✕ No Yes
Animation Support ✕ No ✕ No
Progressive Loading ✕ No ✕ No
HDR Support Yes ✕ No
EXIF Metadata ✕ No ✕ No
ICC Color Profile ✕ No ✕ No
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)
Full PPM reference →
Truevision TGA (Legacy MIME Alias)
image/x-tga
Extension
.tga.icb.vda.vst
Container Truevision TGA Footer/Header
Compression Uncompressed / Run-Length Encoding (RLE)
Algorithm
NoneRLE
Color Depth 8-bit (Grayscale or Indexed), 16-bit (High Color), 24-bit (True Color), 32-bit (True Color with Alpha Channel)
Developed by Truevision Inc.
Released 1984
Magic Bytes
54 52 55 45 56 49 53 49 4F 4E 2D 58 46 49 4C 45 2E 00 (At the end of the file)
Full TGA reference →

Browser Support Comparison

Browser PPM TGA
Chrome Chrome
Firefox Firefox
Safari Safari
Edge Edge
IE IE (Legacy)
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
TGA

TGA Strengths

  • Incredibly simple byte layout allows developers to write custom loaders and exporters in a few dozen lines of code, bypassing the need for heavy external libraries
  • Native support for 8-bit alpha channels ensures flawless transparency masking for real-time 3D rendering
  • Fast, predictable RLE decoding requires almost no CPU overhead compared to DEFLATE (PNG) or DCT (JPEG)
Limitations
  • RLE compression is relatively weak by modern standards, resulting in large file sizes
  • Lacks a standard magic byte header at the beginning of the file, making file-sniffing unreliable for older v1.0 files
  • Zero support in web browsers; must be converted to PNG or WebP for web delivery

When to choose which format

PPM
Use PPM when…
  • Intermediary Format for Image Format Conversion
  • Academic Computer Graphics and Raytracing Output
  • Unix/Linux Command-Line Image Pipelines
TGA
Use TGA when…
  • Video Game 3D Textures and Materials
  • 3D Rendering and Animation Sequences
  • Legacy Video Production Workflows
Share this comparison