Merge PDF
Merging PDF files is one of the most common digital paperwork tasks. Whether you are submitting a job application that requires a single combined PDF, compiling chapters of a thesis, packaging invoices for a client, or putting together scanned forms before sending them to a government office, the request from the other side is almost always the same: "send it as one PDF."
The ToolzPedia Merge PDF tool was built to do exactly that, with three properties most online merge tools fail to provide simultaneously: the merge happens entirely inside your web browser, the original page quality is preserved exactly (no re-rendering, no recompression), and there is no upload, signup, watermark, or page limit. The underlying engine is the open-source pdf-lib JavaScript library, loaded on demand from a CDN; the server you are reading this page from never sees the PDFs you are about to combine.
On a typical mid-range laptop, combining a dozen 2 MB PDF files takes about two seconds and produces a single output file you can download with one click. The tool is designed to work the way most people actually merge PDFs in real life: drop everything in, drag the cards into the order you want, hit a button.
Use the tool edit
Select 2 or more PDFs · Drag to reorder · Max 50MB total
How to use Merge PDF edit
Follow these steps to use the tool:
-
Open the tool and drop your PDFs
Click anywhere in the upload zone, or drag your PDF files onto it from your file manager. You can add files in batches by dropping more after your initial selection. Each file appears as a card showing its name and size; the tool accepts any number of files but keeping the total under 50 MB keeps the merge fast and avoids browser memory pressure on lower-end devices.
-
Reorder the files into the merge order you want
The merged PDF will follow the exact top-to-bottom order of the cards. Drag any card up or down to reorder. The first card becomes pages 1 to N of the output, the second card continues from there, and so on. If you added a file by mistake, hit the × button on its card to remove it, this only removes it from the merge list, it does not affect the original file on your disk.
-
Click Merge PDFs
Hit the green Merge PDFs button. The progress bar shows which file is currently being processed and the total percentage complete. For a typical merge of 5 to 10 files this takes under two seconds; very large merges (hundreds of pages, or files with many embedded images) may take longer because pdf-lib has to parse and rebuild every page object.
-
Download the merged file
When the merge finishes, a green confirmation card appears showing how many PDFs were combined, the total page count, and the output file size. Click the Download Merged PDF button to save it to your default downloads folder; the default filename is <code>merged.pdf</code> but most browsers let you rename it before saving.
Frequently asked questions edit
Use cases edit
Most application portals, corporate, government, university, accept exactly one PDF for the resume, cover letter, and supporting documents. Combine them locally so the file order is exactly what you want.
Freelancers and small businesses regularly combine multiple invoices into a single monthly statement before emailing the client. Doing this in-browser avoids uploading financial documents to third-party servers.
Theses, dissertations, and assignments are often required as a single combined PDF with cover page, body, references, and appendices in a specific order.
Phone-scanned documents (using Camera Scanner, Notes, Google Drive scanner, etc.) typically produce one PDF per scan session. Merging them gives you a single archival document.
Solicitors and HR teams routinely package contracts, addenda, and signature pages into a single delivered PDF for clients and counterparties.
Booking confirmations, e-tickets, hotel vouchers, and itineraries are easier to manage as one merged document on your phone or printed for the trip.
How it works edit
PDFs are not really documents in the traditional sense, they are containers of objects (pages, fonts, images, metadata) wrapped in a directory structure called the cross-reference table. Merging two PDFs means producing a new container that references all the source pages in order, then rebuilding the cross-reference table so every internal pointer still resolves correctly.
The Merge PDF tool uses pdf-lib, a pure-JavaScript implementation of the PDF specification, to do this entirely in the browser. When you drop in your files, each one is read into memory as an ArrayBuffer using the FileReader API. pdf-lib parses each source PDF, then for every input file it calls copyPages() to deep-copy the page objects (along with their fonts, images, and embedded resources) into the output document. Once all pages are in, save() serialises the result back into PDF bytes which we wrap in a Blob and offer as a download via URL.createObjectURL().
Two important consequences of this design: first, there is no quality loss because pages are copied at the object level, the same images, the same fonts, the same vector graphics, byte-for-byte. Second, no file ever leaves your computer. You can verify this by opening your browser's DevTools, switching to the Network tab, and watching while you merge, the only request is the one-time download of pdf-lib itself from the CDN.
Tips and best practices edit
- If you need a specific filename, rename the merged file at the download stage rather than after, some operating systems treat the default name as immutable until the download completes.
- For consistent margins and orientation across the merged output, make sure all your input PDFs share the same page size before merging. Mixing A4 and US Letter inputs is fine but the result will alternate page sizes, which looks unprofessional in print.
- When merging scanned PDFs from a phone, run them through a compress step first if the total exceeds 50 MB. A 12 MP camera scan saved as PDF is often 5 to 10 MB per page, which adds up quickly.
- Browsers handle the merge in memory, so total file size is bounded by your device's available RAM. If a merge fails on a phone, try it again on a laptop or close other tabs first.
- The merge order is preserved exactly as shown. There is no automatic alphabetical or chronological sort, this is intentional, because most real merges (job applications, invoice packets, scanned forms) need a specific human-chosen order.
Common mistakes edit
If a PDF has a password or owner-restriction set, pdf-lib will refuse to copy its pages. Open the file in any PDF reader, save an unlocked copy, then merge that.
Most paid online tools upload your files to their servers, which is a privacy and compliance risk for legal, medical, or financial documents. Browser-based tools (like this one) avoid that entirely.
Each round-trip through a compressor costs quality. Merge first, then compress once at the end if you need to hit an email size limit.
Always open the merged PDF and skim through to confirm the order is correct and no pages are missing. PDF merging is reliable but a 30-second sanity check has saved many job applications.
Comparison edit
How browser-based PDF merging compares to common alternatives:
| Feature | ToolzPedia Merge PDF | Adobe Acrobat (paid) | SmallPDF / iLovePDF (free tiers) |
|---|---|---|---|
| Files uploaded to a server | No, entirely in browser | No, desktop app | Yes, uploaded to their servers |
| Watermarks | Never | Never | Often added on free tier |
| Daily limit | None | None | 2-5 merges/day on free tier |
| Cost | Free | $19.99/month subscription | Free with limits, paid above |
| Signup required | No | Yes | Yes for most operations |
| Page-level reordering | Yes (file-level) | Yes (page thumbnails) | Yes |
| Works offline after first load | Yes | Yes | No |
Related tools edit
Other free pdf tools available on ToolzPedia:
Split PDF
Extract specific pages or split a PDF into multiple files by page range.
Compress PDF
Reduce PDF file size without sacrificing quality. Perfect for email.
JPG to PDF
Convert JPG, PNG or any image to a professional PDF document instantly.
Sign PDF
Add your digital signature to any PDF document directly in the browser.
Protect PDF
Add password protection and encryption to sensitive PDF documents.
See also edit
- All pdf tools on ToolzPedia
- All tools, every utility in the encyclopedia
- Tutorials and guides related to pdf tools
- Report a bug or request a feature