Scan to PDF March 22, 2026 · 6 min read

How to Scan Multiple Pages Into One PDF Document

Learn how to scan a multi-page document into a single PDF — using a flatbed scanner, phone apps, or combining separate scans into one file.

How to Scan Multiple Pages Into One PDF Document
AT

AltoUnlockPDF Team

PDF Tools Expert

Scanning a 10-page contract or a 30-page report as individual files is a pain. The goal is always to end up with one organized PDF. Here’s how to do it efficiently on any device.


Method 1: Phone Apps with Multi-Page Mode

Adobe Scan (iOS & Android)

Adobe Scan is designed specifically for multi-page document scanning:

  1. Open Adobe Scan and tap the camera icon
  2. Scan the first page — the app auto-captures when the document is in frame
  3. After the first capture, a Continue Scanning button appears
  4. Scan each subsequent page
  5. Tap the page count (e.g., “5 pages”) to review
  6. Reorder or delete pages if needed
  7. Tap Save PDF

The resulting PDF is saved to your Adobe cloud and your phone.

Apple Notes (iOS)

  1. Notes → New Note → Camera → Scan Documents
  2. Scan all pages in sequence
  3. Tap the blue Save when done
  4. Tap the PDF thumbnail → Share → Print → Pinch for PDF → Save to Files

Microsoft Lens (iOS & Android)

  1. Open Microsoft Lens, select Document mode
  2. Capture the first page
  3. Tap + (Add Page) to add more pages
  4. Continue until all pages scanned
  5. Tap Done → Save as PDF

Method 2: Flatbed Scanner with ADF

An Automatic Document Feeder (ADF) scanner is the most efficient for multi-page documents:

  1. Load all pages face-up in the ADF tray (typically 20–50 pages)
  2. Select PDF as output format
  3. Click Scan — all pages fed and scanned automatically
  4. One PDF output with all pages in order

Popular ADF scanners for home/office use:

  • Fujitsu ScanSnap series (excellent for documents, starts ~$250)
  • HP OfficeJet Pro (all-in-one, good ADF capacity)
  • Brother ADS series (compact document scanners)
Multiple page document being scanned to PDF

Method 3: Flatbed (Manual, Page by Page) + Combine

If you have a flatbed scanner without ADF, scan each page individually and then combine:

Step 1: Scan each page as a separate PDF or image

Windows (Windows Scan app): scan each page, save as PDF or TIFF.

Step 2: Combine into one PDF

Using our Merge PDF tool:

  1. Upload all individual page PDFs
  2. Arrange in correct order
  3. Click Merge → Download combined PDF

Or using Python:

import pypdf

merger = pypdf.PdfMerger()
page_files = ['page_001.pdf', 'page_002.pdf', 'page_003.pdf']

for pdf_file in sorted(page_files):
    merger.append(pdf_file)

merger.write('combined_document.pdf')
merger.close()

Method 4: NAPS2 (Windows — Free Desktop App)

NAPS2 (Not Another PDF Scanner) is the best free Windows scanning app for multi-page documents:

  1. Open NAPS2
  2. Click Scan (or press F1)
  3. Configure your scanner (resolution, color mode)
  4. Scan all pages — NAPS2 shows each scan in a grid
  5. Add pages by clicking Scan again as needed
  6. Drag pages to reorder
  7. Click Save PDF → one file with all pages

NAPS2 also supports OCR, automatic deskew, and blank page removal.


Method 5: iPhone Continuity Camera (Mac Users)

Mac users with an iPhone can scan directly into a Mac document:

  1. In any Mac app (Finder, Word, Pages): Insert → Import from iPhone/iPad → Scan Documents
  2. iPhone camera opens — scan all pages
  3. Documents appear directly in the Mac app

This is particularly useful in PDF Preview: right-click a PDF’s thumbnail panel → Import from iPhone/iPad.

Multi-page document organized as PDF

Dealing With Double-Sided Documents

For double-sided (duplex) documents with a single-sided scanner:

  1. Scan all odd pages (1, 3, 5…) into one PDF
  2. Flip the stack upside down (don’t re-order) and scan into another PDF
  3. The even pages are now in reverse order
  4. Use our Merge PDF tool to interleave:
    • Page 1 (from PDF 1), Page 2 (from PDF 2, last page), Page 3…

This “simplex-to-duplex” trick works with any scanner.


Page Ordering Best Practices

  1. Number pages lightly in pencil if they’re out of order
  2. Use filename numbering (page_001, page_002) for alphabetical sorting
  3. Review the PDF before deleting originals
  4. For long documents, scan in batches of 10 pages and then merge

Related Articles