The form layer
A fillable PDF is two things at once. There is the page — the lines, labels and boxes that were printed — and above it a form layer: a dictionary of named fields, each with a type, a value, and a widget saying where on the page it should be drawn.
This tool reads that dictionary, presents each field as an ordinary input, and writes your answers back into it. The page itself is never modified, so the form looks exactly as its author intended.
Why a browser tool for something readers already do
Because a great many readers do not. Form support is optional, and plenty of software skips it: mobile browsers, the preview panes built into mail and messaging apps, older desktop viewers, and most lightweight readers show the page and ignore the fields. You can see where to write and cannot write there.
Running the form layer directly means it does not matter what your reader supports.
The blank-printout problem
A PDF stores a field's value and its appearanceseparately — the text you typed, and a description of how that text should be drawn. Software that writes the value without regenerating the appearance produces a file that looks filled in one viewer and empty in another, and frequently prints blank.
Every field written here has its appearance regenerated on save, with a font that is actually embedded rather than one the form merely names. That single step is what makes the difference between a filled form and a filled form that survives being sent to someone else.
Flatten, or leave it live
Flattened — the answers become page content and the form disappears. Nothing can be retyped, and every viewer draws it identically. This is what you want for anything final.
Left live — the file stays a form with your values in it, so you or someone else can come back and change an answer. Right for a draft or a form that gets passed along.
What this cannot do
It cannot create fields that do not exist. If your form is a scan, or was exported flat, there is no form layer to read — the boxes are just ink. The tool says so rather than showing you an empty list and leaving you to guess.
It also does not fill signature fields. A signature field expects a cryptographic signature, which is a different thing from typing a name; the Sign PDF tool places a drawn or typed signature image instead.
Common uses
- Completing an application on a phone whose browser cannot fill forms
- Filling a tax, visa or benefits form without installing software
- Filling the same template repeatedly with different details
- Finishing a form someone sent that your reader shows as inert
Privacy
Everything runs on your device. Nothing about the form — least of all what you typed into it — is transmitted anywhere.