FormatDrop
How-To Guide

How to Split a PDF Into Multiple Files

Splitting a PDF is the inverse of merging — extract specific page ranges, separate every page into its own file, or break a long document into chapters. Common use cases: sending only specific pages to a recipient, breaking a book into chapter PDFs, or extracting an exam answer key from a full document.

Step-by-step instructions

  1. 1

    Upload your PDF file

    Select your .pdf file. The tool shows page thumbnails for visual selection.

    Go to converter
  2. 2

    Choose split method

    Options: Split by page range (e.g., pages 1–10, 11–20, 21–end), split into individual pages (one PDF per page), split every N pages, or split by bookmarks/chapters if the PDF has an outline.

  3. 3

    Download the split PDFs

    The tool produces multiple PDF files, typically named input-1.pdf, input-2.pdf, etc. Or as a ZIP containing all split files for easy download.

Why convert PDF to PDF?

Splitting PDFs is the inverse of merging — both are routine PDF operations that preserve every byte of quality from the source document.

Your files never leave your device

FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.

Frequently asked questions

Best command-line tool to split PDF?
qpdf: `qpdf --split-pages input.pdf output-%d.pdf` splits into one file per page. For specific ranges: `qpdf --pages input.pdf 1-10 -- pages-1-10.pdf`. PDFtk: `pdftk input.pdf burst output page_%02d.pdf`.
Will I lose quality when splitting?
No — splitting is a copy operation that preserves the original PDF data exactly. The split files are bit-identical to the original pages.
How do I split by chapter using bookmarks?
qpdf doesn't support this directly; use PyPDF2: `from PyPDF2 import PdfReader, PdfWriter; reader = PdfReader('input.pdf'); for outline in reader.outline: ... `. Or use Calibre's PDF chapter detection feature.
Convert PDF to PDF Now — Free

No account. No upload. Works in any browser.