Skip to content
>_ TrueFileSize.com

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.

avif previewAVIF

sample-100kb.avif

100 KB

1280×720 · 8-bit · sRGB

Verified file details
Filename
sample-100kb.avif
Exact size
102,400 bytes
Displayed size
100 KB
MIME type
application/octet-stream
Dimensions
1,280 x 720 px
Bit depth
8-bit
Color space
sRGB
License
CC0 / Public Domain
Download URL
https://truefilesize.com/files/avif/sample-100kb.avif

See how TrueFileSize generates and measures sample files, or review the editorial policy.

avif previewAVIF

sample-500kb.avif

500 KB

1920×1080 · 8-bit · sRGB

Verified file details
Filename
sample-500kb.avif
Exact size
512,000 bytes
Displayed size
500 KB
MIME type
application/octet-stream
Dimensions
1,920 x 1,080 px
Bit depth
8-bit
Color space
sRGB
License
CC0 / Public Domain
Download URL
https://truefilesize.com/files/avif/sample-500kb.avif

See how TrueFileSize generates and measures sample files, or review the editorial policy.

avif previewAVIF

sample-1mb.avif

1 MB

1920×1080 · 10-bit · sRGB

Verified file details
Filename
sample-1mb.avif
Exact size
1,048,576 bytes
Displayed size
1 MB
MIME type
application/octet-stream
Dimensions
1,920 x 1,080 px
Bit depth
10-bit
Color space
sRGB
License
CC0 / Public Domain
Download URL
https://truefilesize.com/files/avif/sample-1mb.avif

See how TrueFileSize generates and measures sample files, or review the editorial policy.

avif previewAVIF

sample-5mb.avif

5 MB

3840×2160 · 10-bit · sRGB

Verified file details
Filename
sample-5mb.avif
Exact size
5,242,880 bytes
Displayed size
5 MB
MIME type
application/octet-stream
Dimensions
3,840 x 2,160 px
Bit depth
10-bit
Color space
sRGB
License
CC0 / Public Domain
Download URL
https://truefilesize.com/files/avif/sample-5mb.avif

See how TrueFileSize generates and measures sample files, or review the editorial policy.

avif previewAVIF

sample-10mb.avif

10 MB

3840×2160 · 12-bit · sRGB

Verified file details
Filename
sample-10mb.avif
Exact size
10,485,760 bytes
Displayed size
10 MB
MIME type
application/octet-stream
Dimensions
3,840 x 2,160 px
Bit depth
12-bit
Color space
sRGB
License
CC0 / Public Domain
Download URL
https://truefilesize.com/files/avif/sample-10mb.avif

See how TrueFileSize generates and measures sample files, or review the editorial policy.

avif previewAVIF

sample-lossless.avif

2 MB

1920×1080 · 8-bit · sRGB

Verified file details
Filename
sample-lossless.avif
Exact size
2,097,152 bytes
Displayed size
2 MB
MIME type
application/octet-stream
Dimensions
1,920 x 1,080 px
Bit depth
8-bit
Color space
sRGB
License
CC0 / Public Domain
Download URL
https://truefilesize.com/files/avif/sample-lossless.avif

See how TrueFileSize generates and measures sample files, or review the editorial policy.

avif previewAVIF

sample-transparent.avif

1 KB

800×600 · 8-bit · transparent · sRGB

Verified file details
Filename
sample-transparent.avif
Exact size
1,024 bytes
Displayed size
1 KB
MIME type
application/octet-stream
Dimensions
800 x 600 px
Bit depth
8-bit
Transparency
Yes
Color space
sRGB
License
CC0 / Public Domain
Download URL
https://truefilesize.com/files/avif/sample-transparent.avif

See how TrueFileSize generates and measures sample files, or review the editorial policy.

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

FeatureAVIFWebPJPEG
Lossy compression~50% smaller~30% smallerbaseline
Lossless compressionBestGoodN/A
TransparencyYesYesNo
HDR / Wide gamut10/12-bit8-bit only8-bit only
Browser support92%+96%+100%
Encoding speedSlowFastFast

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 onAV1 video codec (AOMedia)
ContainerHEIF (ISO/IEC 23008-12)
CompressionLossy and lossless
Bit depth8, 10, and 12-bit
Color spacesRGB, Display P3, BT.2020
TransparencyFull alpha channel
AnimationSupported (AVIF sequence)
Max dimensions65536×65536 pixels

Frequently Asked Questions

What is AVIF?
AVIF (AV1 Image File Format) is a modern, open-source image format based on the AV1 video codec. Developed by the Alliance for Open Media (Google, Apple, Mozilla, Netflix), AVIF delivers up to 50% better compression than JPEG while supporting transparency, HDR (10/12-bit), wide color gamuts, and animation. It is royalty-free and supported by Chrome, Firefox, Safari, and Edge.
AVIF vs JPG — Which is better?
AVIF is significantly better than JPG (JPEG) for file size: a typical AVIF image is 50% smaller at the same visual quality. AVIF also supports features JPEG lacks entirely — transparency, HDR, 10/12-bit color depth, and wide gamut (Display P3). The tradeoff: AVIF encoding is slower and browser support is 92% vs JPEG's 100%. For web use, serve AVIF with a JPEG fallback via the <picture> tag.
AVIF vs WebP — Which should I use?
AVIF offers ~20% better compression than WebP at the same quality. However, WebP has slightly broader browser support (96% vs 92%) and much faster encoding. Best practice: serve both with <picture> tag — AVIF first, WebP second, JPEG last. Most CDNs (Cloudflare, Imgix, Cloudinary) handle this automatically via content negotiation.
Does AVIF support transparency?
Yes. AVIF supports a full alpha channel for transparency, similar to PNG and WebP. Unlike PNG however, AVIF compresses transparent images much more efficiently. Our sample-transparent.avif demonstrates AVIF alpha channel support — download it to test transparency handling in your application.
Why is AVIF encoding so slow?
AVIF uses the AV1 codec which was designed for maximum compression, not speed. Encoding a single image can take 5–20x longer than JPEG or WebP. This makes AVIF ideal for pre-generated assets (static sites, CDNs) but less suitable for real-time encoding. Hardware AV1 encoders are steadily improving this gap.
How do I convert images to AVIF?
CLI: avifenc input.png output.avif (libavif). Node.js: sharp('input.jpg').avif({ quality: 50 }).toFile('output.avif'). Online: squoosh.app. CDNs like Cloudflare, Imgix, and Cloudinary can auto-convert to AVIF based on the Accept header.

Other image formats

Related reading