Merging PDFs is one of the most common document tasks people need to do without paying for Adobe Acrobat. You might need to combine multiple scanned pages into a single document, attach a cover letter to your CV, join three months of bank statements into one file for your accountant, or merge a contract with its appendices before getting a signature. Whatever the reason, there are several genuinely free ways to do it — and a few that are not as free as they claim.
When you need to merge PDFs
Common scenarios where merging PDFs saves significant time:
- Multi-page scans: You scanned a five-page document one page at a time and ended up with five separate files.
- Job applications: Your CV is one PDF, your cover letter is another, and the employer wants a single file.
- Financial records: Combining monthly bank or credit card statements into a single annual PDF for tax time.
- Contracts with appendices: The main agreement needs to be combined with schedules, exhibits, or supporting documents before signing.
Method 1 — iLovePDF (Free, browser-based)
Go to ilovepdf.com/merge_pdf. Drag and drop your PDF files onto the page — you can upload as many as you like. Once uploaded, you can reorder the files by dragging them into the correct sequence. You can also expand each file to reorder individual pages within it before the merge.
Click Merge PDF and the combined file downloads to your device. No watermarks are added on the free tier, and there is no account requirement for basic use. iLovePDF supports files up to 100 MB each on the free plan.
Privacy note: All files are uploaded to iLovePDF servers for processing. They state that files are deleted automatically after two hours, but if your documents contain sensitive information — employee records, confidential pricing, personal identification — use a local method instead.
Method 2 — Smallpdf (2 free operations per day)
Smallpdf's merge tool at smallpdf.com/merge-pdf is clean and fast. You can drag files in, sort them by dragging, and download the merged result. The interface is slightly more polished than iLovePDF, but the key limitation applies: free accounts are limited to two PDF operations per day across all Smallpdf tools. If you have already used a conversion or compression earlier today, merging may be blocked.
Like iLovePDF, Smallpdf processes files on their cloud servers. The free tier adds no watermarks. For occasional use it is a solid option; for regular daily merging it becomes frustrating quickly.
Method 3 — macOS Preview (Free, local, private)
Mac users have a powerful PDF merger built into the operating system. Here is the step-by-step process:
- Open the first PDF in Preview.
- Open the Thumbnails sidebar: View > Thumbnails.
- Open the second PDF in a separate Preview window, also with Thumbnails visible.
- Drag the page thumbnails from the second document's sidebar into the first document's sidebar, positioning them where you want them in the final document.
- Repeat for any additional PDFs.
- Go to File > Export as PDF and save the merged file.
This method is free, requires no internet connection, and never uploads your files anywhere. It works perfectly for sensitive documents. The only limitation is that it requires macOS — Windows users will need a different approach.
Method 4 — Python with pypdf (for technical users)
If you are comfortable with the command line, the pypdf library makes merging PDFs completely free, local, scriptable, and automatable. Install it with pip install pypdf, then use this script:
from pypdf import PdfMerger
merger = PdfMerger()
for pdf in ["file1.pdf", "file2.pdf", "file3.pdf"]:
merger.append(pdf)
merger.write("merged.pdf")
merger.close()
This is ideal if you regularly need to merge the same set of files, or if you are building a workflow that processes documents automatically. It runs entirely on your machine — no upload, no service terms, no daily limits.
Comparison table
| Method | Cost | Platform | Privacy | Limits | Best for |
|---|---|---|---|---|---|
| iLovePDF | Free | Any browser / iOS / Android | Cloud upload | 100 MB per file | Most users, non-sensitive docs |
| Smallpdf | Free (2/day) | Any browser | Cloud upload | 2 operations/day | Occasional use |
| macOS Preview | Free | Mac only | 100% local | Mac required | Sensitive docs on Mac |
| Python pypdf | Free | Windows / Mac / Linux | 100% local | Python required | Technical users, automation |
After merging: sign and store your combined PDF
Once you have merged your PDFs, you often need to either sign the result or store it safely. PrimeDocu covers both. Sign the merged document with a legally binding electronic signature (free, unlimited, no watermarks), then store it in an AES-256 encrypted vault. The free plan includes 1 GB of storage and 10 AI credits per month — enough to summarise or extract key information from the document you just merged. No credit card is required to get started.
Frequently asked questions
What is the best free PDF merger?
iLovePDF is the best free browser-based PDF merger. It combines unlimited files, lets you reorder pages before merging, and adds no watermarks on the free tier. For a private, offline option on Mac, Preview is excellent and requires no upload.
How do I combine PDFs on a Mac without software?
Open both PDFs in macOS Preview with the Thumbnails sidebar visible in each window. Drag page thumbnails from one document's sidebar into the other, arrange them in the order you want, then save as File > Export as PDF. The whole process is free and entirely local.
Can I merge PDFs on my phone?
Yes. iLovePDF has both a mobile-optimised website and dedicated iOS and Android apps that merge PDFs for free. Smallpdf also works on mobile browsers. Both upload your files to cloud servers, so use a local method for sensitive documents.
Will merging PDFs reduce image quality?
No. Merging PDFs combines the existing page content without reprocessing or recompressing it. Image resolution and text quality remain exactly as they were in the originals.