PDF & documents
Merging, Splitting and Reordering PDFs Without Losing Quality
Which PDF operations are lossless and which are not, how to combine and separate documents correctly, and how to fix page order, rotation and unwanted pages.
7 min read · Updated
PDF page operations divide cleanly into two groups: those that move pages around without touching their contents, and those that re-render the contents. The first group is lossless and safe to repeat indefinitely. The second is not. Knowing which is which prevents a lot of avoidable quality loss.
Lossless versus lossy operations
| Operation | What happens to the content | Lossless? |
|---|---|---|
| Merge | Page objects copied verbatim into a new document | Yes |
| Split | Page objects copied into separate documents | Yes |
| Extract pages | Selected page objects copied out | Yes |
| Delete pages | Page references removed | Yes |
| Reorder | Page references rearranged | Yes |
| Rotate | A rotation flag is set on the page | Yes |
| Compress | Pages re-rendered as optimised images | No |
Everything except compression is essentially bookkeeping. A PDF holds its pages as independent objects; merging two documents copies those objects into a new file and writes a new page tree. The image and text data inside each page is untouched, byte for byte. You can merge, split and reorder a document a hundred times and the hundredth version is pixel-identical to the first.
Merging
Use Merge PDF to combine documents. The things worth getting right:
- Order. Files are combined in the order you arrange them, not the order you added them. Drag them into sequence before merging.
- Mixed page sizes. A merged document can legitimately contain A4 and Letter pages together. It will display fine but print inconsistently, with some pages scaled. If it is going to a printer, normalise the sizes first.
- Mixed orientations. Portrait and landscape pages coexist happily. Rotate any that came out wrong with Rotate PDF before merging, so you only have to think about it once.
- Total size. Merging is additive. Three 2 MB files make a 6 MB file. If there is an upload cap, check it before assuming the merged document will fit.
A common case: an application wants "all educational certificates as a single PDF". Scan each, build individual PDFs, verify each one is right way up and legible, then merge in the order the application lists them — usually most recent first, or chronological. Check the merged file end to end before uploading.
Splitting and extracting
Three tools cover overlapping ground and it is worth knowing which to reach for.
- Split PDF — break a document into multiple files, either one per page or at chosen boundaries. Use when you need several separate documents out of one.
- Extract PDF Pages — pull a specific range into a single new document, leaving the original alone. Use when you need pages 4–7 of a 60-page report.
- Delete PDF Pages — remove unwanted pages and keep the rest as one document. Use for blank pages from a duplex scan, or a cover sheet you do not want.
Extraction is often the better answer to a size problem than compression. If a portal wants your degree certificate and you have a 40-page consolidated transcript, extracting the two relevant pages takes the file from 8 MB to 400 KB with zero quality loss — far better than compressing all 40 pages down to fit.
Reordering
Organize PDF shows page thumbnails you can drag into the right sequence. The usual reasons you need it:
- A duplex scanner produced all the fronts followed by all the backs, in reverse.
- Pages were photographed out of order.
- A merged document needs its sections rearranged.
- A page needs to move to the front as a cover.
The reverse-back-side case is worth spelling out because it catches people. Scanning a ten-page double-sided document in two passes gives you fronts 1,3,5,7,9 then backs 10,8,6,4,2 — the backs come out reversed because you flipped the stack. Reverse that second group, then interleave. It takes a minute in a thumbnail view and is nearly impossible to reason about from a file list.
Rotation
PDF rotation is stored as a flag on each page — 0, 90, 180 or 270 degrees — rather than by re-drawing the content. That makes it completely lossless and instantly reversible.
It also explains a confusing behaviour: a page can look correct in one viewer and sideways in another, because some viewers honour the rotation flag inconsistently, and some portals ignore it entirely when generating previews. If a page keeps appearing sideways after upload despite looking right on your machine, the reliable fix is to rasterise it at the correct orientation rather than relying on the flag.
A practical assembly workflow
- Prepare each source document separately — scan, crop, straighten, correct contrast.
- Build individual PDFs with Image to PDF, one per document.
- Fix rotation on any page that came out sideways.
- Reorder pages within each document so they read correctly.
- Delete blanks and anything you do not need.
- Merge into the final document in the order the application specifies.
- Compress — once, at the end, only if the file exceeds the limit.
- Open the result and read every page before uploading.
Steps 2 through 6 are all lossless, so you can iterate freely without degrading anything. Only step 7 costs quality, which is why it comes last and only when needed.
Frequently asked questions
Does merging PDFs reduce their quality?
No. Merging copies page objects verbatim into a new document — the image and text data is unchanged. The merged file is simply the sum of its parts.
Why is my merged PDF so large?
Because merging is additive and one of the source files was probably already large. Find the biggest source, deal with it individually, then merge. Compressing the merged file works too but re-renders everything, including documents that were fine.
Can I merge PDFs of different page sizes?
Yes, and the result displays correctly. It will print inconsistently, with some pages scaled to fit the paper. If the document is destined for a printer, normalise the page sizes first.
How do I remove one page from a PDF?
Use Delete PDF Pages, select the page, and export. This is lossless — every remaining page is byte-identical to before.
Can I edit the text inside a PDF here?
No. These tools work at the page level — combining, separating, reordering and rotating. Editing text inside a page requires a full PDF editor, and for a scanned document there is no text to edit in the first place, only an image of text.
Are my PDFs uploaded anywhere?
No. All PDF operations run in your browser using pdf-lib and pdf.js. The file is read from your disk, modified in the tab's memory, and saved back to your device. Nothing is transmitted.
Tools used in this guide
- Merge PDFs — Merge unlimited PDFs into one. Rearrange, rotate and preview pages.
- Split PDF — Split by page range, every N pages, odd/even pages or extract specific pages.
- Rearrange PDF Pages — Drag & drop to reorder PDF pages, then download the organized document.
- Extract PDF Pages — Export selected pages into a brand-new PDF file.
- Delete PDF Pages — Remove unwanted pages from a PDF before download.
- Rotate PDF — Rotate a single page, selected pages or the entire PDF.