Troubleshooting
What Is a PDF File, and Why Does It Behave Like That?
A plain explanation of what a PDF actually contains — which makes almost every frustrating thing about PDFs suddenly make sense.
PDF stands for Portable Document Format, published by Adobe in 1993 and an open ISO standard since 2008. Understanding one thing about how it works explains nearly every complaint people have about it.
The one thing to know
A PDF describes where marks go on a page. Not paragraphs, not headings, not tables — glyphs at coordinates, lines between points, images in rectangles. It is a description of a printed page rather than a document in the sense a word processor means.
That design achieves the goal it was built for: the page looks the same everywhere, on any device, in any year. Everything people find frustrating follows from the same decision.
Why PDFs behave the way they do
| Complaint | Explanation |
|---|---|
| Text is hard to edit | There are no paragraphs to re-flow, only glyphs at fixed positions |
| It does not adapt to a phone screen | The page has a fixed size by design |
| Copied text comes out jumbled | Text is extracted in drawing order, not reading order |
| Tables lose their structure | There is no table object — a table is text that happens to line up |
| Scanned PDFs are unsearchable | They contain pictures of text, not text |
| File sizes vary wildly | A page can be a few instructions or a 25-megapixel photograph |
What is inside the file
- Objects: pages, fonts, images, and the drawing instructions for each page.
- A cross-reference table saying where every object is — damage this and the file will not open.
- A page tree defining the order pages appear in.
- Metadata: author, title, creation date, producing software.
- Optionally: annotations, form fields, bookmarks, attachments, encryption and digital signatures.
What PDFs are genuinely good at
Fixed appearance across every device and decade. Print fidelity. Embedded fonts. Digital signatures. Broad support — every operating system opens one without extra software. For a document that must be reproduced exactly, nothing else comes close.
What they are bad at
Reading on a phone, being edited, holding structured data, and accessibility unless deliberately tagged. If your content will mostly be read on screens and needs to be updated, an HTML page is a better home for it — and you can still offer the PDF for people who want to print or file it.
Do it now
Merge PDF
Combine multiple PDFs into a single file. It runs in this browser tab — your file is not uploaded anywhere.
Open Merge PDFFrequently asked questions
Why can I not edit PDF text easily?+
Because the format stores positioned glyphs rather than flowing paragraphs. There is no text flow to re-wrap.
Are all PDFs the same?+
No. Digital PDFs contain real text; scanned ones contain images. Everything you can do with a file depends on which it is.
Is PDF proprietary?+
It has been an open ISO standard since 2008 and can be implemented by anyone.
Why are PDFs bad on phones?+
The page size is fixed by design, so text cannot reflow to a narrow screen.