How to Merge PDF Files — 3 Free Methods
Learn how to combine multiple PDFs into one document using browser tools, macOS Preview, and command-line utilities. Covers page order, file size, and common pitfalls.
When Do You Need to Merge PDFs?
You scanned a contract page by page and ended up with twelve separate files. Your team sent four reports that should be one deliverable. A grant application requires a single PDF combining your resume, budget, and project narrative. Merging PDFs is one of those tasks that feels like it should be built into every operating system — but isn't.
Three Ways to Combine PDF Files
1. Browser-Based Tools
The fastest option for most people. FileKit PDF Merger lets you drag and drop files, reorder them visually, and download the combined result — all inside your browser. Nothing gets uploaded to a server, which makes it safe for confidential documents like legal agreements or tax filings.
Best for: quick merges of 2–20 files, privacy-sensitive documents, anyone who doesn't want to install software.
2. macOS Preview
Open the first PDF in Preview, show the thumbnail sidebar (View → Thumbnails), then drag additional PDFs into the sidebar at the position you want. Save. This works well for two or three files but gets cumbersome for larger batches, and there is no undo if you accidentally save over the original.
Best for: Mac users merging 2–3 files when Preview is already open.
3. Command Line (pdftk / qpdf)
For batch automation or scripting pipelines, command-line tools offer the most control:
# pdftk
pdftk file1.pdf file2.pdf file3.pdf cat output merged.pdf
# qpdf
qpdf --empty --pages file1.pdf file2.pdf file3.pdf -- merged.pdfBest for: developers, scripted workflows, merging hundreds of files.
Page Order Matters
Most merge tools process files in the order you add them. If your final document needs a specific sequence — cover page first, appendix last — arrange the files before merging. Browser-based tools like FileKit let you drag to reorder after adding; command-line tools require you to list files in the correct order.
Will Merging Increase File Size?
A merged PDF is roughly the sum of its parts. Some tools re-compress shared resources (fonts, colour profiles), which can shave a few percent off. Others simply concatenate, adding a small amount of structural overhead. If the merged file is too large, run it through a PDF compressor afterward.
Common Pitfalls
- Broken bookmarks. Merging discards bookmarks from the original files in most tools. If bookmarks matter, use Acrobat or a tool that explicitly preserves them.
- Mixed page sizes. Merging a letter-size report with an A4 appendix produces a PDF with inconsistent page dimensions. This is valid PDF but can surprise readers and printers.
- Encrypted files. Password-protected PDFs usually need to be unlocked before they can be merged. Most tools will tell you up front.
- Form fields. Interactive form fields can conflict if two source files use the same field names. Flatten forms before merging if you only need the filled-in values.
Step-by-Step: Merge PDFs in Your Browser
- Open FileKit PDF Merger.
- Drop or select your PDF files.
- Drag to reorder if needed — the top file becomes page 1.
- Click Merge.
- Download the combined PDF. Done.
The entire process runs in your browser. No account, no upload, no watermark.