A PDF is a page, not a document
Word processors store meaning: this is a heading, this is a paragraph, these words belong together. A PDF stores appearance: put this glyph at this coordinate in this font at this size. That single difference explains almost every frustration people have with PDF editing.
There are no paragraphs to reflow. There is often no space character — words are separated by moving the drawing position along instead. Lines are frequently split into many small runs whenever the font, size or spacing changes mid-line. A PDF editor's first job is to reassemble those fragments into something a person can sensibly click on.
What editors actually do
No mainstream editor rewrites the page's instruction stream in place — it is too fragile. They all do a version of the same three-step move:
- Read the text run and record its exact position, size, angle and colour.
- Cover it with a patch painted in the background colour of that spot.
- Draw the replacement text on the same baseline.
Done well the join is invisible. Done badly you get the familiar symptoms: a white block where the background was grey, a line in the wrong typeface, text squeezed to a smaller size to fit.
Why the font changes, and how to avoid it
Fonts are normally embedded in the PDF, and usually subset — only the glyphs the document actually used are included. An editor that ignores this substitutes Helvetica and the line stands out immediately.
The better approach is to extract the embedded font, reuse it, and re-embed it on save. The catch is subsetting: if you type a character the document never contained, there is no glyph for it and a fallback is unavoidable. A good editor tells you which character caused it rather than silently changing the font. There is a longer explanation in why PDF fonts change.
Keeping the layout intact
Replacement text is rarely the same width as what it replaces. You have two options, and the right one depends on where the text sits:
- Let the line grow. Correct for headings, body text and anything with space to the right.
- Condense it back to the original width. Necessary inside table cells and multi-column layouts, where a line that grows will collide with its neighbour.
Things to check before sending
- Select all and copy into a text editor — confirms nothing you covered is still readable.
- Print to paper or to PDF — catches text that overflows a cell in a way the screen hid.
- Open it in a second reader. Chrome, Acrobat and Preview handle edge cases differently.
Questions
Why can I not edit some PDFs at all?
Because they have no text in them. A scan is a photograph of a page; the words are pixels, not characters. OCR software can add a text layer, or you can cover the area and retype it.
Why does my line break into pieces when I click it?
The original was drawn as several runs — a bold word, a different size, or unusual spacing. A good editor groups them back into one editable line, which is what happens here.
Is editing a PDF legal?
Editing your own documents is entirely normal. Altering a document issued by someone else in order to mislead is not, and the rules depend on the document and your jurisdiction.
Should I edit the PDF or the original file?
Edit the source document if you have it — you will get a better result with less effort. PDF editing is for when the source is gone, was never yours, or the change is too small to justify regenerating everything.
Start editing
The editor opens instantly and runs on your own machine. Nothing is uploaded, and there is no account to create.