Menu

How to Extract Specific Pages from a PDF

6 min readPublished Updated

You have a 90-page PDF and need to send someone pages 12 through 15. Or one signed page from a contract. Or each chapter of a report as its own file. Extracting pages is a core PDF task — and like merging, Adobe gates the comfortable version of it behind an Acrobat Pro subscription.

You don't need it. Here are three genuinely free ways to extract pages from a PDF, from the dedicated browser tool to the print-dialog trick that works on any computer made this decade.

Method 1: A dedicated split tool in your browser

The cleanest approach is a purpose-built tool. FileMorf's Split PDF runs entirely in your browser — the PDF is parsed and rewritten locally by JavaScript, so the document never uploads to a server:

  1. 1

    Open the Split PDF tool

    Free, no account, works in any modern browser on any operating system.

  2. 2

    Load your PDF

    Drag and drop the file. It's read into your browser's memory — nothing leaves your machine.

  3. 3

    Choose the pages to extract

    Select individual pages or ranges (like 12–15), or split the whole document into separate files.

  4. 4

    Download the result

    You get a new PDF containing exactly the pages you picked, unchanged from the original — text stays selectable, links keep working, quality is untouched.

Extraction is copying, not cutting

Extracting pages never modifies your original file — it creates a new PDF containing copies of the selected pages. Your source document stays intact.

Every modern OS can 'print' to a PDF file, and every print dialog has a page-range field. Combine them and you have a universal page extractor: open the PDF in your browser or any viewer, press Ctrl+P (Cmd+P on Mac), set the destination to 'Save as PDF' (or 'Microsoft Print to PDF' on Windows), enter your page range — e.g. 12-15 or 3, 7, 9 — and save.

It's free, preinstalled, and fine in a pinch — but know the trade-offs. Printing re-renders the document rather than copying the original page objects: hyperlinks and bookmarks are stripped, form fields flatten, page dimensions may get letterboxed to the paper size, and file size often grows. Text usually stays selectable when printing from a browser, but the output is a 'printout' of your PDF, not a faithful excerpt of it. For anything going to a client or a court, prefer a real extraction.

Method 3: Built-in OS tools

  • macOS Preview: open the PDF, show thumbnails (View → Thumbnails), select the pages you want (Cmd-click for several), and drag them straight from the sidebar to your Desktop — each drag creates a new PDF with those pages. You can also delete unwanted pages and File → Export the remainder.
  • Windows: there is no built-in extraction beyond the print trick above. Free installable options include PDFsam Basic (open-source, has a proper 'extract' mode) and PDF24.
  • Linux: pdftk (pdftk in.pdf cat 12-15 output out.pdf) or qpdf (qpdf in.pdf --pages . 12-15 -- out.pdf) do faithful extractions from the command line.
Extraction methods compared
MethodFaithful copyLinks/bookmarks keptInstall needed
FileMorf Split PDF (browser)YesPage content preservedNo
Print to PDF with page rangeNo — re-renderedNoNo
macOS Preview thumbnail dragYesMostlyNo (Mac only)
pdftk / qpdf (command line)YesYesYes
Adobe Acrobat ProYesYesYes ($$/month)

A word on uploading documents to split them

Most 'split PDF online' results in a search are upload-based services: your document goes to their server, gets processed, and you download the result trusting their deletion policy. For a recipe or a public manual, who cares. But the PDFs people actually split — contracts, bank statements, medical records, filings — are usually the most sensitive files they handle.

Client-side tools sidestep the issue entirely: FileMorf's PDF tools use the pdf-lib library running in your browser, so the file is never transmitted. If you're evaluating any tool for confidential documents, open your browser's developer tools and watch the network tab while processing — with a truly client-side tool, no file upload appears.

Extraction is often one step in a bigger edit. A few common patterns:

  • Split a report into chapters: extract each range as its own file in one pass.
  • Remove pages: extract everything except the pages you want gone — often easier than 'deleting'.
  • Reorder or combine: extract the pieces you need, then merge them in the right order with a merge tool.
  • Reduce an email attachment: sending 4 relevant pages instead of a 40 MB full document is usually the fastest way under attachment limits.
  • Heavier edits — rotating pages, adding text or signatures — call for a full PDF editor rather than split/merge tools.
Free Tool

Split PDFs free in your browser

Extract pages and ranges from any PDF without uploads — processing happens entirely on your device.

Frequently asked questions

Does extracting pages reduce PDF quality?

Not with a proper extraction tool — the original page objects are copied unchanged into the new file, so text, images, and vector graphics are byte-identical. Only print-to-PDF style workarounds re-render pages and can degrade them.

Can I extract pages from a password-protected PDF?

If the PDF requires a password to open, you'll need to open it with the password first; most tools can't process it otherwise. PDFs with only editing restrictions (an owner password) can often still be split, though respecting the document owner's intent is on you.

How do I extract every page as a separate file?

Use a split tool's 'split all pages' mode, which turns an N-page document into N single-page PDFs in one operation — much faster than extracting ranges one at a time. FileMorf's Split PDF supports this and bundles the output as a ZIP.

Will links and form fields survive extraction?

With a faithful extraction tool, content-level links on the extracted pages generally survive; cross-references to pages you didn't extract will dangle. Print-to-PDF strips links and flattens forms entirely.

Keep Reading