Merging and splitting are the two PDF jobs everyone eventually needs: the application that must be one file, the contract where only page 7 matters, the scan that came in sideways. All three fixes are page bookkeeping rather than content editing, which is why they run perfectly in your browser with the file never leaving your machine. This guide explains what actually happens to the document and the handful of details worth knowing, using our free merge PDF and split PDF tools.
In this guide
How a PDF holds its pages
Inside a PDF, pages live in a tree: a catalog points to a list of page objects, and each page object points to its own content, fonts, and images. The page order you see is just the order of that list. Merging and splitting therefore never touch the content of any page; they copy page objects from one tree into another, or build a new tree from a subset. This is why the operations are fast, lossless, and safe: page 7 of the output is bit-for-bit the same page 7 you started with, in a new table of contents.
Merging: what carries over and what does not
A merge copies each document’s pages, in the order you arrange them, into one new file. What carries over perfectly: the pages themselves, their fonts and images, their individual sizes and orientations (a landscape page stays landscape next to portrait neighbors; mixed sizes are legal in PDF). What may not survive: document-level extras like bookmarks, form fields, and metadata, which belong to each source document rather than its pages. Standard merge behavior keeps the pages and rebuilds the wrapper, so check bookmarks afterward if they matter. Practical workflow: drop the files into the merge tool, reorder them in the list, merge, and verify the page count equals the sum of the inputs, which the page counter confirms in one step for many files.
Splitting: ranges, single pages, and naming
Splitting is the same copy in reverse: select pages or ranges, and each selection becomes a complete standalone PDF, with its own catalog and everything those pages reference. Three habits save time:
- Ranges beat repetition. “1-3, 7, 12-15” in one pass instead of three passes; most tools, ours included, accept the comma-and-dash notation.
- Extract the page you share, not the document. The classic privacy slip is sending a 40-page contract “for the signature page”; splitting page 40 into its own file sends exactly what was asked.
- Name on output. A split that produces six files named document-1 through document-6 costs you the time you saved; rename at download or use range labels.
Rotation: the fix that weighs nothing
A sideways page is almost never sideways content; it is a normal page with a rotation property. Every PDF page carries a /Rotate flag of 0, 90, 180, or 270 degrees, and viewers draw the page accordingly. The rotate tool changes that flag, which is why rotating a 200-page scan takes a moment and does not re-render or degrade anything: the image data is untouched and the file size barely moves. It also means rotation is perfectly reversible, and that “upside-down scan” is a one-click repair rather than a re-scan.
What happens to file size
Intuition says merging two 5 MB files gives a 10 MB file, and intuition is roughly right: pages bring their images and fonts with them, so sizes approximately add. Two caveats run in opposite directions. If the same font is embedded in both sources, a merge can end up carrying it twice, nudging the result above the sum. And a split inherits everything its pages reference, so a 3-page extract of an image-heavy report can be surprisingly large; the pages were the heavy part. When the result matters for an upload limit, the natural next step is compression, which has its own honest guide, and the wider context of doing all this in the browser lives in the PDF pillar.
Frequently asked questions
Does merging reduce quality?
No. Pages are copied as objects, not re-rendered, so text stays text and images keep their exact bytes. If a merged file looks worse, the source page looked that way too.
Can I merge PDFs with different page sizes?
Yes; PDF allows every page its own dimensions, and viewers handle the mix. If uniformity matters for printing, fix it at print time with scaling options rather than editing the file.
Is there a limit to how many files I can merge?
Memory is the only practical bound: merging happens locally, so dozens of normal documents are fine on any modern machine. Very large scan archives are better merged in two passes.
Why did my form stop working after a merge?
Interactive form fields are document-level structures, and combining two forms means reconciling field names and definitions, which generic merging does not attempt. Merge flattens or drops them depending on the tool; fill forms before merging, or keep forms as separate files.
Does rotating fix the text for copy-paste?
If the page has a text layer, yes, the text was already right and only the display flag changes. If the page is a scan, rotation fixes the view but the page remains an image; getting selectable text out of scans is an OCR problem, not a rotation problem.