PDF Divide Pages
Divide PDF pages into halves or quarters online for free. Split two-up or multi-column layouts into separate pages. All processing in your browser.
How to Use
Divide PDF pages into halves or quarters in four steps:
- Upload your PDF — Drag and drop the file onto the upload area or click to browse. The tool reads the file locally in your browser and reports the total page count. No data is sent to any server.
- Choose a split mode — Select one of three modes. Vertical Split divides each page into left and right halves — ideal for scanned book spreads. Horizontal Split produces top and bottom halves — useful for landscape slides split into two. 2×2 Grid creates four quarter-page segments — perfect for splitting 4-up handouts back into individual pages.
- Set a page range (optional) — Enter specific pages or ranges to split (e.g., “1-5,8”). Pages outside the range pass through unchanged into the output. Leave the field blank to split every page in the document.
- Split and download — Click Split pages to process the document. The tool shows input and output page counts, then presents a download button for the resulting PDF.
The entire operation runs in your browser using pdf-lib. No files are uploaded to any server, making this tool safe for confidential, legal, and corporate documents.
About This Tool
Page division is the inverse of N-Up imposition. Where PDF N-Up combines multiple pages onto a single sheet, this tool breaks each sheet back into its constituent parts. The technique is essential for anyone working with scanned book spreads, multi-up printouts, or tiled layouts that need to be separated into individual pages.
How pdf-lib embedPage creates clipped page segments
The core technique uses PDFDocument.embedPage() with a bounding box parameter that defines the visible clip region. For a vertical split, the tool creates two embedded references from the same source page: one clipped to the left half (left: 0, right: width/2) and one to the right half (left: width/2, right: width). Each embedded reference is drawn onto a new page whose dimensions match the clip region. The result is two pages, each containing exactly half of the original content.
PDF coordinate system and clipping regions
PDF uses a bottom-left origin coordinate system where Y increases upward. A standard A4 page measures 595 × 842 points (1 point = 1/72 inch). When splitting horizontally, the “top half” corresponds to bottom: height/2, top: height in PDF coordinates, while the “bottom half” is bottom: 0, top: height/2. For the 2×2 grid mode, four clip rectangles tile the page into equal quadrants. The reading order is top-left, top-right, bottom-left, bottom-right — matching the Z-pattern convention used in Western typographic layouts.
Why embedPage preserves content fidelity
Unlike rasterization approaches that render pages to bitmap images, embedPage() creates a Form XObject reference to the original page content stream. This means all vector graphics, embedded fonts, and text remain fully intact. Text stays selectable and searchable. Images retain their original resolution. The PDF internal structure uses cross-reference pointers rather than pixel copies, keeping the output file size proportional to the original rather than inflating it with rasterized bitmaps.
Scanned book spread processing
When digitizing physical books, flatbed scanners and overhead scanners typically capture two pages per scan — the left and right pages of an open book spread. The resulting PDF contains half the expected page count, with each page showing a two-page spread. Vertical split mode separates these spreads into individual pages, producing a PDF with the correct one-page-per-page structure. If the original scans include a narrow gutter shadow between pages, you can pre-process with PDF Crop to trim the inner margins before splitting.
All processing happens client-side in your browser. For documents that need the reverse operation — combining individual pages onto shared sheets — use PDF N-Up Page Layout. To extract specific pages without splitting them, try PDF Extract Pages. To rejoin split pages into a single document, use PDF Combine to Single Page.
Why Use This Tool
Splitting PDF pages into halves or quarters serves several practical workflows:
- Book digitization — Flatbed and V-shaped book scanners capture two-page spreads in a single scan. Vertical split separates each spread into individual pages, producing a properly paginated PDF that matches the book's original page numbering. This is standard practice in digital archiving and library digitization projects.
- Reversing N-Up layouts — Lecture handouts, meeting notes, and presentation slides are often distributed in 2-up or 4-up format to save paper. This tool reverses the imposition, restoring each slide or page to its full size for on-screen reading, annotation, or re-editing.
- Poster and signage workflows — Large format designs are sometimes tiled across multiple standard pages for printing on regular printers. The 2×2 grid mode can split oversized pages into four letter-size or A4 segments, each printable on a standard printer. The segments can then be trimmed and assembled into the full poster.
- Comparative document review — When a page contains two columns of content that need independent review — such as bilingual contracts or side-by-side comparisons — vertical splitting lets reviewers focus on each column separately without scrolling or zooming.
- E-reader optimization — Scanned magazine spreads and comic book pages often appear too small on 6-inch e-readers. Splitting the spread into individual pages doubles the effective display size on the device, making text legible without zooming.
- Archival compliance — Some document management systems require one logical page per PDF page. Scanned book spreads violate this requirement. Splitting them ensures each PDF page contains exactly one logical page, meeting compliance standards for court filings, insurance records, and government archives.
Processing PDFs locally in your browser is critical for these workflows. Scanned books may contain copyrighted content, legal documents are confidential, and corporate handouts often include proprietary information. This tool guarantees that your files remain on your device throughout the entire operation — no network requests, no server storage, no third-party access.