Merging PDFs sounds like a trivial file operation until the documents are contracts, payroll packs, medical scans, or anything under an NDA. Most "free online merge PDF" results work the same way: you drop files into a browser window, they travel to a remote server, a combined PDF comes back, and a privacy policy promises the originals will be deleted "soon." That workflow is convenient for low-sensitivity public files. It is the wrong default when you would not email the same PDFs in the clear.
A browser-only merger flips the model. The combination runs inside your tab with open-source JavaScript. The assembled file downloads from local memory. Nothing is queued in someone else's processing pipeline. LoveMyFile's Merge PDF tool is built that way. This guide explains what that means in practice, how to verify it, and how it compares to desktop editors and upload-based services.
What "merge" actually does to a PDF
A PDF is a structured document: pages, fonts, images, annotations, and a cross-reference table that tells a reader where each object lives. Merging is not a screenshot collage. A proper merger copies page objects from each source file into a new document, remaps internal references, and writes a valid PDF that any standard viewer can open.
LoveMyFile uses pdf-lib, a pure-JavaScript library that reads and writes PDF structures in memory. When you drag several files into the dropzone, each file is loaded as bytes in the browser. The library copies pages (or selected page ranges) into a new PDFDocument, then you download the result. There is no server-side conversion step and no temporary cloud copy to expire later.
Upload merger vs browser-only merger
| Factor | Typical online merger | Browser-only (LoveMyFile) |
|---|---|---|
| Where files go | Vendor servers | Stay in browser memory |
| Retention | Minutes to hours (claimed) | None β no server copy |
| How to verify | Trust the privacy policy | Network tab shows no PDF upload |
| Cost / account | Often freemium, daily caps | Free, no account, no watermark |
| Best for | Low-sensitivity public docs | Anything you would not email in the clear |
When you should merge locally
- Legal and HR packs β offer letters, NDAs, signed exhibits, or employee onboarding PDFs that contain personal data.
- Finance and tax β bank statements, invoices, and year-end schedules that include account numbers.
- Healthcare-adjacent scans β even if you are not a covered entity, patients and families often prefer local processing for records they control.
- Client deliverables under NDA β combining chapters or appendices before a client review without creating a third-party copy.
If the files are already public (a brochure, an open-source manual, a press kit), an upload merger is usually fine. The risk is treating every merge as if it were a brochure.
How to merge on LoveMyFile
- Open the Merge PDF tool and drag two or more PDFs into the dropzone.
- Reorder files or individual page thumbnails so the final sequence matches what you need.
- Click Merge. Assembly runs in the tab; there is no upload progress bar for the PDFs themselves.
- Download the combined PDF and keep your own copies of the sources.
Page sizes are preserved per source page. If one file is A4 and another is Letter, the merged document keeps each page's original size. For uniform dimensions, crop or resize first, then merge.
How to verify nothing was uploaded
Do not rely on marketing copy alone. In Chrome or Edge: open DevTools (F12) β Network β filter by Fetch/XHR or "All." Merge a small test PDF. You should not see a multipart upload of your PDF bytes to a processing API. Static assets (JS, CSS, fonts) may still load from the CDN β that is normal. The sensitive signal is whether your file contents leave the machine.
For a deeper walkthrough of this check across tools, see how to verify a PDF tool does not upload.
Limits you should know
- Browser memory β very large packs (hundreds of megabytes of scanned images) can strain a mobile browser. Desktop Chrome/Edge handles typical office merges comfortably. The tool advertises a high total size ceiling; practical limits are your device RAM.
- Encrypted PDFs β password-protected files must be unlocked first (and only if you own the right to unlock them). Use Unlock PDF locally, then merge.
- Bookmarks and links β page content is preserved. Internal links and bookmarks that stay within a source file are generally kept; complex cross-document navigation may need a desktop editor afterward.
- File size after merge β the output can be larger than a naive sum if fonts and images are duplicated across sources. Run Compress PDF afterward when email size matters.
Browser merge vs desktop software
Adobe Acrobat and similar desktop apps remain excellent for heavy editing, preflight, and enterprise workflows. They also cost money, require installs, and keep you tied to a specific machine. A browser merger wins when you need a clean combination on a borrowed laptop, a Chromebook, or a locked-down work PC where you cannot install software β and when you want zero upload for a one-off pack.
If you need to reorder pages across many files before combining, use Organize PDF or the merge tool's page-level reordering. To extract a chapter first, use Split PDF, then merge the pieces you actually need.
Common mistakes
- Merging before fixing rotation β upside-down scans stay upside-down. Rotate first with Rotate PDF.
- Assuming the cloud deleted your file β retention policies vary; local merge removes the question.
- Sending the merged file without reviewing page order β always skim thumbnails before download when the pack is client-facing.
- Using a merger for redaction β black rectangles drawn in a viewer are not secure redaction. Use a dedicated Redact PDF workflow when removing sensitive text.
Bottom line
Merging PDFs in the browser with pdf-lib gives you a complete document without creating a third-party copy. Use it as the default for anything sensitive; keep upload mergers for throwaway public files. If you want a longer privacy comparison, read Merge PDF without uploading on the blog β then come back to the tool above when you are ready to combine files.