Upload multiple PDF files and merge them into a single document. Fast, secure, and free PDF combiner.
Drop your PDFs here to merge them
Click to browse or drag & drop
TL;DR — Merge PDF in 30 seconds
Three steps. Under 30 seconds. Files never leave your browser.
Click Browse or drag and drop two or more PDF files. Add as many as you need — works on desktop, iPhone, and Android.
Drag files into the order you want. The merged PDF will contain pages from each file in the sequence you set.
Click Merge PDF and download your combined file instantly — no watermarks, no signup required.
Why PDFcrest
Unlimited files, drag-to-reorder, no watermarks, no signup — the simplest way to combine PDFs.
Merge PDF files without re-encoding. All fonts, images, hyperlinks, and layouts from every source file are preserved exactly in the combined output.
Combine unlimited PDF files in a single session — no cap on the number of files or total pages. Merge a two-page invoice with a 300-page report, no problem.
Merge PDFs free with no daily limit, no account, and no subscription. Unlike SmallPDF or ilovePDF which cap free users at 2 tasks/day, PDFcrest is always unlimited.
Merge PDFs on iPhone, iPad, Android, or desktop directly in your browser. No app download needed. Mobile-optimised interface.
Set the exact page order by dragging files before merging. No extra steps — what you see is what you get in the combined PDF.
Since files stay on your device, there's no server-side upload queue or bandwidth bottleneck — merging large batches is limited only by your own browser and computer.
Merging is powered by client-side PDF technology — your files are never uploaded to a server. Everything happens locally on your device, which is also why merging is instant.
Comparison
| Feature | PDFcrest | Adobe Acrobat Online | SmallPDF / ilovePDF |
|---|---|---|---|
| Merge PDFs — Free | ✓ Always free | ✗ Limited free tier | ✗ 2 tasks/day |
| No Signup Required | ✓ Zero signup | ✗ Adobe account | ✗ Email required |
| No Watermarks | ✓ Never | ✓ | ✗ Free adds watermark |
| Unlimited Files per Session | ✓ No limit | ✓ | ~ Limited |
| Works on iPhone | ✓ Mobile-first | ✓ App required | ✓ |
| File Deleted After Download | ✓ Immediately | ~ Varies | ~ 1 hour |
Use Cases
From students to finance teams — everyone needs to combine PDF files.
Combine PDF files — cover letter, main report, and appendices — into one professional document before sending to clients or executives.
Merge PDFs — dissertation, reference list, and signed declaration — into a single file for university portal submission.
Combine exhibit PDFs, affidavits, and case summaries into a single court bundle. Merge PDF documents for filing with consistent page numbering.
Combine PDF — CV, cover letter, certificates, and portfolio — into one attachment. Sending one file is more professional and prevents attachments getting lost.
Merge monthly invoice PDFs into a single quarterly statement. Combine bank statements, receipts, and expense reports for accountants and auditors.
Merge PDFs on iPhone directly from Safari. Combine documents from different apps into one file without a desktop computer.
Merge scanned pages from a multi-page scanner into a single PDF for easier organization, sharing, and long-term archival storage.
Workflow Recipes
Merging is rarely the last step. Here are the tool combinations PDFcrest users chain together most often.
Need to combine a Word document with existing PDFs? Convert it first, then merge everything into one file.
Combining several PDFs adds up their file sizes. Shrink the result before emailing or uploading it to a portal with a size limit.
If one of your PDFs requires a password just to open, remove it first — merging can only handle permission-restricted files automatically, not fully encrypted ones.
Combined a set of sensitive documents into one file? Add a password before sending the merged bundle externally.
If a combined document needs to be shared in smaller pieces later, split it by page range instead of starting over.
Technical Detail
When you merge PDF files, PDFcrest uses the PDF-lib library to load each source document and copy its pages into a new PDF. The process is non-destructive: page content streams, embedded fonts, images, form fields, and hyperlinks from every source document are preserved exactly in the merged output. PDFcrest does not re-encode or rasterise pages during merging, so there is no quality loss.
Encrypted PDFs are handled on a best-effort basis — PDFcrest attempts to open them without a password, which works for documents with permission restrictions (like print-only) but not for PDFs that require a password just to open. If a file fails to merge, remove its password first with the Protect PDF tool, then try again.
The output PDF is a standards-compliant single document compatible with all major viewers. You can further compress the merged PDF to reduce file size or split it into chapters using PDFcrest's free tool suite.
01-intro.pdf, 02-main.pdf) so they line up in the right order automatically.Under the Hood
No black box — this is the literal pdf-lib sequence executed for every file you add, in order.
Per file, in upload/drag order:
merged = PDFDocument.create()
for (file of selectedFiles) {
bytes = file.arrayBuffer()
pdf = PDFDocument.load(bytes, { ignoreEncryption: true })
copied = merged.copyPages(pdf, pdf.getPageIndices()) # every page, in original order
copied.forEach(page => merged.addPage(page))
}
output = merged.save() # single pass, no re-encoding of any content stream
| Step | What it actually means |
|---|---|
copyPages() | Copies each page's content stream, fonts, and images directly into the new document — this is why quality and file structure are identical to the source, not re-rendered. |
ignoreEncryption: true | Lets pdf-lib open a PDF that has an encryption dictionary without throwing immediately. This succeeds for permission-restricted files (e.g. print-only) but not for PDFs that require a password to open at all. |
| Order | Files are copied in exactly the order they appear in the file list at the moment you click Merge — the same order you set by dragging. |
FAQ
Answers to the most common questions about combining PDF files
References & Further Reading
Page last updated: · Written and maintained by the PDFcrest team.