How to Split a PDF Into Individual Pages
3 methods — Papiral, Python, and Adobe Acrobat
Splitting a PDF into individual pages is useful when you need to redistribute specific pages, extract a single section, or break a large document into smaller files. Here are three ways to do it — from a fast browser tool to a Python script you can automate.
Method 1: Using Papiral (fastest, no software needed)
The easiest way to split one or many PDFs at once — no Acrobat, no installs.
- 1Go to the Split PDF tool on Papiral.
- 2Upload your PDF (or a ZIP of multiple PDFs to split in bulk).
- 3Click Process — Papiral splits every PDF into individual single-page files.
- 4Download the ZIP containing one PDF per page.
Output pages are named with the original filename and a page number suffix — e.g. contract_page_001.pdf — so they stay organised automatically.
Method 2: Python with PyPDF2
For developers who need to automate splitting or integrate it into a pipeline.
- 1Install PyPDF2: pip install PyPDF2
- 2Use the script below to split a PDF into individual pages.
- 3Run the script — one file per page will be saved to your working directory.
python
from PyPDF2 import PdfReader, PdfWriter
import os
reader = PdfReader("input.pdf")
for i, page in enumerate(reader.pages):
writer = PdfWriter()
writer.add_page(page)
with open(f"page_{i + 1:03d}.pdf", "wb") as f:
writer.write(f)
print(f"Split into {len(reader.pages)} pages.")Use zero-padded page numbers (f"{i+1:03d}") so files sort correctly in file managers.
Method 3: Adobe Acrobat
- 1Open your PDF in Adobe Acrobat (Pro or Reader with subscription).
- 2Go to Tools > Organize Pages.
- 3Click Split in the toolbar.
- 4Choose 'Number of pages: 1' to split into individual pages.
- 5Click Output Options to choose a save location, then click Split.
Acrobat works well for small splits but requires a paid subscription. For bulk splitting across many files, Papiral or a script is faster.
Frequently asked questions
Can I split just one page out of a PDF, not all of them?
Papiral's Split tool extracts every page. To pull out a specific page or range, use the Extract Pages tool instead — it lets you specify a from/to page range.
Will the split pages keep the original fonts and images?
Yes. Splitting copies each page into a new PDF without re-encoding any content, so fonts, images, and formatting are preserved exactly.
How many PDFs can I split at once with Papiral?
Free users can split up to 10 files per batch. Pro users up to 200, and Business users up to 2,000.
Ready to try the fastest method?
Split one or more PDFs into individual pages. Each page becomes its own PDF file, neatly packaged in a ZIP.
Split PDF — free
Papiral
Tabular