🖼 ConverterWebP
Free • No sign-up • No watermark

Edit a PDF

Add text, a signature or a covering box anywhere on the page, then download the result. The document is edited inside your browser and never uploaded.

Drag and drop your PDF here

or click to select from your device

One PDF at a time • up to 30 pages

🔒

100% Secure: Your document is edited in your own browser and never passes through any server.

✍ Fill in what is missing

Dates, names, a reference number on a form that was never made fillable.

🖊 Sign without printing

Drop in a PNG of your signature and place it on the line.

📄 The original text survives

Your additions are drawn on top; the existing text stays searchable.

Adding to a PDF, and the one mistake that leaks data

This tool adds content on top of a page: a line of text, a signature image, a solid box. It does not change the text already in the document — that is a genuinely different and much harder problem, covered further down. For the vast majority of what people need from "editing a PDF" — filling a form that was never made fillable, signing, dating, adding a reference number — drawing on top is exactly the right operation, and it leaves the original content untouched and still searchable.

A white box is not redaction

This is the part worth reading twice. When you cover a bank account number with a box, you are drawing a rectangle over it. The number is still in the file, underneath, exactly where it was. Anyone can select the text through the box and copy it, extract it with a script, or simply open the document in a tool that lists its text content. It has happened to law firms, governments and newspapers, with real consequences.

A cover box is fine for tidying a page, hiding a stray mark, or blanking something on a document that will only ever be printed. It is not a way to remove sensitive data from a file you are going to send. If the goal is that nobody can recover what was underneath, the reliable route is to flatten the page into an image: convert the document with PDF to image, cover what you need in an image editor, and rebuild the PDF with image to PDF. You lose the searchable text layer, which is precisely the point.

Where your text actually lands

A browser measures from the top-left corner downward. A PDF measures from the bottom-left corner upward, in points rather than pixels, and a page can additionally carry a rotation that viewers apply when displaying it. Placing an element where you dropped it therefore means translating between two coordinate systems that disagree about which way is up.

Rather than reimplement that arithmetic, this editor asks PDF.js — the engine that rendered the page you are looking at — to convert each point for it, so the position you see on screen is the position written into the document. Pages with rotation are the case most likely to drift, so if you are working on a scan that came in sideways, check the saved file before sending it.

Text, boxes and signatures

Text is drawn with Helvetica, one of the fonts every PDF reader is required to have, which keeps the file small and avoids embedding anything. The trade-off is its character set: accented Latin letters are fine, but symbols outside it — other alphabets, some typographic marks — cannot be written and are dropped with a warning.

Images accept PNG and JPG. For a signature, photograph or scan it on white paper and run it through background removal first: a transparent PNG sits on the signature line instead of covering it with a white rectangle.

What this cannot do

It cannot rewrite the text that is already there. A PDF does not store paragraphs — it stores instructions to draw specific glyphs at specific coordinates, with fonts embedded as subsets containing only the characters actually used. Changing one word means re-extracting that font, re-measuring the line and reflowing the paragraph around it. Desktop software does this imperfectly; in a browser, honestly, it is not on the table. Anything advertising it usually turns your page into a picture and draws over it, which quietly destroys the searchable text.

It also does not open password-protected files, and adding content invalidates any existing digital signature on the document — that is the signature working correctly, since it certifies one exact file. For page-level work such as reordering, rotating or splitting, use the page organizer.

Frequently asked questions

No. It draws a rectangle over it. The text stays in the file and can be selected through the box or extracted with any PDF tool. Use it for tidying a page, never for hiding sensitive information in a document you are going to send. To genuinely remove it, flatten the page into an image first: PDF to image, edit, then image to PDF.

No. You can add text on top, not rewrite what is there. The file stores glyphs at coordinates with a subset of the font embedded, so editing a word means rebuilding that font subset and reflowing the line. If you need to correct a typo, the practical route is a cover box over the old word and a text element with the new one — keeping in mind that the original stays in the file.

Sign a white sheet of paper, photograph it, and remove the background so you get a transparent PNG. Then use "Image / signature" here and place it on the line. A JPG works too, but it carries its white rectangle with it and will cover whatever is beneath. Note that this is a visual signature, not a cryptographic one.

No. The file is read into your browser's memory, rendered locally so you can see it, and rewritten locally when you save. Nothing is transmitted and nothing is stored by us. The only network requests are for the two libraries that render and write the PDF, fetched once.