2026-04-26 · 8 min read
How to Edit a PDF Without Adobe Acrobat
PDFs were designed to be a final, locked-down format — that’s exactly why editing them is annoying. The good news: you almost never need a $20/month Acrobat subscription to make most edits. Below are five methods, ordered by how much you can change with each, and the situations where each is the right tool.
1. Convert to Word, edit, export back to PDF (most flexible)
For text-heavy edits — fixing a typo, rewriting a paragraph, replacing a name on every page — converting to Word is by far the easiest path. Word gives you a full editing surface: track changes, find-and-replace across the whole document, comments, styles. When you’re done, export back to PDF.
This works best when the PDF was originally created from a text source (Word, Google Docs, LaTeX). It works less well on scanned documents, where the conversion produces a placeholder image with no editable text.
Try it free with our PDF to Word converter. Files never leave your browser.
2. macOS Preview (free, built-in, surprisingly capable)
Preview is one of the most underrated PDF editors. Out of the box you can:
- Add, delete, rotate, and reorder pages (View → Thumbnails, drag).
- Annotate with text boxes, shapes, highlights, and signatures.
- Fill out form fields.
- Combine multiple PDFs (drag into the sidebar).
- Redact information (Tools → Redact).
What Preview won’t do is edit existing text in place — that’s the big limitation. For text edits, fall back to method 1.
3. LibreOffice Draw (free, cross-platform, edits text)
LibreOffice is free and open-source. Its Draw module opens PDFs and lets you edit existing text in place — replacement-level edits like fixing a date or changing a price. Layout fidelity isn’t perfect (you’ll occasionally see fonts shift slightly), but it’s the best free option for editing existing text directly.
Workflow: open the PDF in LibreOffice Draw → make your edits → File → Export As → Export Directly as PDF.
4. Browser-based PDF editors
Smallpdf, Sejda, PDFescape, and similar tools offer in-browser editing for annotation and modest text edits. They’re convenient on a Chromebook or any locked-down work laptop where you can’t install software, but most of them upload your file to their servers — a real concern for sensitive documents. Read the privacy policy before uploading anything you wouldn’t post publicly.
5. Command line: pdftk, qpdf, and friends
For programmatic edits — splitting, merging, rotating, encrypting, stamping — command-line tools are unbeatable. The two workhorses:
- qpdf for splitting, merging, decrypting, linearizing.
- pdftk (or its modern fork pdftk-java) for similar tasks with a simpler syntax.
# Extract pages 5–10 qpdf input.pdf --pages input.pdf 5-10 -- output.pdf # Merge two PDFs qpdf --empty --pages a.pdf b.pdf -- merged.pdf
These are not text editors — they’re structural editors. For changing the text inside a PDF, fall back to methods 1 or 3.
Quick decision matrix
- Fix a typo or rewrite a paragraph → method 1 (PDF → Word).
- Add a signature, highlight, or redact → method 2 (Preview) or any browser editor.
- Replace text in place, free → method 3 (LibreOffice Draw).
- Split, merge, or batch-process many PDFs → method 5 (command line).
- You’re on a locked-down laptop → method 4 (browser editor) — with a privacy-conscious tool.
A note on scanned PDFs
If your PDF is a scan of paper, the “text” is actually a picture of text. None of these methods can edit it directly until you run OCR (optical character recognition) to extract real characters. macOS Preview has built-in OCR (Tools → Live Text); on Windows, OneNote and Tesseract are free options. Once OCRed, the PDF behaves like a normal text PDF and methods 1 and 3 work again.
Most edits start with the same step: get the content out of PDF and into a format you can actually edit. Convert your file with our free PDF to Word converter and you’ll be making changes in 30 seconds.