You have a 200-page report but only need pages 45–60 for a presentation. You have a 50 MB scanned contract but want to send just the signature page. You want to separate a large PDF into individual chapters for easier distribution. PDF splitting is one of the most common document operations — and when done right, it's quick and painless. This guide covers the methods, tools, and best practices for splitting PDFs.
When Do You Need to Split a PDF?
Extracting a chapter or section from a large document for a specific audience.
Sending only the relevant pages of a contract or report (nobody wants a 200-page attachment).
Separating a multi-document PDF into individual files (e.g., a scanned bundle of different contracts).
Reducing file size by extracting a few pages from a very large file.
Organizing pages — pulling out specific pages to reorganize later.
Methods for Splitting PDFs
1. Extract by Page Number
The most common approach: specify exactly which pages you want. For example, "pages 1–5, 12, 45–48." This gives you precise control over the output.
2. Split at Every N Pages
Divide a large PDF into smaller chunks of equal size. For example, splitting a 100-page document into 10-page segments. Useful for batch processing or breaking up large scans.
3. Extract by Bookmarks/Headings
If the PDF has a table of contents or bookmarks (common in textbooks and reports), some tools can split the file at each bookmark, automatically creating separate files for each chapter.
4. Split Every Page
Extract each page as a separate PDF file. Common when you need to distribute individual pages as separate documents or convert them individually to images.
Step-by-Step: How to Split a PDF
Using our Split PDF Tool (Browser-Based)
Upload your PDF. Drag the file into the drop zone or click to browse. The file stays in your browser — nothing is uploaded.
See visual thumbnails. The tool displays every page as a thumbnail, so you can see exactly what you're extracting.
Select pages to extract. Click individual thumbnails to select them, or type a page range like "1-3, 5, 10-15" in the input field.
Click Split. Processing happens instantly in your browser using WebAssembly.
Download the result. Get a new PDF containing only the pages you selected.
Using Command-Line Tools (Free)
# Extract specific pages with qpdf
qpdf --pages input.pdf 1-5,12,45-48 -- output.pdf
# Split with pdftk
pdftk input.pdf cat 1-5 12 45-48 output extracted.pdf
# Extract all pages as separate files
pdftk input.pdf burst output page_%03d.pdf
# Split with Python (PyPDF2)
from PyPDF2 import PdfReader, PdfWriter
reader = PdfReader("input.pdf")
writer = PdfWriter()
for page_num in [0, 1, 2, 11, 44, 45, 46, 47]:
writer.add_page(reader.pages[page_num])
with open("output.pdf", "wb") as f:
writer.write(f)
Using Adobe Acrobat (Desktop)
Open the PDF in Adobe Acrobat Pro.
Go to Tools → Organize Pages.
In the right panel, click Split.
Choose your split method: by page range, number of pages, or top-level bookmarks.
Click Output Options to set file naming and destination.
Click OK to execute the split.
Best Practices for Splitting PDFs
✅ Do verify before splitting.
Open the source PDF and confirm the page numbers. A "page 5" in a PDF viewer might be a different physical page if the document has front matter, blank pages, or Roman numeral numbering.
⚠️ Watch for bookmarks and links.
When you extract a subset of pages, bookmarks and internal links that reference pages outside the extracted range will break. Consider whether the document relies on these features.
❌ Don't split encrypted PDFs without the password.
If a PDF has a user password (document open password), most tools can't read its contents. Remove the password first using a tool like qpdf.
Split vs. Merge: Two Sides of the Same Coin
Splitting and merging are complementary operations. A common workflow:
Split a large PDF to extract the pages you need.
Rearrange the extracted pages (or pages from multiple PDFs).
Merge them into a new, combined document.
Both operations are available in our tool suite. Learn about merging in our guide: How to Merge PDF Files.
Preserving Quality When Splitting
When you split a PDF, you want the output to look identical to the original. Most tools handle this correctly, but be aware of:
Image quality: Splitting should copy image data as-is, without re-compression. If a tool re-encodes images during splitting, you'll lose quality.
Fonts: Split tools should copy embedded fonts for the extracted pages. Missing fonts cause text to render incorrectly.
Metadata: The output file usually inherits metadata from the source. You may want to update the title to reflect the new content.
Form fields: If the PDF has fillable form fields, splitting may break form functionality. Test the output before distributing.
Conclusion
Splitting a PDF is a quick operation when you have the right tool. For most users, a browser-based tool with visual page selection is the easiest approach — no software to install, no files uploaded to servers. For power users, command-line tools like qpdf and pdftk offer scripting capabilities and batch processing. Whatever method you choose, always verify the output to ensure you got exactly the pages you needed.
Split your PDF in the browser — free, private, instant