How to Split a PDF Into Separate Pages

· 5 min read

A 50-page PDF is useful for archiving, but not for sharing. When you only need to send pages 3 to 7, or when you need each page as its own file, splitting is the answer. PDF splitting is one of the most common file operations in office work: contract review, legal discovery, course material distribution, financial reporting, and dozens of other workflows all run through a step where a long document needs to be broken into smaller pieces.

When to split a PDF

How to split a PDF online

  1. Upload your PDF: click "Choose File" or drag and drop your PDF into the upload area. Files up to 100 MB work in most browsers; very large files may slow down processing.
  2. Choose the split mode: select "Extract all pages" to get every page as a separate file, or "Custom ranges" to specify exactly which pages you want.
  3. Split and download: click "Split PDF" and download your extracted pages as a ZIP file.

Using custom page ranges

The custom range input lets you specify exactly what you need:

The order you list the ranges in is the order they appear in the output PDF. So 5-7, 1-3 produces a PDF with pages 5, 6, 7 first and pages 1, 2, 3 after. This is useful when you want to reorder sections at the same time as you split.

Common splitting strategies

Split by chapter or section: open the PDF, note the page number where each chapter starts (from the table of contents), and run the split with custom ranges that match the chapter boundaries. For a book PDF with chapters starting at pages 5, 23, 47, 78, you would use ranges like 5-22, 23-46, 47-77, 78-.

Split to fit email size limits: for a 30 MB PDF that needs to fit under 10 MB per email, count roughly three pages per megabyte for image-heavy documents or ten pages per megabyte for text-heavy ones. Aim for splits that produce 8-9 MB output files to leave headroom.

Split by audience: when a single PDF has content for multiple recipients (a board pack with the CFO's section, the COO's section, etc.), split into per-audience files so each recipient only sees what they need. This is also a basic confidentiality discipline.

Split for archival: for long documents intended for archival storage, splitting into per-section files makes it easier to retrieve a specific part later without downloading the whole document. Pair with a clear naming convention (Title_Ch01_Introduction.pdf).

History and background

PDF was released by Adobe in June 1993 as Acrobat 1.0. From the beginning the format supported page-level structure: each page is a self-contained object in the PDF's object tree, with its own content stream, resources, and metadata. Splitting a PDF amounts to copying the relevant page objects into a new PDF document.

The first widely-available PDF splitters were command-line tools (pdftk by Sid Steward, released 2003) that wrapped the underlying PDF object model. Adobe added page-extraction to Acrobat Pro in version 6 (2003). Web-based splitters emerged in 2013 with Smallpdf, iLovePDF, and PDF24. Browser-based client-side splitters using pdf-lib (2018) and pdf.js (Mozilla, 2011) made online splitting possible without server upload, which matters for confidential documents.

Privacy and confidential documents

Many splitting workflows involve confidential documents: legal contracts, medical records, financial statements, internal HR documents. Cloud splitters require uploading the PDF to a third-party server, which is precisely what you want to avoid for sensitive content. Browser-based splitters (including this site's PDF Splitter) run entirely in your browser using JavaScript. The file is loaded into memory locally, the page extraction runs on your machine, and the output is downloaded directly. No upload, no server processing, no telemetry about what you split. For confidential documents, this is the failure mode to avoid: a free cloud splitter that quietly retains a copy of your file for analytics or training.

Common pitfalls

Tips

Frequently Asked Questions

Can I split a PDF into individual pages?

Yes. Choose "Extract all pages" to split every page into its own PDF file. They are downloaded together as a ZIP file.

Can I extract a specific page range?

Yes. Use custom ranges like "1-3, 5, 7-10" to extract only the pages you need into a new PDF.

Does splitting affect the content?

No. Each extracted page is an exact copy of the original, text, images, and formatting are all preserved.

Is my PDF uploaded to a server?

No. All splitting happens in your browser. Your PDF never leaves your device.