Back to Blog

How to Split a PDF Into Separate Pages or Sections for Free

Splitting a PDF sounds simple enough, but most tools either require a paid subscription, slap watermarks on your output, or force you to upload sensitive documents to someone else's server. Whether you need to extract a single page from a contract or break a 200-page manual into chapters, there are genuinely free ways to do it.

This guide walks through the most reliable methods for splitting PDFs, with practical tips for each scenario.

Why Split a PDF?

There are plenty of reasons you might need to pull a PDF apart:

  • Submitting specific pages: Applications often ask for "pages 3-5 only" — you shouldn't send the whole document
  • Reducing file size: Email attachment limits are usually 20-25MB, and splitting large PDFs into sections gets around that
  • Sharing selectively: Send a client only the relevant section of a report, not the entire 80-page deck
  • Extracting chapters: Break an ebook or manual into individual chapters for easier reference
  • Removing pages: Strip cover pages, blank pages, or irrelevant sections
  • Archiving: Organize scanned documents by separating multi-document scans into individual files

Method 1: Browser-Based Splitting (Fastest and Most Private)

Client-side browser tools process PDFs entirely on your device using JavaScript. Nothing gets uploaded, and processing happens in seconds.

Step-by-Step

  1. Open a client-side PDF splitter like EasyWebUtils PDF Splitter
  2. Drag and drop your PDF file (or click to browse)
  3. Choose your split method:
    • Split by page range: Extract pages 1-5, 10-15, etc.
    • Split into individual pages: Every page becomes its own PDF
    • Split by sections: Define custom sections (chapters, parts)
  4. Click split
  5. Download the resulting PDF files

Why This Method Wins

  • Zero uploads: Your files stay on your computer the entire time
  • No watermarks: The output is clean — no branding added
  • No account required: No signup, no email, no subscription
  • Works offline: Once the page loads, you don't need an internet connection
  • Fast: Splitting a 100-page PDF takes seconds, not minutes

This is the go-to method for any document containing personal, financial, or business-sensitive information. For more on why client-side processing matters, see our guide to client-side security.

Method 2: Built-In OS Tools

Mac (Preview)

macOS Preview handles basic PDF splitting without any extra software:

  1. Open the PDF in Preview
  2. Go to View → Thumbnails to show the page sidebar
  3. Select the pages you want to extract (hold Cmd to select multiple)
  4. Drag the selected thumbnails to your Desktop or a Finder window
  5. Preview creates a new PDF containing only those pages

Tip: To select a range of pages, click the first page, hold Shift, and click the last page.

Windows (Print to PDF)

Windows lacks a native split tool, but the Print to PDF feature works as a workaround:

  1. Open the PDF in Microsoft Edge or any PDF viewer
  2. Press Ctrl + P to open the print dialog
  3. Select Microsoft Print to PDF as the printer
  4. Under page range, enter the specific pages you want (e.g., "3-7, 12")
  5. Click Print and save the new PDF

This works for simple extractions but becomes tedious for multiple splits from the same document. A browser-based tool is significantly faster for repeated operations.

Linux (Command Line)

Using pdftk (PDF Toolkit):

# Extract pages 1-5
pdftk input.pdf cat 1-5 output section1.pdf

# Extract pages 10, 15, and 20-25
pdftk input.pdf cat 10 15 20-25 output selected.pdf

# Split into individual pages
pdftk input.pdf burst output page_%02d.pdf

Using qpdf:

# Extract pages 5-10
qpdf input.pdf --pages . 5-10 -- output.pdf

# Split every page into its own file
qpdf input.pdf --split-pages output_%d.pdf

Using Ghostscript (pre-installed on most distributions):

# Extract pages 3-7
gs -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -dFirstPage=3 -dLastPage=7 \
   -sOutputFile=extracted.pdf input.pdf

Method 3: Free Desktop Software

LibreOffice Draw

  1. Open the PDF in LibreOffice Draw
  2. Delete the pages you don't need
  3. Export as PDF via File → Export as PDF

This works but is slow for large PDFs since LibreOffice renders every page.

PDFsam Basic (Free, Open Source)

PDFsam Basic is the best free desktop tool for PDF splitting:

  1. Download PDFsam Basic from pdfsam.org
  2. Select the Split module
  3. Choose your split method:
    • Split after every N pages
    • Split at specific page numbers
    • Split by bookmarks (chapter-level splitting)
    • Split by file size
  4. Click Run

Note: PDFsam Basic is genuinely free and open-source. The "Enhanced" version is paid — you don't need it for splitting.

Practical Splitting Scenarios

Scenario 1: Extracting a Chapter from an Ebook

You have a 300-page ebook and need just Chapter 5 (pages 87-112):

  1. Open the PDF in the splitter tool
  2. Enter page range: 87-112
  3. Download the extracted chapter

Scenario 2: Submitting a Form with Attachments

A government form requires you to submit pages 1-3 of a document separately from the rest:

  1. Split the PDF into two files: pages 1-3 and pages 4-end
  2. Attach each file to the appropriate section of the form

Scenario 3: Breaking Up Scanned Documents

You scanned a stack of 50 pages that actually contains five different documents:

  1. Note where each document starts and ends (e.g., pages 1-8, 9-20, 21-35, 36-42, 43-50)
  2. Split into five separate PDFs using custom page ranges
  3. Rename each file descriptively

Scenario 4: Emailing a Large PDF

Your report is 45MB but the email limit is 20MB:

  1. Split the PDF into two roughly equal halves
  2. Attach one to each email, or compress the full file using a PDF compressor

Scenario 5: Removing Sensitive Pages

A report contains confidential data on pages 15-18 that shouldn't be shared externally:

  1. Split into pages 1-14 and pages 19-end
  2. Merge the two sections back into a single clean PDF

Best Practices for Splitting PDFs

Before You Split

  • Know your page numbers: Scroll through the PDF and note which pages you need. Some PDFs have cover pages that offset the numbering.
  • Check for bookmarks: If the PDF has bookmarks, splitting by bookmark level is faster and more accurate than counting pages.
  • Keep the original: Never overwrite your source PDF. Always save split results as new files.

After You Split

  • Name files descriptively: Use names like Q1-Report-Financial-Summary.pdf rather than split-part-2.pdf
  • Verify the output: Open each split file and confirm it contains the right pages
  • Compress if needed: Split sections of image-heavy PDFs may still be large — run them through a PDF compressor
  • Consider page orientation: If some pages are rotated incorrectly after splitting, use a PDF rotation tool to fix them

Split vs. Extract: What's the Difference?

These terms are used interchangeably, but there's a subtle distinction:

Split: Divides a PDF into multiple parts. Every page ends up in one of the output files. Think of it as cutting a book into sections.

Extract: Pulls specific pages out of a PDF. The source file is unchanged, and you get a new file with only the pages you selected. Think of it as photocopying specific pages.

In practice, most tools offer both operations under one interface. When you need pages 5-10 from a 50-page document, you're extracting. When you divide that document into five 10-page sections, you're splitting.

Handling Common Issues

Issue 1: Page Numbers Don't Match

PDF page numbers sometimes differ from the numbers printed on the pages. A document might start with roman numerals (i, ii, iii) for the introduction, then switch to Arabic numerals (1, 2, 3) for the content.

Solution: Use the PDF viewer's page counter (bottom of the screen), not the printed page numbers. Most split tools use the viewer's sequential numbering.

Issue 2: Large Output Files

Splitting a PDF should produce files smaller than the original, but sometimes a 10-page extract is nearly as large as the full document.

Solution: This happens when the PDF embeds all fonts and resources in each section. Compress the output using a PDF compressor to strip redundant data.

Issue 3: Lost Bookmarks and Links

Internal links and bookmarks may break after splitting because they reference pages that no longer exist in the split file.

Solution: For documents where navigation matters, consider keeping larger sections intact rather than splitting into individual pages.

Issue 4: Scanned PDFs with Skewed Pages

Scanned documents often have slightly rotated or skewed pages that become more noticeable in smaller extracts.

Solution: Use a PDF rotation tool to straighten pages after splitting.

Privacy: Why It Matters for PDF Splitting

PDFs frequently contain sensitive content — contracts, tax documents, medical records, legal filings. When you split a PDF, consider where the processing happens:

Server-Side Tools

  • Your entire PDF is uploaded to a remote server
  • The server processes the file and sends back the results
  • You're trusting the provider to delete your file afterward
  • Your document is exposed during upload, processing, and download

Client-Side Tools

  • Everything happens in your browser — no uploads
  • The PDF never leaves your device
  • No third party ever sees your content
  • Works even without an internet connection (after the page loads)

For any document you wouldn't email to a stranger, use a client-side tool. The EasyWebUtils PDF Splitter processes everything locally.

Frequently Asked Questions

Can I split a password-protected PDF?

Most splitting tools require you to enter the password before processing. If you know the password, open the PDF, enter it, and then proceed with splitting. Tools cannot bypass password protection — nor should they.

Will splitting reduce my PDF's quality?

No. Splitting simply separates existing pages into new files without re-encoding the content. Text remains sharp, images retain their resolution, and formatting stays intact.

Can I split a PDF on my phone?

Yes. Browser-based splitting tools work on mobile browsers. The experience is smoother on tablets, but phones work fine for simple page extractions. No app installation required.

How do I recombine split PDFs later?

Use a PDF merge tool to combine split files back into a single document. You can rearrange the order during merging. See our PDF merging guide for detailed instructions.

Is there a limit to how many pages I can split?

Browser-based tools depend on your device's memory. Most modern devices handle PDFs with several hundred pages without issues. For extremely large files (1,000+ pages), desktop tools like PDFsam may be more stable.

Conclusion

Splitting a PDF shouldn't require expensive software or uploading your documents to unknown servers. The methods in this guide cover every situation:

  • Browser-based tools: Best for most people — instant, free, private
  • Built-in OS tools: Handy for quick single-range extractions
  • Command-line tools: Ideal for batch processing and automation
  • Desktop software: Best for complex, repeated workflows

For quick, secure splitting, a browser-based tool is hard to beat. No installs, no accounts, no watermarks — just select your pages and download the result.

Need to split a PDF right now? Try our free PDF splitter — it works entirely in your browser, keeping your documents private. Select pages, split, and download in seconds.

Related articles