Skip to content

A 500 KB PDF test file

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

pdf-500kb.pdf

File info

File Format PDF
File Size 500 KB(512,000 bytes)
MIME Type application/pdf
MD5 aedae7ed406e054a51e5d2910176e131
SHA-1 4a32ad5125f9ba89f32752222b02f02740bc0cf7
SHA-256 510982a328ad650a703bf1324f879d548b5275192e66c71323c57634de01ca04

Download via command line

curl
curl -O https://devlab.itlibra.com/files/pdf/pdf-500kb.pdf
wget
wget https://devlab.itlibra.com/files/pdf/pdf-500kb.pdf
PowerShell
Invoke-WebRequest -Uri "https://devlab.itlibra.com/files/pdf/pdf-500kb.pdf" -OutFile "pdf-500kb.pdf"

About this file

A 500 KB test file in PDF format, sized to exactly 512,000 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

500 KB is a realistic size for a single high-resolution photo. It puts a load close to real-world data on front-end image optimisation and preview-generation paths.

Base64-encoded it grows to roughly 667 KB, because Base64 inflates data by about 33%. If you embed files in data URIs, email attachments, or JSON payloads, your limits must account for that expansion.

Getting a feel for this size

On a 10 Mbps link the transfer takes roughly 410 ms, and about 41 ms at 100 Mbps. Base64-encoded it grows to roughly 667 KB.

Assuming a text-oriented PDF with embedded fonts runs about 80 KB per page, this size is on the order of 6 pages. Image-heavy PDFs will hold far fewer pages at the same size.

What to check for this format

PDF starts with the %PDF- signature and keeps a cross-reference table (xref) at the end that points to every object. Because of that layout, losing the tail of the file makes the whole document unreadable — which makes PDF a good subject for truncation-detection tests.

  • Whether page-count extraction and text extraction finish without timing out on large files
  • The time and memory cost of thumbnail generation, i.e. rasterising the first page
  • Because PDF can embed JavaScript and external references, whether your sanitisation path runs when accepting user uploads

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.