You need pages 15 through 28 from a 200-page PDF. Or just page 1 (the cover). Or pages 1, 5, and 12 from a non-consecutive selection. Extracting specific pages is one of the most frequent PDF tasks, yet most tools either limit you to a single continuous range or require a paid subscription for flexible extraction.
This guide shows every reliable free method, from a one-click Chrome extension to command-line tools for power users.
Extract Any Pages — Free, No Upload
Specify any page range or individual pages. Download instantly.
Add to Chrome — FreeMethod 1: PDF Merge & Split Chrome Extension
Extract pages by number — step by step
- Install PDF Merge & Split from the Chrome Web Store.
- Click the extension icon and open the Split tab.
- Click Add File and select your PDF.
- In the page range field, type:
- 5-12 for a continuous range
- 3, 7, 15-20 for non-consecutive pages
- 1 for a single page only
- Click Split/Extract. Your new PDF downloads automatically.
Method 2: macOS Preview
Extract pages using macOS Preview
- Open the PDF in Preview.
- Show thumbnails: View → Thumbnails.
- Click the first page you want. Hold Shift to select a range, or Cmd to select non-consecutive pages.
- Right-click the selection and choose Export as PDF.
- Name and save the new file.
This is the easiest method on macOS — no install needed. The visual thumbnail interface makes it easy to select pages by sight rather than by number.
Method 3: pdftk (Command Line)
For batch extraction or scripted workflows, pdftk gives you precise control:
# Extract pages 5-20
pdftk input.pdf cat 5-20 output extracted.pdf
# Extract non-consecutive pages: 1, 5, 12, 20-25
pdftk input.pdf cat 1 5 12 20-25 output selected.pdf
# Extract last page (replace 47 with actual total)
pdftk input.pdf cat 47 output last-page.pdf
Method 4: Ghostscript
# Extract pages 10-30
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite \
-dFirstPage=10 -dLastPage=30 \
-sOutputFile=extracted.pdf input.pdf
Ghostscript does not natively support non-consecutive page extraction in a single command. For that, use pdftk or the Chrome extension.
When Would You Extract Specific Pages?
Pulling a single chapter from a textbook PDF
Academic PDFs are often distributed as complete semester packages. Extracting individual chapters creates smaller, focused files that are easier to annotate and read on tablets or e-readers.
Sending only the relevant portion to a colleague
If a 120-page compliance report has one section relevant to a specific team, extracting pages 45–62 and sending just that portion respects your colleagues' time and avoids confidentiality concerns about unrelated content.
Extracting a cover page or executive summary
For sharing a teaser or summary of a document, extracting just the first few pages is faster than asking someone to scroll through a long file.
Separating a form from a multi-form document
Government and legal packages often bundle multiple forms into one PDF. Extracting the specific form you need (page 7, for example) is cleaner than filling out a page inside a large document.
Related Guides
- How to Split a PDF by Page Numbers
- How to Split PDF Pages Without Uploading
- How to Batch Split Multiple PDFs at Once
Frequently Asked Questions
How do I extract specific pages from a PDF for free?
Use the PDF Merge & Split Chrome extension. Open the Split tab, load your PDF, enter the page numbers or range you want (e.g., "3, 7, 15-20"), and click Split. The extension extracts exactly those pages into a new PDF file without uploading anything.
Can I extract non-consecutive pages from a PDF?
Yes. PDF Merge & Split supports comma-separated page lists like "1, 5, 12, 20-25". You can also use pdftk: pdftk input.pdf cat 1 5 12 20-25 output extracted.pdf
Does extracting pages from a PDF change the original file?
No. Extracting pages creates a new file — the original PDF is never modified or deleted. You can safely extract pages from any PDF without worrying about losing the source document.
How do I extract the last page of a PDF?
Open your PDF viewer to find the total page count, then enter that page number in the PDF Merge & Split split field. For example, if the PDF has 47 pages, enter "47" to extract only the last page.
What is the difference between extracting and splitting a PDF?
Splitting divides a PDF into multiple output files. Extracting creates a single new file containing only the pages you selected. PDF Merge & Split supports both modes.