Sample AVIF File Download — Free Test Images
Download free AVIF sample images — lossy, lossless, and transparent variants from 100KB to 10MB. Use these AVIF test files to verify browser compatibility, benchmark compression (AVIF vs WebP vs JPG), and test image processing pipelines. AVIF (AV1 Image File Format) delivers up to 50% better compression than JPEG.
sample-100kb.avif
1280×720 · 8-bit · sRGB
sample-500kb.avif
1920×1080 · 8-bit · sRGB
sample-1mb.avif
1920×1080 · 10-bit · sRGB
sample-5mb.avif
3840×2160 · 10-bit · sRGB
sample-10mb.avif
3840×2160 · 12-bit · sRGB
sample-lossless.avif
1920×1080 · 8-bit · sRGB
sample-transparent.avif
800×600 · 8-bit · transparent · sRGB
Use cases for sample AVIF files
- Testing AVIF support in image upload and processing pipelines
- Verifying AVIF-to-WebP/JPG fallback with <picture> tag
- Benchmarking AVIF vs WebP vs JPEG file sizes and quality
- Testing browser compatibility for AVIF rendering
- Verifying transparent AVIF alpha channel support
- Testing CDN image optimization and AVIF auto-negotiation
AVIF vs WebP vs JPEG — Compression comparison
| Feature | AVIF | WebP | JPEG |
|---|---|---|---|
| Lossy compression | ~50% smaller | ~30% smaller | baseline |
| Lossless compression | Best | Good | N/A |
| Transparency | Yes | Yes | No |
| HDR / Wide gamut | 10/12-bit | 8-bit only | 8-bit only |
| Browser support | 92%+ | 96%+ | 100% |
| Encoding speed | Slow | Fast | Fast |
Browser support
Supported: Chrome 85+, Firefox 93+, Safari 16+, Edge 121+, Opera 71+, Android Browser, Samsung Internet
Not supported: IE 11, older Safari (15 and below), older Firefox (92 and below)
Use the <picture> tag with WebP and JPG fallbacks for maximum compatibility.
How to serve AVIF with fallback
<picture>
<source srcset="image.avif" type="image/avif">
<source srcset="image.webp" type="image/webp">
<img src="image.jpg" alt="Description">
</picture>Browsers pick the first supported format. AVIF-capable browsers load .avif, others try .webp, and the rest fall back to .jpg. No JavaScript needed.
Technical specifications
| Based on | AV1 video codec (AOMedia) |
| Container | HEIF (ISO/IEC 23008-12) |
| Compression | Lossy and lossless |
| Bit depth | 8, 10, and 12-bit |
| Color space | sRGB, Display P3, BT.2020 |
| Transparency | Full alpha channel |
| Animation | Supported (AVIF sequence) |
| Max dimensions | 65536×65536 pixels |
Frequently Asked Questions
Other image formats
Related reading
WebP vs PNG vs JPG — Which Format Should You Use?
Comprehensive comparison of WebP, PNG, and JPG image formats. File size, quality, browser support, and when to use each format.
Image Optimization for Web Performance
Modern formats, responsive srcset, lazy loading, and CDN tricks. Cut LCP by 40% with proper image optimization. Sample JPG, PNG, and WebP files included.
SVG vs PNG for Icons — Which Wins in 2025?
When to use SVG, when to use PNG for favicons and UI icons. Accessibility, animation, file size, and caching — with side-by-side samples you can copy.