How to Split a PDF Into Separate Pages
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
- Sharing specific sections: pull out the relevant pages from a long report instead of sending the entire document. A 200-page annual report compresses to a 12-page executive summary that fits the recipient's attention span.
- Email attachments: a 30 MB PDF will not fit through an email gateway. Split it into smaller chunks that stay under the 25 MB limit (Gmail), 20 MB (Outlook 365), or 10 MB (many corporate gateways).
- Organizing documents: separate a multi-section document into individual files for each section. A board pack with five appendices becomes six separate files, each with its own title in the file system.
- Extracting forms: pull a single form out of a larger PDF package. Insurance applications, tax filings, and government submissions often bundle 50+ pages where you only need a few specific forms.
- Distributing course material: a course pack stored as one PDF becomes a per-lecture set of files, easier for students to download selectively.
- Legal discovery: in litigation, lawyers commonly split source documents into per-document or per-witness sets for review and production. Bates-stamping each split is a related task.
How to split a PDF online
- 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.
- 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.
- 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:
1-5extracts pages 1 through 5 into one combined PDF3, 7, 12extracts only pages 3, 7, and 12 into one combined PDF (in that order)1-3, 8-10extracts pages 1-3 and 8-10 as one combined PDF5-extracts from page 5 to the end of the document-3extracts from page 1 to page 3 (equivalent to1-3)
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
- Page numbering vs. PDF page index: the page numbers printed on the PDF (which may start from a Roman-numeral preface) may not match the PDF's internal page index (which starts at 1). When you specify a custom range, you are using the PDF's internal index, not the printed page number. Check by previewing.
- Encrypted PDFs: if the PDF requires a password to open, you must remove the password first using a PDF unlock tool. Browser-based splitters cannot handle encrypted PDFs without the password.
- Form fields and annotations: when you extract a single page from a PDF with form fields, the form data on that page is preserved but cross-page form logic (Next button references, calculated fields that depend on other pages) breaks. For form-heavy PDFs, splitting is usually a bad idea.
- Signed PDFs: digitally-signed PDFs lose their signatures when split because the signature covers the entire original document. The split output is a valid PDF but unsigned. For audit or compliance workflows, document the split as a separate step from any signature workflow.
Tips
- Preview the PDF first: scroll through and note which page numbers you need before splitting. This saves time compared to splitting and then checking each file.
- Merge after splitting: if you need pages from different parts of a document combined into one file, split out the pages you need, then merge them back together in the right order using a PDF Merger tool.
- Compress after splitting: if the resulting files are still too large, run them through a PDF compressor after splitting. Splitting alone may not reduce the per-file size enough for tight email limits.
- Rename outputs immediately: ZIP outputs from splitters typically use generic names like page_1.pdf, page_2.pdf. Rename them to meaningful names (Smith_Contract_Sect_A.pdf) as soon as you extract to avoid losing track later.
- Keep the original: always work on a copy of the original PDF. Splitting itself is non-destructive (the original file is not modified) but if you accidentally delete the original you cannot reconstruct it from the splits alone without effort.
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.