How to Split PDF: 3 Ways to Split PDF by Page

Got a 200-page PDF report but only need pages 3-5? Want to split a scanned contract into single pages? PDF splitting is the answer. Try the DevToolbox PDF Splitter, free, no watermark, client-side.

✍️ Author:DevToolbox Team📅 Updated:2026-06-24📎 References:PDF 1.7 Specification
pdf.js (Mozilla)RFC Standards

📌 Key Takeaways

  • How to Split PDF: 3 Ways to Split PDF by Page is widely used by developers
  • Based on RFC standards and real-world experience
  • Free online tools, runs locally, no data upload
  • FAQ section at the bottom answers common questions
✍️ Author:DevToolbox Team📅 Updated:2026-06-24

📌 Key Takeaways

  • How to Split PDF: 3 Ways to Split PDF by Page is widely used by developers
  • Based on RFC standards and real-world experience
  • Free online tools, runs locally, no data upload
  • FAQ section at the bottom answers common questions

Method 1: Online Splitter (Recommended)

Open DevToolbox PDF Split → upload PDF → enter page ranges → download.

Method 2: Command Line

pdftk input.pdf cat 3-5 output pages_3_5.pdf

3 Common Scenarios

  • Extract specific invoice pages from multi-page PDF
  • Split exported PPT PDF into individual slides
  • Extract one chapter from a PDF book

Summary

Online tool: 30 seconds to split any PDF.

Related: PDF Split · PDF Merge

FAQ: Common Questions

Q: How to split PDF by pages?

Use DevToolbox PDF Split: upload PDF → select page ranges (e.g., 1-3, 5, 7-9) → generate multiple PDFs. Or via CLI: `pdftk file.pdf burst` or qpdf.

Q: Does page numbering reset after splitting?

Each split PDF typically starts numbering from page 1. To preserve original page numbers, use pdftk's `cat` mode with explicit page ranges.

Q: Is splitting PDF free?

Online tools are usually free up to 1MB; paid tiers support larger files. CLI tools (pdftk, qpdf, PyPDF2) are completely free.