Why Split a PDF?
A large PDF can be difficult to share, especially when email attachments have file size limits or when you only need to send specific pages to someone. Splitting a PDF lets you break it into smaller, more manageable files — saving time, reducing confusion, and keeping your documents organized.
Whether you have a 100-page report and only need pages 10–20, or you want to separate each chapter of a book into its own file, splitting is the answer.
Different Ways to Split a PDF
Split by Page Range
Extract specific pages — e.g., pages 5 to 12 — into a separate PDF.
Extract Single Pages
Save each page as its own individual PDF file.
Split into Equal Parts
Divide a PDF into equal chunks — e.g., every 10 pages becomes one file.
Split by Bookmarks
Use existing chapter bookmarks as split points for structured documents.
How to Split a PDF with PDFMagik
Open the Split PDF tool
Go to PDFMagik Split PDF. No account needed.
Upload your PDF
Drag and drop your file or click to browse. Files up to 100 MB are supported.
Choose split mode
Select whether to split by page range, extract all pages, or split into equal parts.
Download your files
Click Split and download the resulting PDF files individually or as a ZIP.
💡 Tip: If you need just one or two pages from a large PDF, use the Extract Pages tool instead — it's faster for simple extractions.
Common Use Cases
- Share only relevant pages: Send a client only the pages of a proposal that apply to them.
- Email file size limits: Break a large PDF into smaller parts that fit within attachment limits.
- Separate chapters or sections: Split a book, manual, or report into individual chapters.
- Remove unwanted pages: Split out the pages you need and discard the rest.
- Archive individual pages: Store each scanned page as a separate file for document management systems.
Splitting PDFs with Command Line Tools
Using Ghostscript
Extract pages 5 to 10 from a PDF:
gs -sDEVICE=pdfwrite -dNOPAUSE -dBATCH \
-dFirstPage=5 -dLastPage=10 \
-sOutputFile=pages_5_to_10.pdf input.pdf
Using Python (PyPDF2)
from PyPDF2 import PdfReader, PdfWriter
reader = PdfReader("input.pdf")
writer = PdfWriter()
for page in reader.pages[4:10]: # pages 5-10
writer.add_page(page)
with open("output.pdf", "wb") as f:
writer.write(f)
Does Splitting Affect PDF Quality?
No — splitting a PDF is a lossless operation. Pages are moved from one container to another without any re-rendering or compression. Text, images, fonts, and formatting all remain exactly as they were in the original document.
Split vs. Extract — What's the Difference?
Split divides the entire PDF into multiple parts — every page ends up in one of the output files. Extract pulls out specific pages and creates a new PDF from just those pages, leaving the original intact. Both tools are available on PDFMagik and serve different needs depending on how much of the document you want to keep.
Split your PDF now — free
No signup required. Split by page range, equal parts, or extract all pages.
Split PDF →Summary
Splitting PDFs is a quick and lossless operation that helps you share, organize, and manage documents more effectively. PDFMagik's free Split PDF tool handles all common splitting methods — by range, by equal parts, or page by page — directly in your browser with no software to install.
