The short version

Do it in this order: fix rotation, remove blanks, merge, then compress once at the end. Every other sequence creates work you have to redo.

Compressing before merging is the most common mistake. It gives a worse result and a bigger final file than compressing the merged document in a single pass.

You scan a thirty page contract on an office machine. What lands in the folder is eleven files, some with two pages and some with one, three of them sideways, six of them blank because the scanner ran in duplex mode and the paper was printed on one side. None of this is unusual, and none of it is your fault.

Turning that into a document someone can read is a sequence problem more than a tooling problem. Each step makes the next one cheaper, and doing them out of order means doing several of them twice.

The order that avoids rework

There is a reason this sequence works. Cleaning happens while pages are still in small files that are quick to open and easy to fix. Merging happens once the parts are correct. Compression happens last, when the tool can see the whole document and make one consistent decision about it.

1

Fix rotation first, file by file

A sideways page is easier to spot and fix in a three page file than buried at position forty-seven of a merged document. Rotate before you combine, not after.

2

Drop the blank backs

Duplex scanning of single-sided paper doubles your page count with empty sheets. Remove them now, while the file boundaries still tell you which scan they came from.

3

Merge into reading order

Load everything, arrange deliberately, then combine. This is also the moment to notice a missing page, while the scanner is still next to you.

4

Compress the finished document once

One pass over the whole file beats several passes over parts of it, both for size and for visual consistency across pages.

Never compress before merging
Compressing each scan separately then merging produces a larger and worse file than the other way round. Each pass re-encodes images that were already lossy, stacking artifacts, and the merge cannot undo that. It also gives you pages compressed to slightly different levels, which is visible as uneven sharpness when someone scrolls through.

Why the order comes out wrong

Scanner software names files by counter, timestamp or tray position, and none of those match reading order reliably. Then the merge tool sorts alphabetically and the result is scrambled in a way that looks random but is entirely predictable.

ComparisonWhy the order comes out wrong
What you named thempage1.pdfpage2.pdfpage3.pdfpage10.pdfpage11.pdfHow the tool sorts thempage1.pdfpage10.pdfpage11.pdfpage2.pdfpage3.pdf10 and 11 land after 1Padded, so it agreespage01.pdfpage02.pdfpage03.pdfpage10.pdfpage11.pdfsame width, correct order
Padding the numbers is the only fix that travels with the files.

Text sorts one character at a time, so scan10.pdf lands before scan2.pdf. A batch that ran past nine files will always come out wrong unless you either pad the numbers or arrange the files by hand before merging.

Rename before you merge, not after
If the scanner lets you set a filename pattern, give it one with padded numbers. If not, renaming eleven files to 01 through 11 takes less time than discovering the order is wrong after you have already compressed and sent the document.

Blank pages that are not blank

Duplex scanners photograph both sides of every sheet whether or not anything is printed on the back. A thirty sheet document scanned in duplex becomes sixty pages, half of them empty.

AnatomyWhere the extra pages come from
5 sheets, printed one sideDuplex scan produces 10 pagesblankblankblankblankblankevery other page is a photograph of nothing
Five sheets scanned in duplex arrive as ten pages, half of them photographs of nothing.

The complication is that a scanned blank page is not actually blank. It is a photograph of white paper, which means it carries speckles, dust, the shadow of the paper edge and whatever bled through from the printed side. Automatic blank detection works on how much ink-like content a page has, and a slightly dirty scan can sit above the threshold while a lightly printed page sits below it.

Duplex overhead
2x pages

Single-sided originals scanned in duplex produce one empty page for every printed one.

A blank scan is not empty
20 to 80KB

It is a photograph of paper. Speckles and edge shadows carry real file size.

Detection is a threshold
Not certainty

Dirty blanks can read as content, faint pages as empty. Always review before deleting.

Turn duplex off at the source
If the originals are printed on one side, setting the scanner to simplex removes this entire problem before it starts. It halves the scan time, halves the page count, and halves the file size, and it takes one setting change. Most people never look because the default felt safer.

Mixed page sizes in one document

Receipts, A4 letters and a folded plan scanned together produce a PDF where every page is a different physical size. It displays acceptably because readers scale each page to the window, and then it prints terribly because the printer does not.

This is worth fixing before the document goes anywhere near a printer or a filing system. If the pages genuinely are different sizes, normalising them to one page size with the content scaled to fit gives a document that behaves predictably everywhere.

Making the result searchable

A scan is a picture of text, not text. Search finds nothing in it, you cannot copy a line out of it, and a screen reader has nothing to read. That is true of every page in the merged document unless something adds a text layer.

Optical character recognition reads the shapes in the image and writes an invisible text layer behind the picture. The page looks exactly the same and becomes searchable. Do this after merging, so the whole document gets one consistent pass rather than a patchwork of separately processed parts.

Practical scanner settingsWhat to choose and why
  • Text documents300 DPI, greyscale
  • Documents with photos300 DPI, colour
  • Archival reproduction600 DPI, colour
  • Anything for email200 to 300 DPI
  • Single-sided originalsSimplex, not duplex
  • Output formatPDF, not JPEG
Greyscale is the setting people forget
A colour scan of a black and white page is roughly three times the size of a greyscale scan that looks identical. Unless the document actually contains colour that matters, greyscale is the right default and it does more for final file size than any amount of compression afterwards.

Before you send it

Scanned documents fail in ways that are obvious on screen and invisible in a file listing, so the last step is always to look at the thing you made.

Four quick checks

Scroll the whole document. Not page by page, just fast. Rotated pages and stray blanks are unmistakable at speed.

Check the page count. Thirty sheets should be thirty pages. Sixty means the blanks are still there.

Try a search. Look for a word you know is in there. Nothing found means the text layer did not happen.

Read the smallest text at 100 percent. If the compression went too far, this is where it shows first.

Merge your scans in the browser

Combine as many files as you like, drag to reorder, and keep every page on your own machine.

Open Merge PDF

Common questions

What goes wrong between the scanner and the finished file.

01What order should I do these steps in?

Rotate, remove blanks, merge, then compress once. Cleaning is cheapest while the files are still small and separate, and compression gives the best result when it runs once over the finished document rather than several times over its parts.

02Why did my scans merge in the wrong order?

Filename sorting. Text sorts character by character, so scan10 comes before scan2. Rename the files with padded numbers such as 01 and 10, or arrange them manually in the merge tool before combining.

03How do I get rid of the blank pages?

Identify their positions and extract everything else, which writes a new file without them. Review before deleting, because a scanned blank page carries speckles and edge shadows that can fool automatic detection in both directions.

04Why is my scanned PDF so large?

Because every page is a photograph. A 300 DPI colour scan of one A4 sheet is several megabytes before compression. Scanning in greyscale rather than colour cuts it by roughly two thirds, and compressing the merged document handles the rest.

05Can I search the text in a merged scan?

Not until something adds a text layer. Optical character recognition reads the images and writes invisible text behind them, which makes the document searchable without changing how it looks. Run it after merging so the whole file gets one consistent pass.

06Should I compress each scan before combining them?

No. That is the one sequence to avoid. Each compression pass re-encodes already lossy images, so the artifacts stack, and you end up with a larger final file whose pages are inconsistently sharp. Merge first, compress once.