A 50 MB JPG test file
File info
| File Format | JPG |
|---|---|
| File Size | 50 MB(52,428,800 bytes) |
| MIME Type | image/jpeg |
| MD5 | 9e06beb0fd5d47e555140b8542e1bb39 |
| SHA-1 | 0dec7e486a46f97459f088981cb83bd4c74cdb71 |
| SHA-256 | 3dcc43d00b363198c07b5dbf81e2bae081ffb4c0f7afcd7e704248c05a785860 |
Download via command line
curl -O https://devlab.itlibra.com/files/images/jpg/jpg-50mb.jpg
wget https://devlab.itlibra.com/files/images/jpg/jpg-50mb.jpg
Invoke-WebRequest -Uri "https://devlab.itlibra.com/files/images/jpg/jpg-50mb.jpg" -OutFile "jpg-50mb.jpg"
About this file
A 50 MB test file in JPG format, sized to exactly 52,428,800 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
50 MB is the point where GitHub starts warning you on push (it hard-rejects above 100 MB). In practice it is the decision line for whether a binary belongs in Git directly or should move to Git LFS.
At this scale, an implementation that buffers the whole request in memory burns 50 MB or more per worker process — ten concurrent uploads means 500 MB. It is a good size for verifying that streaming or spill-to-temp-file actually works.
Getting a feel for this size
On a 10 Mbps link the transfer takes roughly 41.9 seconds, and about 4.2 seconds at 100 Mbps. Base64-encoded it grows to roughly 68,267 KB.
Estimating a photographic JPG at roughly 0.2 bytes per pixel, this size works out to around 262,144,000 pixels — about 18,696 × 14,022 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.