Combining multiple PDFs into a single file is one of the most common document tasks in professional environments. It also does not require a server, an account, or a subscription — it is an operation that can run entirely in the browser using a library like pdf-lib. Many platforms that charge for PDF merge, or require an account, are charging for convenience rather than capability.
How PDF merge works
PDF merge concatenates the page objects from multiple PDF files into a single output file. The operation is straightforward when the source files are standard PDFs: the merger reads the page tree from each file, appends them in order, and writes a single document with a combined page tree.
Complications arise with encrypted PDFs (which cannot be merged without removing encryption first), PDFs with conflicting font names (where the same font name maps to different font data in different files), and PDFs with interactive form fields (which can produce unpredictable results when merged because form field names must be unique within a document).
For standard non-encrypted PDFs without forms, merge is a clean, lossless operation. The resulting file is exactly as large as the sum of its parts, minus any shared resources that can be deduplicated. Page content, images, and fonts are preserved exactly.
Free options that work without an account
Filum performs PDF merge in the browser using pdf-lib for files under 25 MB. No file is uploaded to a server — the merge happens client-side and the output is downloaded directly. For larger files or where server processing is preferred, the merge runs on Railway via Gotenberg. In both cases, no account is required.
PDF24 offers unlimited free PDF merges with no account. The merge is server-side. PDF24 has been a reliable option for high-volume merge tasks where the no-limit policy matters more than specific quality considerations.
Smallpdf allows PDF merge within its two-tasks-per-hour free limit. If merge is the only task you need, two merges per hour is adequate. If you need to merge and then compress or convert in the same session, you will hit the limit after the first two operations.
Common merge problems and how to fix them
If a merged PDF has blank pages, one of the source files likely had blank pages that were part of the document structure. Open each source file and identify any blank pages before merging, then remove them using a PDF editor or by splitting the file to remove the blank pages before re-merging.
If text in the merged output looks different from the source — different weights, slightly different spacing — the merge process encountered conflicting font data. This is most common when merging files that came from different source applications or were converted through different paths. The merge operation itself did not change the fonts; conflicting font data in the source files resolved ambiguously.
Merged PDFs with form fields often have non-functional fields because field names collide across merged documents. If the forms need to remain functional, use a tool that handles form field renaming during merge, or flatten the form fields before merging so they become regular text.
Getting the page order right
Most merge tools allow you to reorder files before merging. The output page order matches the file order you specify. If you need pages from different files interleaved — alternating pages from file A and file B, for example — this requires either a tool that supports interleaved merge modes, or splitting each source into single pages, reordering them manually, and merging the resulting singles in order.
For a two-sided scan workflow — where front sides and back sides were scanned in separate passes — the interleaved merge operation produces the correct bound-document order. Some tools label this operation specifically; others require the manual split-and-reorder approach.