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.
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:
- Open Adobe Scan and tap the camera icon
- Scan the first page — the app auto-captures when the document is in frame
- After the first capture, a Continue Scanning button appears
- Scan each subsequent page
- Tap the page count (e.g., “5 pages”) to review
- Reorder or delete pages if needed
- Tap Save PDF
The resulting PDF is saved to your Adobe cloud and your phone.
Apple Notes (iOS)
- Notes → New Note → Camera → Scan Documents
- Scan all pages in sequence
- Tap the blue Save when done
- Tap the PDF thumbnail → Share → Print → Pinch for PDF → Save to Files
Microsoft Lens (iOS & Android)
- Open Microsoft Lens, select Document mode
- Capture the first page
- Tap + (Add Page) to add more pages
- Continue until all pages scanned
- 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:
- Load all pages face-up in the ADF tray (typically 20–50 pages)
- Select PDF as output format
- Click Scan — all pages fed and scanned automatically
- 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)
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:
- Upload all individual page PDFs
- Arrange in correct order
- 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:
- Open NAPS2
- Click Scan (or press F1)
- Configure your scanner (resolution, color mode)
- Scan all pages — NAPS2 shows each scan in a grid
- Add pages by clicking Scan again as needed
- Drag pages to reorder
- 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:
- In any Mac app (Finder, Word, Pages): Insert → Import from iPhone/iPad → Scan Documents
- iPhone camera opens — scan all pages
- 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.
Dealing With Double-Sided Documents
For double-sided (duplex) documents with a single-sided scanner:
- Scan all odd pages (1, 3, 5…) into one PDF
- Flip the stack upside down (don’t re-order) and scan into another PDF
- The even pages are now in reverse order
- 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
- Number pages lightly in pencil if they’re out of order
- Use filename numbering (page_001, page_002) for alphabetical sorting
- Review the PDF before deleting originals
- For long documents, scan in batches of 10 pages and then merge
Related Articles
How to Scan Business Cards to PDF (and Keep Them Organized)
Turn your pile of business cards into a searchable, organized PDF archive — using scanner apps, OCR, and contact management systems.
Read Article
5 Best Free Mobile Scanner Apps for PDF Documents (2024)
Reviewed and compared: the best free mobile scanner apps for iOS and Android that create professional PDF scans from your phone camera.
Read Article
How to Scan Receipts to PDF for Tax Records (Complete Guide)
Build a paperless receipt system for tax season — how to scan, name, organize, and store receipts as PDFs so you're always audit-ready.
Read Article