To split a PDF into 2 parts, you can divide the visible area of every page at its centre and download two ordered PDFs, one for each side. The result is two separate, full-length PDFs that mirror each other across the page's middle line: a left-half file and a right-half file from a vertical cut, or a top-half file and a bottom-half file from a horizontal cut. The page count of each output matches the original, so a ten-page source becomes two ten-page downloads, not two five-page files. This is the right approach when every page follows the same two-panel layout — a scanned book spread, a wide ledger, a side-by-side form, or a proof sheet — and you need the two halves as separate, usable documents rather than as page ranges extracted by number. A local browser tool designed for this purpose is Split PDF in Half, which reads the source file on your device, embeds each page into a new half-sized PDF page, and clips it to the chosen side before offering both downloads directly.

When You Need Two PDFs From One Document
Many documents are stored or scanned as two-panel pages even though they are read, printed, or reviewed as separate halves. Digitised book spreads are the clearest example: each PDF page holds two facing pages of the original book, and a reader may want the left-hand page on its own and the right-hand page on its own. Wide scanner captures, two-column handouts, side-by-side forms, and proof sheets have the same structure. In each case, every page is internally divided, and the task is to separate that division into two clean output files in the same page order.
Splitting the same PDF by page ranges would produce different results. A range-based split removes page boundaries; it chops the document into chunks by page number, not by visible halves. If you split a ten-page spread book by page ranges, you get chunks of full pages, not a left-half file and a right-half file. The halving method is what fits the two-panel use case, and the rest of this article walks through how it works and when to reach for it.
How the Page Halving Method Works
The technique behind a half-page split is straightforward but worth understanding if you want to predict the output. According to the PDFPage API in pdf-lib, every PDF page carries its own media box and coordinate space, which means a new page can be defined at any size and used as a canvas. Split PDF in Half uses that flexibility. For each source page, it creates a new page with half the original dimension — half the width for a vertical split, half the height for a horizontal split — and embeds the entire original page artwork into that new page. The embedded page is then shifted so that only the requested side shows inside the new page boundary, and a matching clipping path is applied so the other half cannot bleed outside. The first half is collected into one ordered PDF and the second half into another, both with the original page count and order preserved.
Two practical consequences follow. First, the source file is read and processed on your device, not uploaded, so a private document never leaves your machine. Second, because the original page artwork is embedded as-is and then clipped, anything painted on the page — text, vectors, images — survives in both halves at full fidelity. What does not survive is interactive objects that live in a separate layer of a PDF, which is the topic of a later section.
How to Split a PDF Into 2 Parts
Open Split PDF in Half and follow these three steps to produce both halves as separate downloads:
- Choose a PDF file from your device.
- Select left and right halves or top and bottom halves.
- Split the document, then download both ordered half-page PDFs.
You do not need to create an account, sign in, or wait for a server. The two downloads are produced in the browser and offered individually, so you can save the left file first and the right file second, or the top file first and the bottom file second, without extracting a ZIP archive. Save each one with a descriptive name — for example, name-spread-left.pdf and name-spread-right.pdf — so the relationship between the two outputs is obvious later.
If you are not sure whether you need a vertical cut or a horizontal one, open the source PDF in any viewer and look at how the two panels sit on the page. A scanned book spread almost always needs a vertical cut so each half becomes a single facing page. A wide ledger capture with rows running across the top and bottom of the page usually needs a horizontal cut. This guide on vertical PDF halving walks through the left/right case in more detail if that is the layout you are working with.
Half-Page Split vs Page-Range Split
Both tools solve a "split" problem, but they split different things, and using the wrong one produces an output you do not want.
| Feature | Split PDF in Half | Split PDF (by page range) |
|---|---|---|
| What it divides | The visible area of every page at its centre | The document into chunks of full pages |
| Number of output files | Always two | User-defined, often more than two |
| Page count in each output | Matches the original | Sums to the original across all outputs |
| Page order in outputs | Same as the original in both files | Same as the original within each chunk |
| Best for | Two-panel layouts, spreads, side-by-side forms | Reordering, chapter splits, sharing subsets |
| Resulting page size | Smaller than the source (half a dimension) | Same as the source |
| Processing location | Local browser | Local browser |
The row that usually decides the choice is the third one: page count in each output. If you need every page to appear in both outputs, halved, you want Split PDF in Half. If you need different pages to appear in different files, you want a range-based split.
What the Output Keeps and What It Drops
Splitting a PDF into 2 parts by halving has well-defined behaviour at the content level. The table below summarises what survives the cut and what does not.
| Content type | Preserved in half-page outputs? |
|---|---|
| Page artwork (text, vectors, images) | Yes — embedded and clipped |
| Selectable text layer | Yes |
| Embedded raster images | Yes |
| Fillable form fields | No, not as editable objects |
| Comments and annotations | No, not as editable objects |
| Links and buttons | No, not as editable objects |
| Hidden page content | Not removed; this tool does not claim to strip hidden layers |
| Source PDF on disk | Untouched; the original file is never overwritten |
In short, the half-page outputs are visual copies with the same painted content as the source, but they are not interactive copies. If you need a fillable form to remain editable after the cut, run the form through a full PDF editor instead.
Rotated Pages and Direction Caveats
Some scans and document feeders store a 90-degree or 270-degree rotation flag on each page rather than rotating the artwork itself. The halving tool detects these pages and shows a notice because the cut is calculated in the PDF's stored coordinate system, not in the on-screen orientation. The practical effect is that a vertical split can appear as a top-and-bottom boundary in a viewer, or the reverse, on a rotated page.
The remedy is simple: open both downloads after the split, look at the boundary on the first page, and decide whether the visual cut matches your intent. If the labels look swapped, the source was rotated; you can rotate it back with Rotate PDF and split again, or swap the names of the two output files. For ordinary, unrotated reports and scans, the left/right or top/bottom labels match the page as displayed, and no extra step is needed.
Password-protected or unreadable PDFs are rejected safely by the tool, so remove any known protection with the relevant unlock flow before trying the split again.
Related Tasks and a Different Tool for Each
Halving is one of several PDF operations that involve "splitting" or reshaping pages. If your goal is not the same two-panel layout on every page, a different tool will fit better:
- Use Split PDF when you need to break a document into several smaller PDFs by page count or custom ranges.
- Use Rearrange PDF Pages when the order of pages needs to change.
- Use Crop PDF when you want to trim margins of one document rather than produce two outputs.
- Use Rotate PDF when only the orientation is wrong.
- Use Delete PDF Pages when some pages should be removed entirely.
Split PDF in Half is the best fit precisely when every page follows the same two-panel layout and you need two clean, private, usable outputs in original order. That is the case the tool is built for, and the workflow above describes how to use it safely from start to finish.
For a deeper look, see How to Use PDF Split and Merge Tools in Your Browser.