🧰 Aura Tools
PDF Optimization

How to Merge PDF Files (And What Quietly Breaks When You Do)

Combining PDFs is one of the most common document tasks there is, and one of the few where the obvious result hides several things that quietly broke. Knowing what they are takes about five minutes and saves the awkward discovery later.

What a merge actually does

A PDF is not one continuous stream of content. It is a collection of numbered objects — page objects, font objects, image objects, and a catalogue that ties them together — plus a cross-reference table telling a reader where each object sits in the file.

Merging means building a new catalogue, copying the page objects from each source in order, renumbering everything so there are no collisions, and writing a fresh cross-reference table.

Two consequences follow immediately. First, nothing is re-encoded, so quality is untouched. Second, anything stored at the document level rather than the page level has no obvious home in the new file — and that is where things go missing.

What survives a merge, and what quietly does notPage-level things are copied. Document-level things have no home in the new file.COPIED — STORED ON THE PAGEPage objectstext, images, drawing opsFontsembedded per pagePage size & rotationkept exactly as they wereAT RISK — STORED ON THE DOCUMENTBookmarks / outlinea tree the new catalogue lacks!Form fields (AcroForm)duplicate names merge into one!Internal linkspage 12 is now page 47!A merge builds a new catalogue and renumbers every object. Nothing is re-encoded, so quality never changes —but whatever lived above the page level has to be rebuilt, and simple tools do not rebuild it.
Quality is never the casualty of a merge. Navigation, interactivity and cross-references are.

The four things that break

1. Bookmarks and the outline tree

Bookmarks are a document-level structure pointing at page destinations. When pages are copied into a new document, a basic tool simply does not carry the outline over. You end up with a 200-page merged report and no navigation at all.

If bookmarks matter to you, check for them immediately after merging rather than a week later.

2. Form fields

This one causes real problems. Interactive form fields belong to a document-level structure called AcroForm, and every field has a name. Merge two copies of the same form and you now have two fields called customer_name in one document.

PDF readers treat identically named fields as the same field. Type into one and the other updates too. People discover this after sending out a merged pack of forms and receiving back copies where filling in page 3 overwrote page 11. Flatten forms before merging unless you specifically need them to stay interactive.

3. Links and cross-references

Internal links pointing to "page 12 of this document" have to be renumbered when that page becomes page 47 of the merged file. Well-built tools remap them. Basic ones leave them pointing at the wrong pages, which is worse than removing them because it looks like it works.

4. Attachments, layers and metadata

Embedded file attachments, optional content groups (layers), and the document metadata block are all document-level. Expect the metadata to be replaced by whatever the merge tool writes, and check attachments if your source files had any.

Page order and page size

Order is set by the order you add files, and pages within a file keep their internal sequence. Obvious, but worth stating because the fix for a wrong order is to reorder pages afterwards rather than re-merging from scratch.

Page size is more interesting. A merged PDF happily contains mixed sizes — A4 next to Letter next to a landscape spreadsheet. On screen this is fine. At print time it is not: the printer either scales pages to fit, which shifts your margins, or requests a tray change halfway through the job.

The two sizes that trip people up most are A4 (210 × 297 mm) and US Letter (216 × 279 mm). They are close enough to look identical on screen and different enough that scaling one to the other visibly shifts everything. If a merged document is destined for print, normalise page size before you send it.

Why merged files get so big

File sizes are roughly additive, but there is a multiplier people miss: duplicated resources.

Say you merge twelve monthly reports, each generated from the same template. Each one embeds the same font subset and the same company logo. A simple merge copies all twelve copies of both. You now have a file carrying eleven redundant copies of everything.

This is why the right order is merge first, compress second. A compressor working on the merged file can detect identical resources and store them once. Compressing each source first and then merging leaves you with twelve separately-compressed copies of the same logo.

A sensible workflow

  1. Decide about forms first. If any source has interactive fields, flatten them unless you genuinely need them live.
  2. Get the order right before merging. Cheaper than reordering 200 pages afterwards.
  3. Merge.
  4. Check the outline. If bookmarks vanished and you need them, rebuild them now while you remember the structure.
  5. Compress after merging, so duplicate resources can be shared.
  6. Normalise page size if the document will be printed.
  7. Spot-check the joins. Look at the first and last page of each source section — that is where problems show.

Doing it in the browser

Our PDF Tools merge runs entirely on your own device — the files are never uploaded, which matters when you are combining contracts, invoices or anything with personal data in it. Add the files in the order you want them, and you get a single document back.

For a straightforward merge of ordinary documents that is all you need. For the awkward cases above — live forms, heavy bookmark structures, mixed page sizes headed for a printer — the manual checks in the workflow are what separates a merge that works from one that appears to.

When not to merge

Merging is not always the answer. If the real goal is emailing several documents together, a zip archive keeps each file independently openable and named. If someone needs to work with one section, hunting through a 300-page combined file is worse than opening the right file directly. And if the documents have genuinely different retention or access rules, merging them into one blob makes that harder to manage, not easier.

Merge when the result is meant to be read as a single document. Otherwise you are just making a big file.

Try it yourself

Our free PDF merger needs no account and adds no watermark — use it right now, as many times as you like.

Open PDF Tools →

Frequently Asked Questions

Does merging PDFs reduce their quality?

No. A merge copies the page objects from each source file into a new document without re-encoding anything, so text stays vector text and images keep their original resolution. If your merged file looks worse, something else happened — most likely the tool rasterised the pages, which is a sign of a poorly built converter rather than a normal merge.

Why is my merged PDF so large?

Because file sizes add up, and duplicated resources usually do not get shared. If each of ten source files embeds the same 4 MB font set and the same logo, the merged file can carry ten copies. Compressing after merging rather than before is the fix, since the compressor can then deduplicate across the whole document.

Why did my bookmarks disappear after merging?

Bookmarks live in a document-level outline tree, not on the pages themselves. Simple merge tools copy pages and drop that tree entirely. Better tools rebuild a combined outline, usually nesting each source document's bookmarks under a new top-level entry.

Can I merge PDFs of different page sizes?

Yes, and the result keeps each page at its original size — a merged file can legitimately contain A4, Letter and landscape pages together. It only becomes a problem at print time, when mixed sizes cause scaling or tray-selection issues. If the file is going to be printed, normalise the page size first.