Skip to content

A 100 MB JPG test file

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

jpg-100mb.jpg

File info

File Format JPG
File Size 100 MB(104,857,600 bytes)
MIME Type image/jpeg
MD5 c15b3bce35f2e25a7920de1026692709
SHA-1 fbdc284a0c878e5f5926fc5f9817382cf2aa3511
SHA-256 798dbf68a189640d4a10140f9e8f20655aeba2bb19f9c477e6fcd97a05e53e74

Download via command line

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

About this file

A 100 MB test file in JPG format, sized to exactly 104,857,600 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 MB is GitHub's hard per-file push limit and also the upload cap through Cloudflare's free plan. It is likewise the point where AWS S3 recommends multipart upload instead of a single PUT.

It also exercises your timeout configuration. On a 10 Mbps link the transfer alone takes about 80 seconds, so leaving PHP's max_execution_time (default 30s) or nginx's fastcgi_read_timeout (default 60s) untouched makes the upload fail on a timeout rather than on a size check.

Getting a feel for this size

On a 10 Mbps link the transfer takes roughly 83.9 seconds, and about 8.4 seconds at 100 Mbps. Base64-encoded it grows to roughly 136,533 KB.

Estimating a photographic JPG at roughly 0.2 bytes per pixel, this size works out to around 524,288,000 pixels — about 26,440 × 19,830 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

JPEG is lossy and has no transparency. Its signature begins with FF D8 FF. The single most common defect in real implementations is ignoring the EXIF Orientation tag, which makes rotated photos appear sideways in the browser.

  • Whether you read EXIF Orientation and auto-rotate, or deliberately strip it
  • Whether privacy-sensitive data such as GPS coordinates remains — stripping is mandatory for user-submitted images
  • Whether both progressive and baseline JPEG decode correctly — older decoders sometimes fail on progressive

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.