Merge PDF

Combine multiple PDF files into a single document.

Loading tool…

By Muhammad Abdullah Rauf · Founder, EverydayTools.proUpdated 2026-05-17

What does merging PDFs mean?

Merging PDFs combines two or more separate PDF files into a single document in a specified order, preserving all original page content — text, images, hyperlinks, and embedded fonts — without altering individual pages.

PDF merging joins the page trees of multiple PDF documents into one output file. Each source document contributes its pages in sequence, and the resulting PDF contains all of them in the exact order you choose.

Browser-based PDF merging — like this tool — processes files entirely in JavaScript using the pdf-lib library. Your files are never uploaded to a server, which matters for contracts, medical records, legal documents, and any file you would not upload to a third-party service.

A merged PDF is a new document; the originals are untouched. Merging is different from inserting pages into an existing document and different from splitting a document into smaller files.

Quick answers

Concise answers for common searches — definitions, steps, and comparisons.

Can I merge PDFs that have different page sizes?

Yes. Each page in the merged PDF retains its original dimensions. An A4 page merged with a US Letter page will display at its native size. Most PDF viewers handle mixed-size documents correctly. If uniform page size is required (for printing or binding), resize pages to a standard size in a PDF editor before merging.

Why is my merged PDF file larger than the sum of the source files?

pdf-lib copies all content streams, embedded fonts, and image resources from each source into the merged document. If source PDFs embed the same font separately, the merged file contains multiple copies. PDF optimizers (like Compress PDF) can reduce the merged file by deduplicating shared resources and re-optimizing image quality. Merge first, then compress.

Will merging PDFs preserve clickable hyperlinks and bookmarks?

Hyperlinks (URI actions) are preserved in the merged output. Document-level bookmarks (outlines) from source PDFs are not automatically merged into a unified table of contents — they are either preserved as separate outlines or lost, depending on the tool. Page cross-references within a single source document continue to work because their page indices are updated during the merge.

How to use Merge PDF

  1. Add your PDF files

    Click 'Add PDFs' or drag and drop multiple PDF files into the upload area. You can add up to 20 files with a combined total of 100 MB.

  2. Arrange the order

    Drag the file cards to reorder them. The merged PDF will flow in the exact order you set — review the sequence carefully before proceeding.

  3. Click Merge PDFs

    Press 'Merge PDFs'. All processing happens in your browser using pdf-lib — nothing is uploaded to any server.

  4. Download and verify the merged file

    Click 'Download' to save the combined PDF. Open it and confirm the page count matches the sum of your source files and the content order is correct.

Who uses Merge PDF?

Common real-world scenarios where this tool saves time.

Job applications

Combine resume, cover letter, and portfolio into one PDF before submitting to employer portals that accept only one file attachment.

Contract assembly

Merge multiple agreement pages, appendices, and signature sheets into one sendable document for clean contract management.

Report compilation

Combine monthly reports, charts, and data exports from different tools into one presentation-ready PDF for stakeholders.

Study materials

Merge lecture slides, notes, and supplementary PDFs into one file for offline reading and organised revision.

Workflow guides

Step-by-step chains that connect related tools for common tasks.

Job application packet: merge → compress → submit

Many portals accept one PDF but enforce a 1–2 MB cap. Assemble first, then compress — merging does not shrink file size.

  1. Combine resume, cover letter, and certificates in order here (drag tiles to set sequence).
  2. Verify page count and legibility at 100% zoom before uploading.

Merge → reorder → compress for distribution

The standard sequence when combining files from multiple sources.

  1. Merge your source PDFs here and drag the tile order to match the intended reading sequence.

Compile → watermark → flatten → share

  1. Merge all source files here to create the master document.

Merge PDF examples

Job application package

Input

File 1: resume.pdf (1 page) · File 2: cover-letter.pdf (1 page) · File 3: portfolio.pdf (4 pages)

Output

job-application.pdf · 6 pages total · Resume on page 1, Cover letter on page 2, Portfolio on pages 3–6

Many employer portals accept only one PDF attachment. Merging resume, cover letter, and portfolio in that order creates a single professional document. Drag the tiles to set the order before merging — the final PDF reflects exactly the sequence shown.

Monthly report compilation

Input

File 1: financial-summary.pdf (3 pages) · File 2: sales-charts.pdf (5 pages) · File 3: appendix-data.pdf (12 pages)

Output

monthly-report-may-2026.pdf · 20 pages total

Finance and operations teams routinely export reports from separate tools (Excel, Tableau, database exports) as individual PDFs. Merging creates one distribution-ready document for stakeholders without manual copy-paste or re-export.

Legal document assembly

Input

File 1: agreement-body.pdf (8 pages) · File 2: schedule-a-exhibits.pdf (6 pages) · File 3: signature-page.pdf (1 page)

Output

contract-final.pdf · 15 pages total

Legal teams often draft agreement body, exhibits, and signature pages separately. The merged PDF preserves all hyperlinks (including internal cross-references) and embedded fonts so the final contract prints and displays correctly.

How browser-based PDF merging works

This tool uses pdf-lib, an open-source JavaScript library for creating and modifying PDFs in browser and Node.js environments. When you click Merge, each source PDF is read as an ArrayBuffer, parsed into a PDFDocument object, and its pages are copied into a new PDFDocument using copyPages(). The final document is serialized as a Uint8Array and offered as a file download.

Formula

const merged = await PDFDocument.create();
for (const file of files) {
  const src = await PDFDocument.load(arrayBuffer);
  const pages = await merged.copyPages(src, src.getPageIndices());
  pages.forEach(p => merged.addPage(p));
}
const bytes = await merged.save();

Assumptions

  • PDFs are not password-protected or DRM-encrypted
  • Total combined file size fits in available browser memory

Limitations

  • Password-protected PDFs must be unlocked before merging
  • Interactive form fields may flatten if field names conflict across source documents
  • Very large files (>100 MB combined) may be slow on low-memory devices
  • Some advanced PDF features (3D content, embedded JavaScript actions) may not be preserved

Reference tables

PDF operations: which tool does what

Each operation transforms a PDF in a different way — choose based on your specific task.

OperationWhat it doesUse when
MergeCombines multiple PDFs into one fileAssembling multi-part documents for submission or sharing
SplitDivides one PDF into multiple filesBreaking a large document into chapters or individual pages
Extract pagesCopies specific pages into a new PDFPulling the 3-page summary out of a 50-page report
Remove pagesDeletes specified pages from a PDFRemoving a cover page or blank page before sharing
CompressReduces file size by compressing embedded imagesReducing size before emailing or uploading

You can chain operations: compress each PDF first, then merge the smaller files for a faster, lighter output.

Browser-based vs server-based PDF tools

Where processing happens affects privacy, speed, and file size limits.

FactorBrowser-based (this tool)Server-based tools
PrivacyFiles never leave your deviceFiles uploaded to third-party servers
File size limitBrowser memory (~1 GB practical)Tool-specific, often 25–100 MB
SpeedFast for files up to ~50 MB combinedDepends on upload speed and server queue
Offline useWorks without internet after page loadsRequires internet connection
Advanced featuresLimited to pdf-lib capabilitiesOCR, form creation, digital signatures available
CostFree, no signup requiredOften freemium with page or size limits

When to use Merge PDF vs related tools

Related toolUse this tool whenUse related tool when
Adobe AcrobatYou need to quickly merge PDFs without installing software, creating an account, or paying a subscription.You need OCR on scanned documents, advanced form creation, digital signatures with a certificate authority, or editing existing text in a PDF.
Compress PDFYou want to join multiple documents into one.You want to reduce the file size of a single PDF — especially useful to run on the merged output afterward.
Split PDFYou want to combine multiple documents into one.You want to divide a single document into separate chapter or section files.

Best practices

Compress each PDF before merging

Merging preserves file sizes — a 10 MB + 8 MB merge produces roughly 18 MB output. Compressing sources first reduces the merged file, which is important for email attachments with size limits.

Preview all source PDFs before merging

A rotated, blank, or corrupted page in a source file will appear in the merged output. Verify each file in a PDF viewer before merging to avoid sending a document with unexpected pages.

Flatten fillable forms before merging

PDF form field names must be globally unique within a document. Merging two forms with the same field names creates conflicts that may make both sets of form data unreadable.

Verify page count after every merge

A quick page count check — sum of source pages equals merged page count — takes 5 seconds and catches silent failures before you send or submit the document.

Common mistakes to avoid

Adding files in the wrong order before merging

The merged PDF follows your file list order exactly. Review the sequence in the tool before clicking Merge — drag tiles to reorder. The most common error is forgetting to put the cover page first.

Trying to merge password-protected PDFs

Encrypted PDFs cannot be parsed by pdf-lib without the password. If you own the file, use a PDF password remover tool first, then re-merge the unlocked versions.

Not verifying output page count after merging

After downloading the merged PDF, confirm the page count matches the sum of your source files. If pages are missing, one source PDF may have been corrupted or used an incompatible PDF version.

Merging fillable forms without flattening them first

PDF form field names must be globally unique within a document. Merging two forms that both have fields named 'signature' or 'date' creates conflicts that can make all form data unreadable. Fill and flatten forms before merging.

Merging large files on a mobile or low-memory device

Browser-based PDF processing is memory-intensive. Source PDFs above 50 MB can cause slow processing or out-of-memory errors on phones. Compress each PDF first to reduce size, then merge.

Troubleshooting

The merged PDF downloads but opens blank or with missing pages

Likely cause: One source PDF was corrupted, password-protected, or uses PDF 2.0 features not yet fully supported by pdf-lib

Fix: Test each source PDF individually in a PDF viewer to confirm they are all readable. Re-export any corrupted file from its original application (Word, Excel, scanner app).

Pages appear rotated in the merged output

Likely cause: Source PDFs have rotation metadata set (e.g., scanned pages with a rotation flag that the viewer corrects). pdf-lib preserves the raw metadata.

Fix: Use the Rotate PDF tool to normalize each source file to 0° rotation before merging.

The Merge button does nothing or the download never starts

Likely cause: Browser pop-up blocker intercepted the download, the combined file size exceeded browser memory, or one file failed to parse silently

Fix: Disable pop-up blocking for this site. Try merging two small files first to isolate whether it is a parsing or memory issue. Refreshing and re-adding files usually resolves transient failures.

The merged file is much larger than the sum of the source files

Likely cause: pdf-lib saves with minimal stream compression when merging, even if source files were heavily compressed

Fix: After merging, run the Compress PDF tool on the output. This typically reduces size by 20–60% depending on how much image content the PDF contains.

PDF viewer shows a 'Repaired document' warning after opening

Likely cause: Some PDF viewers (Adobe Acrobat) auto-repair minor structural variations in pdf-lib output for unusual source file structures

Fix: Accept the repair — the page content is intact. If the repaired version looks different from expected, check that source PDFs are not malformed.

Frequently Asked Questions

Does merging PDFs upload my files to a server?

No. PDF merging runs entirely in your browser using pdf-lib. Your files are never sent to any server — safe for confidential contracts, medical records, and private documents.

How many PDFs can I merge at once?

Up to 20 PDF files per session with a combined total size of 100 MB. For larger batches, split into multiple merge sessions and merge the results.

Will the merged PDF preserve all content?

Yes. Text, images, hyperlinks, and embedded fonts are preserved. PDFs with interactive forms or DRM encryption may have limitations — see the troubleshooting section.

Can I reorder pages before merging?

Yes. Drag and drop the file cards in the list to set the exact order. The merged document follows the order you set.

Is this PDF merger free?

Yes — completely free with no signup, no watermarks on output, and no usage limits.

Does merging PDFs compress the output?

No — merging preserves original page content. The output size is approximately the sum of source file sizes (or slightly larger). To reduce the merged file size, run it through the Compress PDF tool after merging.

Will hyperlinks and internal bookmarks be preserved?

External hyperlinks (URLs) and internal bookmarks within each source document are preserved. However, links that crossed between separate documents before merging will not automatically resolve to the correct pages in the merged output.

Can I merge scanned PDFs?

Yes. Scanned PDFs are image-based and merge normally — the image content is copied exactly. Note that scanned PDFs do not contain selectable text unless OCR was run on them. Merging does not add OCR capability.

What is the difference between merging and combining PDFs?

The terms are interchangeable. Both refer to joining multiple PDF files into one. 'Combining' is Adobe Acrobat's terminology; 'merging' is used by most other tools. There is no functional difference.

Can I merge a PDF with a Word document or image?

Not directly — this tool only accepts PDF files. Convert Word documents to PDF first (File → Export → PDF in Word) and convert images using the Image to PDF tool, then merge the resulting PDFs here.

Privacy, accuracy, and trust

Privacy

All PDF merging runs in your browser using pdf-lib, an open-source JavaScript library. Your files are never uploaded to any server. Safe for confidential contracts, medical records, legal documents, and any private content.

Accuracy

pdf-lib copies page content byte-for-byte from source documents. Text, images, vector graphics, and hyperlinks are preserved. Interactive form fields are preserved but may behave differently if field names overlap across source documents.

Always verify the merged PDF before submitting for legal, medical, or formal purposes. Confirm page count, order, and content against your source files.

Part of PDF Tools

More free tools for the same workflow.

Advertisement

Reviewed by EverydayTools Editorial Team on 2026-05-14.