Merge PDF Files

Combine multiple PDFs into one, in order you choose — processed entirely in your browser, never uploaded.

1,175 views

How Merging Actually Works

A PDF page is not a flat picture — it is a page object pointing to a content stream (the drawing instructions: text runs, vector lines, positioned images) plus a resource dictionary listing the fonts and image data those instructions rely on. Merging works by copying page objects, in the order you set, into a brand-new document: each page's content stream and resources travel over intact rather than being flattened or re-rendered. That is why merged text stays selectable and searchable, and vector graphics stay crisp at any zoom instead of turning into a pixelated screenshot.

A concrete example: combine a 3-page invoice.pdf built with an embedded Helvetica font and a 12-page contract.pdf using Times New Roman body text plus two scanned signature images. The output is one 15-page document where pages 1-3 still render in Helvetica and pages 4-15 still render in Times New Roman — each page keeps its own fonts, so nothing gets substituted or reflowed, and the scanned images stay at their original resolution.

One detail that surprises people: metadata. Every PDF carries a small block of author, title and creation-date fields. When several source files carry different metadata, there is no single correct answer for what the combined file should say — most tools either inherit the first file's metadata or strip it entirely rather than trying to merge five different "Author" values into one. This tool merges with the open-source pdf-lib library directly in your browser, generating a clean metadata block for the output rather than guessing; worth a check if your workflow depends on a specific author or title field appearing afterward.

What to Know Before You Merge

Pages keep their original size and orientation, so mixing A4, US Letter and landscape sources in a single merge causes no distortion — nothing is forced onto one uniform page size. Because the process copies page objects rather than compressing or rasterizing them, image and text quality is identical to the source files; a merged PDF is never lower quality than what went into it. The one thing this approach cannot fix is encryption: a password-protected PDF cannot be read without its password, so unlock it in a viewer first if a file in your batch refuses to merge.

A practical side effect worth knowing: because fonts and images are copied as-is rather than deduplicated, a merged file's size is roughly the sum of its sources — if three PDFs each embed a full copy of the same font, the output carries three separate copies rather than one shared instance. That is a deliberate trade-off for keeping everything client-side and fast; true font deduplication is the kind of heavier processing usually reserved for server-side PDF pipelines.

Frequently Asked Questions

Is there a file size or page-count limit?

Only your device's memory. Dozens of normal documents merge in seconds; very large scanned books (500+ MB combined) may run slowly on phones, since everything happens in RAM rather than on a server.

Will form fields, links and bookmarks survive the merge?

Page content, size and orientation are preserved exactly. Interactive form fields and bookmarks are not guaranteed to carry over cleanly — flatten forms into static content before merging if their data matters.

Why does my password-protected PDF fail to merge?

Encrypted files cannot be read without the password — the content stream is unreadable without decrypting it first. Open the PDF in a viewer, enter the password, then print or save it as a new unencrypted PDF and merge that copy.

What happens to the title, author and creation date after merging?

Each source PDF can carry different metadata, so there is no single correct value to keep. This tool writes fresh metadata for the merged file rather than guessing which source should "win" — check the output's document properties if a specific author or title matters to you.

Does merging lower the quality of my pages or images?

No. Merging copies each page's content stream and resources as-is rather than rasterizing or recompressing them, so text stays sharp and searchable and images keep their original resolution.

Comments

No comments yet — be the first to write one!

Similar Tools