Split PDF Online — Extract Pages from Any PDF for Free
Published May 5, 2026
Sometimes you have a 50-page PDF but only need pages 3 through 7. Or a 200-page report that would be easier to handle as five separate documents. That is where PDF splitting comes in — it lets you extract exactly the pages you need and discard the rest, all without altering the original file.
This guide walks you through every method for splitting PDFs: fast online tools, desktop software, and command-line options. By the end, you will know exactly which approach fits your needs.
What Does Splitting a PDF Mean?
Splitting a PDF means creating one or more new PDF files from selected pages of an existing document. The original file stays untouched. There are three common splitting scenarios:
- Extract specific pages: Pull out page 5, or pages 3, 7, and 12, into a new document.
- Split by range: Divide a 30-page PDF into three 10-page documents (pages 1-10, 11-20, 21-30).
- Split into individual pages: Break every page into its own separate PDF file.
Method 1: Split PDF Online (Fastest)
Online PDF splitters are the quickest way to get the job done. No software to install, no accounts to create. Upload, select your pages, and download.
Steps:
- Open an online PDF splitter in your browser
- Upload the PDF file you want to split
- Choose how you want to split: by page range, specific pages, or into individual files
- Preview the selection to make sure you have the right pages
- Click split and download the resulting files
Tip: Most online tools show a visual preview of each page, so you can identify the right ones without guessing page numbers. This is especially helpful when the PDF does not have page numbers printed on the pages themselves.
File size limits: Free online splitters typically handle files up to 100 MB or 200 pages without issue. For larger documents, use a desktop tool.
Method 2: Split PDF with Desktop Software
Adobe Acrobat Pro
- Open the PDF in Adobe Acrobat Pro
- Go to Tools > Organize Pages
- Select the pages you want to extract (Ctrl+click for non-adjacent pages)
- Click Extract in the toolbar
- Check Delete Pages After Extracting if you want to remove them from the original
- The extracted pages open in a new tab — save them as a new file
For splitting into multiple files at once, go to Tools > Organize Pages > Split. You can split by number of pages, file size, or top-level bookmarks.
Preview (macOS)
- Open the PDF in Preview
- Make sure the sidebar is showing page thumbnails (View > Thumbnails)
- Select the pages you want to extract (Cmd+click for multiple)
- Drag the selected pages to your desktop or a folder — they automatically create a new PDF
This drag-and-drop method is surprisingly fast for quick extractions. No menus, no dialogs — just select and drag.
PDFsam (Free, Cross-Platform)
PDFsam Basic is a free, open-source tool specifically designed for splitting and merging PDFs. It handles large files well and offers several split modes:
- Split after a specific page number
- Split every N pages
- Split by bookmarks (each bookmarked section becomes a separate file)
- Split at specific page numbers you define
Method 3: Split PDF with Command Line
Using pdftk (PDF Toolkit)
# Extract pages 3-7 into a new file pdftk input.pdf cat 3-7 output output.pdf # Extract non-consecutive pages pdftk input.pdf cat 1 3 5 7 output selected.pdf # Split into individual pages pdftk input.pdf burst
The burst command creates one PDF per page, naming them pg_0001.pdf, pg_0002.pdf, and so on. It also generates a doc_data.txt file with metadata about each page.
Using qpdf
# Extract pages 1-5 qpdf --empty --pages input.pdf 1-5 -- output.pdf # Extract specific pages from multiple files qpdf --empty --pages input1.pdf 1-3 input2.pdf 5-7 -- combined.pdf
qpdf is particularly good at combining page extraction from multiple source files into a single output. It preserves PDF quality perfectly with no re-encoding.
Using Ghostscript
gs -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -dSAFER -dFirstPage=3 -dLastPage=7 -sOutputFile=output.pdf input.pdf
Ghostscript re-renders the pages, which can slightly alter the output but gives you the option to compress or modify the pages during extraction.
Common Use Cases for PDF Splitting
Extracting a Single Chapter from a Large Report
Received a 100-page annual report but only need the financial summary on pages 45-52? Split the PDF to extract just those pages. The extracted document loads faster, shares easier, and keeps the recipient focused on the relevant content.
Separating Scanned Document Batches
If you scanned multiple documents in one batch, you now have one large PDF containing several distinct documents. Split by page ranges to separate them back into individual files.
Sending Sections via Email
Email attachment size limits (typically 25 MB for Gmail) can block large PDFs. Split the document into smaller parts and send them as separate attachments, or extract only the pages the recipient needs.
Creating Custom Study Materials
Students can extract specific chapters from digital textbooks or combine pages from different sources into focused study packets. Split lets you curate exactly what you need.
Tips for Clean PDF Splits
- Verify page numbers first: Open the PDF and confirm the page numbers match what you expect. Some PDFs have roman numeral front matter (i, ii, iii) before the main content starts at page 1.
- Check for bookmarks: If the PDF has a table of contents with bookmarks, splitting by bookmarks is often more reliable than splitting by page numbers.
- Name files descriptively: When splitting into multiple files, give each one a meaningful name — not just "output_1.pdf" and "output_2.pdf."
- Keep the original: Splitting creates new files without modifying the source. But it is still good practice to keep the original until you have verified the splits are correct.
- Watch for linked content: Some PDFs have cross-document links, form fields, or JavaScript that may break when pages are extracted. Test the split files if the original had interactive features.
Splitting vs. Extracting vs. Deleting Pages
These three operations are related but distinct:
- Split divides a PDF into multiple smaller PDFs. The original file structure is preserved in each output.
- Extract copies selected pages into a new PDF. The original remains unchanged.
- Delete removes pages from the existing PDF. The file is modified in place.
Use split when you want multiple outputs from one file. Use extract when you want one new file from selected pages. Use delete when you want to permanently remove pages from the document you have.
Frequently Asked Questions
Does splitting a PDF reduce quality?
No. Properly splitting a PDF extracts pages without re-encoding any content. Text, images, and formatting remain identical to the original. Tools that re-render pages (like Ghostscript) may introduce minor changes, but pdftk and qpdf preserve everything exactly.
Can I split a password-protected PDF?
You need to know the password to open the file first. Once unlocked, you can split it normally. Some tools allow you to provide the password during the split operation. Alternatively, remove the password protection first, then split.
How do I split a PDF on my phone?
Use your mobile browser to access an online PDF splitter. Upload the file, select pages, and download the results. On iOS, you can also use the Files app with third-party PDF utilities. On Android, Google Drive integration makes it easy to split and re-save files.
Key Takeaways
- Online splitters handle most splitting needs in seconds with no software required
- Desktop tools like Adobe Acrobat and PDFsam offer more control for complex splits
- Command-line tools (pdftk, qpdf) are ideal for batch processing and automation
- Always verify page numbers before splitting to avoid extracting wrong pages
- Splitting preserves original quality — no re-encoding or quality loss
- Keep the original file until you have verified the split results