Why editing a PDF is so awkward
PDF stores where every glyph sits, not what the sentence is. There is no paragraph to reflow — because there is no paragraph.
Everyone who has tried to edit a PDF has had the same moment. You fix one word, and the line does not close up behind it. You widen a text box and the text does not reflow. You delete a sentence and a hole stays there, patiently, exactly the shape of the sentence. It feels like the software is being obstinate. It is not — editing a PDF is awkward because a PDF is not a document.
PDF is a print format wearing a document costume
A PDF stores where every glyph goes, not what the paragraph says. It is a description of a printed page: put this character at this coordinate on this sheet, in this font, at this size. That is the entire model. It was designed so a page would look identical on any machine forever, and it achieves that by throwing away the thing that would let it be flexible — the structure.
Here is what one paragraph really looks like. Take a plain sentence that wraps across three lines and pull the page apart. The page contains three separate drawing operations, each opening a text block, naming a font, setting an absolute position, and painting a run of characters. The positions come out as 54,700 then 54,684 then 54,668 — three fixed points, 16 points apart, each hard-coded. There is no instruction anywhere that says "these three lines are one sentence". Read the same page back through a PDF renderer and it reports three text items, each with its own transform, and nothing linking them.
So the second line is not below the first because it follows it. It is below the first because someone wrote down 684. Delete a word from line one and line two does not move up, because line two was never told it was after anything. There is no paragraph to reflow, no column to widen, no sentence to shorten. The file does not know a sentence exists.

Why every "edit PDF" product feels like a trick
Products that offer PDF editing have exactly two options, and both are compromises. The first is reconstruction: read the coordinates, guess which runs were probably a paragraph, guess the margins, guess the font, rebuild an editable model, and re-emit a page when you are done. This works remarkably well on a simple invoice and falls apart on a two-column journal article, because the guess is a guess. When an editor mangles your layout, that is the reconstruction being wrong about something the file never recorded.
The second option is more honest and less impressive: draw a white rectangle over the old words and type new ones on top. Nothing was edited. A patch was applied. It looks perfect until someone selects the text and finds the original sentence still sitting underneath the paint, which is the same mechanism that turns up in the news every couple of years when a redaction gets lifted in an afternoon.
A word about vocabulary, because the industry is slippery here. "Edit" in most PDF products means one of those two things, not what it means in a word processor. If a tool offers to edit your PDF and the result reflows correctly, it reconstructed your document and you should check every page. If it does not reflow, it drew over it. There is no third technique hiding behind a subscription.
What this site does instead
There is no text editor here, and that is a decision rather than a gap. Twenty-four tools, not one of which lets you retype a sentence in an existing PDF. Adding one would mean shipping the guess, and a guess that quietly reflows a contract is a worse outcome than a tool that admits it cannot do the job.
What exists instead is annotating, and the way it is built is worth being specific about. Your marks are drawn onto a fully transparent layer and stamped onto the page as an image with a real alpha channel — verified by embedding one and finding the soft mask written into the output, with an opaque control image that produced no mask, which is how you know the transparency is genuine and not assumed. The page itself is never rasterised. It is not redrawn, re-encoded or flattened. Your highlight sits above it like a sheet of acetate.
The practical consequence is the part most tools cannot offer: the page keeps its own text. After annotating, the original words are still real text — selectable, searchable, copyable, sharp at any zoom. Plenty of annotation tools rasterise the whole page to draw a single arrow on it, and hand you back a picture of your document. This one hands back your document with a picture on top. The obvious exception is a page that had no real text to begin with, which is every scan ever made — preserving its text is a promise about nothing.

The limits of drawing on top
Overlays cost you something, and it is the mirror image of what they buy. Text you type with the annotate tool is baked into that transparent image — it is a picture of your words, not words. It will not be searchable, it will not be selectable, and it will soften if someone zooms far enough in. The page underneath stays crisp text; the thing you just added does not.
The resolution is finite too. The overlay is generated from the page preview, which renders at 1.5x PDF user space — roughly 108 DPI — and is capped at 1000 pixels wide. That is comfortably enough for a signature, an arrow or a circle around a clause, and it is not enough for hairline-thin work on a large-format drawing. This is a raster layer sitting on a vector page, and if that distinction is new, it is the whole subject of vector and raster in a PDF.
The other route is the one where the document was built for you in advance. Filling a PDF form works only where the author already created interactive fields — real AcroForm objects with names, types and positions baked in by whoever made the file. Where they exist, you are not editing the PDF at all; you are supplying values to slots the document was designed to hold, which is why it behaves so much more sanely than editing ever does.
Where they do not exist, no tool can conjure them. A flat PDF that looks exactly like a form — with lines and boxes and the word "Name" printed next to a rectangle — has no fields in it. Those are drawings of a form. Our tool says so plainly rather than pretending to scan, because the alternative is a spinner that ends in disappointment.

The short version
- A PDF records glyph positions, not paragraphs. Nothing reflows because nothing knows it is a sentence.
- Every "edit PDF" product either reconstructs a guess of your document or paints over it. Know which one you are using.
- Annotating draws a transparent layer on top, so the page's own text stays real and searchable underneath.
- Text you add in an overlay is a picture of text. That trade is the price of not touching the page.
- Form filling only works where the author made fields. A drawing of a form is not a form.


