Skip to main content
Back to Blog
5 min read

How to Extract Pages from a PDF — Pull Out the Pages You Need

You don't always need the whole PDF. You need page 7 of a 200-page contract, or chapter 3 from a textbook, or just the appendix from a research paper. Extracting pages is the answer.

Extract vs split vs delete — what's the difference?

These three operations sound similar but solve different problems:

OperationWhat it doesWhen to use
**Extract**Pulls selected pages into a new PDF (or separate PDFs)"I need just these specific pages"
**[Split](/split)**Breaks a PDF at boundaries (every N pages, by ranges, by size)"Cut this 100-page file into manageable chunks"
**[Delete](/delete-pages)**Removes selected pages, keeps the rest"I want most of this, just lose these few pages"

Extract is the right tool when you want specific pages and don't need the rest.

Two output modes: merged vs separate

When you extract multiple pages, you have a choice:

Merged into one PDF — All selected pages become a single new file, in the order you picked them. Best for: - Building a "highlights" PDF from a long report - Pulling chapter 3 from a book (consecutive pages → one file) - Combining specific pages from a contract into a clean summary

Separate files — Each selected page becomes its own PDF. Best for: - Splitting a multi-invoice document into one PDF per invoice - Distributing individual pages to different reviewers - Creating per-page archive files - Bulk operations where the pages are unrelated

The order you click pages matters in merged mode — they're added in selection order, not in page-number order. This lets you reorder while extracting.

Free methods to extract PDF pages

Method 1: macOS Preview

Preview lets you "extract" by deleting everything else:

  1. Open the PDF, show the sidebar
  2. Select the pages you want to keep (⌘ + click)
  3. Right-click → New PDF from Selection (newer macOS) — OR — File → Print → PDF → Save selected pages as PDF
  4. Save the new file

This works for simple extractions but is clumsy for picking dozens of non-consecutive pages.

Method 2: Adobe Acrobat Pro (paid)

Tools → Organize Pages → select pages → Extract → choose "Extract pages as separate files" if needed → Extract.

The free Acrobat Reader does not support extraction.

Method 3: Command line (qpdf or pdftk)

``` qpdf input.pdf --pages . 5,7,12-15 -- extracted.pdf ```

Powerful but requires familiarity with the syntax. Useful for batch scripts.

Method 4: Browser-based tools

The fastest and most flexible option. Our Extract Pages tool shows page thumbnails for visual selection, supports range syntax like `1-3, 5, 8-10`, and lets you choose merged or separate output. Everything runs locally — your PDF is never uploaded.

Selecting pages efficiently

For a small number of pages, click thumbnails one by one.

For larger or more complex selections:

  • Range syntax — Type `1-5, 8, 11-end` and let the tool parse it
  • Select all + invert — Faster than clicking 50 individual thumbnails when you want most pages
  • Select all — Useful as a starting point for "all pages, then deselect a few"
  • Cmd/Ctrl + A — Keyboard shortcut to select every page

When you select with thumbnails, you also get visual confirmation — no off-by-one errors that come from typing page numbers.

Quality and file size

Extracted pages are copied byte-for-byte from the source PDF — no re-rendering, no compression, no quality loss.

What this means in practice:

  • A page with embedded fonts keeps those fonts in the new file
  • High-resolution images stay at their original resolution
  • Form fields, links, and bookmarks on the extracted pages are preserved
  • File size of the new PDF is roughly proportional to the percentage of pages you extracted

If your source PDF is 100 MB with 200 pages and you extract 10 pages, expect roughly a 5–10 MB output, depending on how content is distributed.

Common use cases

  • Sending one chapter — Extract chapter 3 of an ebook to share with a study group
  • Splitting bundled invoices — Vendor sends a single PDF with 12 monthly invoices? Extract each as a separate file.
  • Pulling research excerpts — Save just the abstract, methodology, and conclusion from a 60-page paper
  • Distributing per-recipient pages — A signed contract with one signature page per party — extract each party's page
  • Building a highlight reel — Pull the best 5 pages from a 50-page deck for a quick share
  • Page-by-page archive — Each page becomes its own searchable file in your document management system

Tips and best practices

  • Preview before extracting — Click thumbnails carefully; the order in merged mode follows your click order
  • Use range syntax for big jobs — Typing `1-50` is faster than clicking 50 thumbnails
  • Name files clearly — In separate mode, default names are `originalname-page-3.pdf` etc. Rename if you'll reuse them.
  • Compress the result — Especially if extracting from a heavy source PDF
  • Combine with merge — Extract from multiple PDFs, then merge the extracted pages into a final document
  • Watch for cross-references — Footnotes, links, and "see page 47" references won't follow you into the extracted file

Privacy and security

When you upload a PDF to a server-based extraction tool, the entire file (not just the pages you keep) gets transmitted, processed, and stored — at least temporarily. For confidential documents like contracts, financial statements, or personal records, prefer a client-side tool where the PDF never leaves your device.

Related Guides