Free webp to jpg
Image MIME Reference
APNG

Animated Portable Network Graphics

image/vnd.mozilla.apng
VS

Truevision TGA (Legacy MIME Alias)

image/x-tga
TGA

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

APNG wins on browser support

Feature Support

Feature APNG TGA
Transparency (Alpha) Yes Yes
Animation Support Yes ✕ No
Progressive Loading Yes ✕ No
HDR Support ✕ No ✕ No
EXIF Metadata Yes ✕ No
ICC Color Profile Yes ✕ No
Animated Portable Network Graphics
image/vnd.mozilla.apng
Extension
.apng.png
Container PNG Chunk Stream
Compression Deflate (Lossless)
Algorithm
Deflate (zlib)
Color Depth 8-bit (Indexed), 24-bit (TrueColor), 32-bit (RGBA)
Developed by Mozilla Corporation (Stuart Parmenter & Vladimir Vukićević)
Released 2004
Magic Bytes
89 50 4E 47 0D 0A 1A 0A
Full APNG 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 APNG TGA
Chrome Chrome
✓ 59
Firefox Firefox
✓ 3
Safari Safari
✓ 8
Edge Edge
✓ 79
IE IE (Legacy)
APNG

APNG Strengths

  • Supports 8-bit alpha transparency, completely solving the ugly 'white halo' problem inherent to GIFs
  • Gracefully degrades; viewers that do not support APNG will render a perfectly valid, static PNG of the first frame
  • Provides lossless compression that retains absolute pixel-perfect quality for UI elements and line art
Limitations
  • Because it relies on lossless Deflate compression, file sizes for complex, video-like animations can be massive compared to lossy formats like WebP or AVIF
  • Was initially rejected by the official PNG group, delaying its adoption for nearly a decade
  • Lacks native hardware decoding acceleration, unlike video-based animated formats (like MP4 or WebM)
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

APNG
Use APNG when…
  • High-Quality Web Animations
  • Stickers (Apple iMessage, LINE, Discord)
  • UI Loaders with Alpha Transparency
  • GIF Replacement
TGA
Use TGA when…
  • Video Game 3D Textures and Materials
  • 3D Rendering and Animation Sequences
  • Legacy Video Production Workflows
Share this comparison