Merging PDFs: Native Assembly Versus Flattening, and When Each Is Right
Combining several PDFs into one looks like a simple stapling operation, and in one mode that is exactly what it is. But PDF pages carry far more than what you see: selectable text, embedded fonts, form fields, annotations, invisible layers, revision history and document metadata all travel along. Whether you keep or discard that hidden payload is the real decision.
Native assembly: keep everything
Native merging copies each page object into a new document without re-rendering it. Text stays as text, vector graphics stay as mathematical paths, fonts remain embedded, and links continue to work.
- Text remains selectable, searchable and readable by screen readers.
- Vector content stays infinitely sharp at any zoom level.
- File size is roughly the sum of the inputs, often less, because shared fonts can be deduplicated.
- The operation is fast, because nothing is being redrawn.
This is the right default for contracts, reports, invoices, anything that will be searched, and anything that needs to remain accessible. Assume native unless you have a specific reason not to.
Flattening: deliberately throw the structure away
Flattening renders each page to an image and rebuilds the document from those images. What you see is preserved. Everything underneath is gone, because there is no longer anything underneath.
| Native merge | Flattened merge | |
|---|---|---|
| Selectable text | Preserved | Removed |
| Search and screen readers | Work normally | No longer function |
| Form fields | Remain interactive | Become static pictures of fields |
| Annotations and comments | Preserved | Either burned in or discarded |
| Hidden layers and revisions | Carried over | Eliminated |
| Rendering consistency | Depends on the reader and fonts | Identical everywhere |
| File size on text documents | Small | Often much larger |
| Zoom quality | Perfect at any level | Limited by render resolution |
Flattening is the correct choice in three situations: when you need every recipient to see byte-identical rendering regardless of their software, when the document contains hidden material that must not travel, and when a form must be locked so it cannot be edited further.
The redaction trap
This is the mistake worth the whole article. Drawing a black rectangle over text in a PDF does not remove the text. It draws a rectangle on top of it. The words are still in the file, still selectable, and trivially recovered by copying the page into a text editor.
Documents have been released publicly with sensitive passages "redacted" this way more than once. Flattening genuinely fixes it, because rendering the page to an image produces a picture of a black rectangle with nothing underneath.
Metadata survives more than people expect
Beyond the visible page content, PDFs carry a document information dictionary and often an XMP metadata block. Between them these commonly record the author name, the originating application, the creation and modification timestamps, and sometimes the full local file path of the source document.
That last one has embarrassed people: a path such as C:\Users\jsmith\Clients\Acme\draft-final-v3.docx discloses a name, a client relationship and an editing history, none of which was in the visible document.
- Check the document properties before sending anything outside your organisation.
- Merging does not automatically clear metadata, and the merged file may inherit fields from whichever input was processed first.
- Flattening removes page-level structure but the new document still has its own metadata, so set or clear it deliberately.
- Attachments embedded inside a PDF survive a native merge. If an input file had a spreadsheet attached, the merged output still contains it.
Getting the order and orientation right
- Confirm the page count of every input before merging. A missing page is far harder to spot in a 200 page output than in its 12 page source.
- Check orientation per input. Documents scanned in batches frequently contain pages rotated 90 or 180 degrees, and the rotation is a page property that carries over.
- Watch for duplicated cover pages and headers when combining several reports. Repeated near-identical pages make a document harder to navigate and add nothing.
- Rebuild the bookmark structure if the document is long. Native merging usually preserves each input bookmark tree but does not create a top-level entry for each section.
- Verify the total page count at the end. It is the quickest check that nothing was silently dropped.
Common questions
Does merging reduce quality?
Native merging does not touch the page content at all, so quality is identical. Flattening re-renders at a chosen resolution, so quality is capped by that setting. At 300 DPI the difference is invisible on screen and fine in print.
Why is my flattened PDF so much larger than the original?
A page of text stored as text is a few kilobytes. The same page stored as a 300 DPI image is a few hundred. Flattening text documents multiplies their size, which is the main reason not to flatten by default.
Can I flatten only some pages?
Yes, and it is often the best approach. Flatten the pages carrying sensitive material or form fields, merge the rest natively, and you keep searchable text everywhere it does not cause a problem.
Will a password-protected PDF merge?
Not while it is encrypted. The protection has to be removed first, which requires the password. An owner password restricting editing is different from a user password restricting opening, and tools vary in how they treat each.
Try it yourself
The settings described above are all adjustable in the tool. Files stay on your device; nothing is uploaded to a server.
PDF builder and mergerRelated guides
- Turning Images into a PDF: Page Size, Resolution and Why Pages Come Out WrongImages have pixels, PDF pages have physical dimensions, and the conversion between them is where most problems start. This explains the relationship and how to control it.
- Converting 3D Models: Units, Up Axis and What Each Format Actually StoresThe geometry almost always survives a conversion intact. What breaks is scale, orientation and materials, because every format disagrees about all three.
- Making a Video File Smaller Without Making It Look BadVideo size is governed by four settings that interact. Change them in the right order and you can often cut a file by three quarters with no visible difference.