keptlocal
Files never leave your browser

PDF Info Viewer

Drop a PDF to instantly see its page count, file size, PDF version, page dimensions, and embedded metadata like title, author, and creation date. Nothing is uploaded.

Drop a PDF here, or

Files never leave your browser.

Upload a PDF to inspect it.

How to view PDF information

  1. Drop your PDF into the zone above, or click to browse. Results appear in under a second.
  2. The tool reports three groups of information: File (name, size, PDF version), Pages (count, orientation, dimensions), and Metadata (title, author, dates, and more).
  3. Click Copy to copy all information to your clipboard as plain text — useful for filing a bug report, documenting a file for an archive, or pasting into a spreadsheet.

Everything runs in your browser using pdf-lib. No file is sent to a server — open DevTools (F12) → Network while inspecting to confirm there are no upload requests.

When to check PDF info

  • Before sending a file — confirm the page count is correct after merging or splitting, or verify the file size is within an email attachment limit.
  • Checking a client-supplied PDF before printing — verify page dimensions match the expected print size (A4, Letter, etc.) and that the PDF version is compatible with your RIP or printer software.
  • Auditing document metadata for privacy — PDFs exported from Word, Excel, or design tools often carry the author's full name, company, and revision history in their metadata. Check before sending externally.
  • Debugging a PDF that won't open correctly — the PDF version number helps identify compatibility issues with older viewers.
  • Verifying a scanned document — confirm how many pages were captured and whether any came out landscape when they should be portrait.
  • Archiving documents — record page count, file size, and creation date as part of a document management workflow.

What each field means

PDF version — the PDF specification has evolved from version 1.0 (1993) through 1.7 (2008) to 2.0 (2017). Higher versions may use features not supported by older readers. Most PDFs in circulation today are version 1.4–1.7.

Page size in points — PDF dimensions are measured in points, where 1 point = 1/72 of an inch. A standard A4 page is 595 × 842 points. US Letter is 612 × 792 points. The tool also displays dimensions in millimetres and inches for convenience.

Mixed page sizes — when a PDF contains pages of different dimensions (common in reports with landscape appendices or slide decks exported from presentation software), the tool lists each unique size and the number of pages that use it.

Creator vs. Producer — the Creator field records the application that originally generated the content (e.g. "Microsoft Word 16.0"). Producer records the software that converted it to PDF (e.g. "Adobe PDF Library 15.0"). A PDF printed to PDF from a browser might show Chrome as the Producer.

Blank metadata fields — metadata is entirely optional in the PDF format. Many PDFs — particularly those generated programmatically or exported from lightweight tools — have no title, author, or date fields set at all.

How it works under the hood

When you drop a PDF, the browser reads the file bytes into an ArrayBuffer using the File API. pdf-lib parses the PDF's cross-reference table and object dictionary to extract structural information (page count, page sizes) and the document information dictionary (title, author, dates, etc.).

The PDF version is read directly from the file header — the first line of every valid PDF is a comment like %PDF-1.7 that declares the spec version used.

Page dimensions are retrieved from each page's MediaBox entry, which defines the full page boundary in points. The tool checks all pages and groups them by size, so mixed-size documents are reported accurately.

Privacy: what happens to your file

Your PDF is parsed entirely in browser memory. Nothing is uploaded, nothing is stored, nothing is logged. The tool reads metadata and displays it — the data goes from your disk to your screen and nowhere else.

This is particularly relevant when auditing metadata for privacy. If you are checking whether a document exposes your name or employer before sending it externally, you can do that audit here without handing the document to a third-party server in the process.

Frequently asked questions

Are my files uploaded to a server?
No. The PDF is read and parsed entirely in your browser using pdf-lib. Your file never leaves your device.
What metadata can I see?
Page count, file size, PDF version, page dimensions (width × height in mm and inches), title, author, subject, creator application, producer, creation date, and modification date.
Why are some metadata fields blank?
PDF metadata is optional. Many PDFs — especially those exported from tools like Word or printed to PDF — omit fields like Title or Author entirely. Blank fields mean the PDF has no value stored for that property.
What does 'mixed page sizes' mean?
Some PDFs contain pages of different dimensions — for example a portrait report with a landscape appendix. The tool reports each unique size found and how many pages use it.
Can I edit the metadata?
This tool is read-only. Editing PDF metadata requires a PDF editor.
What is the PDF version number?
The PDF specification has evolved through versions 1.0 to 1.7 and 2.0. The version stored in the file header indicates which features it may use. Most modern PDFs are version 1.4–1.7.