Guide
How to Merge PDF Files for Free
Four ways to combine multiple PDFs into a single document — browser, desktop, command line, and mobile — without paying for software or uploading files to a server.
Why merge PDFs?
Scanned receipts live in separate files. A report comes as individual chapters. A job application asks for "one PDF" but you have a resume, a cover letter, and a portfolio as three different documents. Merging combines them into a single file with continuous page numbers, one set of bookmarks, and one attachment in an email.
The operation is lossless — nothing is re-compressed or re-rendered. The pages from each source PDF are stitched together in the order you choose, keeping their original quality, fonts, and vector data intact.
Method 1: Browser tool (fastest, any OS)
The Merge PDF tool on this site runs entirely in your browser. Your files stay on your device — nothing is uploaded to a server. Here is how it works:
- Open the tool and drop your PDF files onto the page, or click to browse. You can add as many files as you need.
- Reorder if needed. Drag the thumbnails to arrange pages in the order you want them in the final document.
- Click Merge. The tool combines the pages and gives you a single PDF to download.
Because everything happens client-side, there is no file-size limit imposed by a server, no signup, and no watermark on the output. A 200-page merge finishes in seconds on any modern laptop.
Method 2: macOS Preview and Finder
macOS has built-in PDF merging through Preview — no third-party software needed.
- Open the first PDF in Preview.
- Show the sidebar (View → Thumbnails) so you can see page thumbnails.
- Drag the second PDF file from Finder directly into the sidebar, dropping it at the position where you want its pages inserted.
- Repeat for additional files. Drag individual thumbnails within the sidebar to reorder pages.
- Save with File → Export as PDF. Use "Export" rather than "Save" to keep the original files unchanged.
Quick alternative: In Finder, select multiple PDFs, right-click, and choose Quick Actions → Create PDF. macOS merges them in Finder's sort order and saves a new file. This is the fastest path if you do not need to rearrange pages.
Method 3: Command line (any OS)
For batch work, scripting, or headless servers, command-line tools handle merging without a GUI. Two popular options:
Ghostscript (Linux, macOS, Windows)
gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \
-sOutputFile=merged.pdf file1.pdf file2.pdf file3.pdfGhostscript re-processes each page through its PDF writer. The output is a valid PDF, but fonts may be re-embedded and metadata can shift. For straightforward documents this works well.
pdfunite (Linux)
pdfunite file1.pdf file2.pdf file3.pdf merged.pdfPart of the Poppler utilities (installed by default on most Linux distros), pdfunite concatenates pages without re-encoding them. It is fast and preserves the original page data byte-for-byte.
Method 4: iPhone and iPad (Files app)
Since iOS/iPadOS 16, the built-in Files app can merge PDFs natively:
- Open the Files app and navigate to the folder containing your PDFs.
- Tap the three-dot menu (top right) and choose Select. Tap each PDF you want to merge.
- Tap the three-dot menu again and select Create PDF.
iOS merges the selected files in alphabetical order. If you need a different order, rename the files with numeric prefixes (01-, 02-, 03-) before merging. For more control over page order, the browser-based merge tool works on mobile Safari too.
Tips for cleaner merges
- Match page sizes before merging. If one PDF is letter-size and another is A4, the merged file will have mixed page dimensions. Most viewers handle this fine, but printers may crop or scale pages unexpectedly. Standardise to one size beforehand if the output will be printed.
- Remove unnecessary pages first. Merging a 50-page report when you only need pages 3-7 wastes space. Use the Split PDF tool to extract the pages you need, then merge those.
- Compress if the result is too large. Merging many files can produce a large PDF. Run the output through the Compress PDF tool to shrink it without visible quality loss.
- Check the page order after merging. Scroll through the result to confirm every page landed where you expected. It takes less time than resending a document with pages out of order.
Common questions
Does merging reduce quality?
No. A proper merge concatenates the original page data without re-compressing images or re-rendering text. The pages in the output file are identical to the pages in the source files. Tools that re-process pages through a PDF writer (like Ghostscript) may re-embed fonts, but the visual output stays the same.
Is there a limit on file size or page count?
Server-based tools often cap uploads at 10-50 MB. The browser-based tool on this site has no upload limit because files never leave your device — the only constraint is your browser's available memory. Merging hundreds of pages is routine.
Can I merge password-protected PDFs?
You need to unlock each PDF before merging. Most tools — including browser-based ones — will prompt for the password when you add a protected file. Once unlocked, the pages merge normally.
Can I rearrange pages during the merge?
In the browser tool and macOS Preview, yes — drag thumbnails to any position before saving. Command-line tools merge in the order you list the files, so sort the file list before running the command.
Ready to merge?
Drop your PDF files into the free Merge PDF tool — no signup, no upload, no file-size limit. Need to do more with your PDFs? Split, compress, or convert to PNG — all free and entirely in your browser.