Skip to content

A 100 KB WEBP test file

100% Free No signup Instant download Browser-only 5 languages
Free download(100 KB)

webp-100kb.webp

File info

File Format WEBP
File Size 100 KB(102,400 bytes)
MIME Type image/webp
MD5 9e8f93e8061c98d9d78119fe6434ffe1
SHA-1 fd963bae6355d3e4158a5065e31173b11d3b6f7d
SHA-256 dbfff85ae987686c1df2fc0cd38afff93a7b2e2016dc86c5d524a556d65128b6

Download via command line

curl
curl -O https://devlab.itlibra.com/files/images/webp/webp-100kb.webp
wget
wget https://devlab.itlibra.com/files/images/webp/webp-100kb.webp
PowerShell
Invoke-WebRequest -Uri "https://devlab.itlibra.com/files/images/webp/webp-100kb.webp" -OutFile "webp-100kb.webp"

About this file

A 100 KB test file in WEBP format, sized to exactly 102,400 bytes. Free to download with no signup, for verifying upload limits and file-handling behaviour.

The MD5, SHA-1 and SHA-256 values listed above are the real digests of this file. Recomputing them after download confirms the transfer was not corrupted, and they double as known-good expected values when testing a hashing library.

What this size means in practice

100 KB sits at the boundary between "trivially small" and "realistic payload". It is close to the total transfer weight of a single lean web page and is a common target size for performance-conscious images.

It clears the sub-1 MB caps many applications impose, but it is still small enough that a naive load-everything-into-memory implementation works fine — so it is not the right size for proving that streaming is necessary. Pair it with 10 MB or larger to see the difference.

Getting a feel for this size

On a 10 Mbps link the transfer takes roughly 82 ms, and about 8 ms at 100 Mbps. Base64-encoded it grows to roughly 133 KB.

Estimating a photographic WEBP at roughly 0.15 bytes per pixel, this size works out to around 682,667 pixels — about 954 × 716 px at a 4:3 aspect ratio. Compression varies enormously with image content, so treat this purely as an order-of-magnitude figure.

What to check for this format

WebP uses a RIFF container: the file starts with RIFF and has WEBP at byte 9. It supports lossy, lossless, alpha, and animation — but detecting it from the extension or only the first four bytes risks confusing it with other RIFF-based formats.

  • Whether your server-side image library actually supports WebP — older GD or ImageMagick builds may not
  • Whether it is served as image/webp — a wrong Content-Type makes browsers download instead of render it
  • Whether the JPEG / PNG fallback in your <picture> element works for unsupported clients

FAQ

Is this file free to use?
Yes — fully free and no signup required. Use it for any commercial or non-commercial test/verification purpose.
What is inside the file?
Dummy data generated for testing — sized to match the listed size exactly.
What are the hash values for?
Verify integrity after download or use them as test data for hashing libraries.