Most PDF work is not editing at all. It is assembly: gathering scattered files into one submission, pulling three pages out of a forty-page report, fixing the order the scanner produced, turning a sideways page the right way up. These operations are lossless — they rearrange pages without touching what is printed on them — which makes them the safest things you can do to a document.
Combining several PDFs into one is the most common request, usually because something on the other end demands a single file. Application bundles, tender submissions, expense claims, case files: all the same job.
Two rules save most of the trouble:
A merged PDF can mix page sizes and orientations freely — an A4 letter followed by a landscape drawing is valid and will display correctly. It may look inconsistent when printed, so if the bundle is going to paper, consider whether the odd sizes matter.
The reverse job: taking pages out. Usually because only part of a document is relevant, or because a file is too large to send whole.
Extracting is worth reaching for more often than people do. It is completely lossless — the extracted pages are byte-identical in appearance to the originals — which makes it strictly better than compression whenever it will get you under a size limit. If a portal wants proof of address and you have a twelve-page bank statement, send the one page that shows it.
Two habits worth forming:
Scanned bundles arrive out of order constantly — a document feeder pulling two sheets at once, pages fed reversed, a stack scanned back to front. Reordering fixes it without rescanning.
Deleting handles the rest: blank versos, the separator sheets people put between documents, the accidental photograph of a desk. Removing them is lossless and makes the file smaller for free.
The one caution: deletion is applied when you export the file. Check the page count and skim the result before you send it. A deleted page is not recoverable from the exported document, only from the original you kept.
Sideways and upside-down pages come from the scanner's feed direction, or from a phone held in the other orientation. Rotating fixes the display.
Worth understanding: rotation in a PDF is normally stored as an instruction attached to the page rather than as a re-drawn image. This matters in one specific way — a viewer that ignores the rotation flag will show the page as it was originally stored. This is rare in modern software, but if a recipient reports a page sideways that looks correct to you, this is why. Exporting the rotated file rather than sending the original resolves it.
Page-level operations preserve the page content exactly. Some document-level features are a different matter, and this catches people out:
| Feature | After merge or split |
|---|---|
| Page content — text, images, layout | Preserved exactly |
| Text layer and searchability | Preserved — a searchable PDF stays searchable |
| Page size and orientation | Preserved per page; a merged file can mix them |
| Bookmarks and outline | Commonly lost or partially lost when merging |
| Internal links and cross-references | May break, since target page numbers shift |
| Form fields | May not survive; check any fillable form after merging |
| Digital signatures | Invalidated. A signature certifies a specific file — altering it necessarily breaks that |
| Symptom | Cause | What to do |
|---|---|---|
| Pages in the wrong order after merging | Files were added in a different order than intended | Reorder pages in the merged file, or merge again deliberately |
| Merged file will not open on the recipient's device | Usually size, or a very old viewer | Split into parts, or send a link |
| Bookmarks gone | Expected behaviour when merging | Recreate if needed, or keep the original for reference |
| Signature now shows as invalid | The file was altered after signing | Unavoidable. Send the signed document unmodified |
| Rotation looks right here, wrong for the recipient | Rotation flag not honoured by their viewer | Send the exported file, not the original |
| Merged file much larger than expected | One component was a large scan | Identify and compress that part before merging |
| Some pages searchable, some not | The bundle mixes born-digital and scanned sources | Run OCR over the merged document |
These operations run in your browser. Nothing is uploaded, which matters when the bundle being assembled contains identity documents, financial records or official correspondence — which, for this particular set of tasks, it very often does.