Format GuidesMarch 17, 2026
Meidy Baffou·LazyPDF

How to Batch Convert Multiple Images into a Single PDF

Whether you've scanned a stack of documents page by page, photographed receipts, captured whiteboard notes, or taken product photos that need to go into a catalog, you'll often end up with dozens of individual image files that need to be combined into one organized PDF document. Batch converting images to a single PDF is a practical everyday task, but the right approach depends on how many images you have, what format they're in, and what device you're working on. Some methods work entirely in the browser without any software. Others use desktop tools for larger batches or finer control over image quality and page settings. This guide covers the fastest and most reliable methods for combining multiple images into a single PDF: using LazyPDF's image-to-PDF tool directly in the browser, using platform-specific shortcuts on Windows and Mac, and using command-line tools for power users who need to automate the process.

Method 1: Use LazyPDF to Combine Images into PDF

LazyPDF's Image to PDF tool lets you upload multiple images at once and arrange them into a single PDF document — entirely in your browser, with no software to install and no account required. The tool supports JPG, PNG, WebP, and other common image formats. You can upload multiple files in one batch, reorder them by dragging before converting, and choose page size options. Each image becomes one page in the resulting PDF. For larger batches, this browser-based approach works well for up to 30-50 images depending on file sizes and your browser's memory. For very large batches (hundreds of images), a desktop tool or command-line approach may perform better. After combining into PDF, if the resulting file is large, you can also use LazyPDF's merge tool to combine multiple smaller PDFs if you processed images in batches, then compress the final result.

  1. 1Open LazyPDF's Image to PDF tool in your browser.
  2. 2Click the upload area or drag and drop multiple image files at once — JPG, PNG, WebP, and TIFF are supported.
  3. 3Reorder images by dragging them into the correct sequence — this determines page order in the PDF.
  4. 4Select your preferred page size (A4, Letter, or fit to image) and orientation settings.
  5. 5Click Convert to PDF and wait for processing to complete.
  6. 6Download the resulting PDF — all images are combined as sequential pages in one document.

Method 2: Combine Images to PDF on Windows

Windows 10 and 11 include a quick way to convert images to PDF without any additional software. **Using Windows Print to PDF**: Select all the images you want to combine in File Explorer. Right-click the selection and choose 'Print'. In the Print Pictures dialog, choose 'Microsoft Print to PDF' as the printer. Select page size and layout, then click Print to save as a PDF. The images will be arranged according to the layout you chose (one per page, or multiple per page for smaller images). The limitation of this method is that the ordering depends on how Windows sorts the files in File Explorer. Rename files with numbered prefixes (001_, 002_, etc.) to control the order, or select them in the desired order. **Using Photos app**: Windows Photos can also print selected images to PDF. Select images, right-click, choose 'Open with > Photos', then use File > Print with Microsoft Print to PDF. **Using Paint or another image editor**: For batches requiring more control over image placement and sizing, open each image in a tool that can print to PDF with specific layouts. This is more labor-intensive for large batches.

  1. 1Rename your image files with number prefixes (001_page1.jpg, 002_page2.jpg, etc.) to set the correct order.
  2. 2Select all images in File Explorer using Ctrl+A or Ctrl+Click.
  3. 3Right-click the selection and choose 'Print'.
  4. 4In the Print Pictures dialog, select 'Microsoft Print to PDF' as the printer.
  5. 5Choose page size (typically A4 or Letter) and select 'Full page photo' for one image per page.
  6. 6Click Print, choose a save location in the Save PDF dialog, and click Save.

Method 3: Combine Images to PDF on Mac

Mac users have excellent built-in options for converting images to PDF using Preview, Apple's default image and PDF viewer. **Using Preview (recommended)**: Open all the images you want to combine in Preview at once. In the Thumbnails sidebar, arrange them in the desired order by dragging. Then go to File > Print (Cmd+P), choose 'PDF' from the bottom-left dropdown, and select 'Save as PDF'. This creates a PDF with all open images as sequential pages. Alternatively, open one image in Preview, then go to Edit > Insert > Page from File to add more images one by one. This method gives you precise control over page order. **Automator workflow**: For recurring batch jobs, create an Automator workflow. Open Automator, create a new Workflow, and search for the action 'New PDF from Images'. Add it to the workflow, configure the output location and filename, and save. You can then drag image folders onto this workflow to batch convert without opening any apps. **macOS Quick Actions**: In Finder, select multiple images, right-click and look for 'Create PDF' under Quick Actions. This is the fastest one-click method for combining images to PDF on Mac, available in macOS Mojave and later.

  1. 1Select all image files in Finder — use Cmd+Click to select specific files, or Cmd+A to select all in a folder.
  2. 2Right-click the selection and choose 'Open With > Preview'.
  3. 3In Preview, make the Thumbnails sidebar visible (View > Thumbnails) and drag thumbnails to reorder pages.
  4. 4Go to File > Print (Cmd+P), then click the 'PDF' dropdown at the bottom left.
  5. 5Choose 'Save as PDF', enter a filename and location, and click Save.
  6. 6The resulting PDF contains all images as ordered pages — open it to verify page order and quality.

Method 4: Command-Line Batch Conversion

For power users, developers, or IT professionals who need to automate image-to-PDF conversion for large batches or recurring workflows, command-line tools offer maximum flexibility. **ImageMagick** (free, cross-platform): The convert command can combine images into a single PDF in one line: `convert image1.jpg image2.jpg image3.jpg output.pdf` Or convert an entire folder: `convert *.jpg output.pdf` ImageMagick also handles image resizing, rotation, and quality settings as part of the same command. **img2pdf** (Python, free): A lightweight tool specifically for image-to-PDF conversion. Unlike ImageMagick, it doesn't re-encode JPEG images — it embeds them losslessly into the PDF, preserving original quality: `img2pdf *.jpg -o output.pdf` Install with: `pip install img2pdf` **Ghostscript** (free): Can combine images and PDFs: `gs -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=output.pdf *.jpg` For automated server-side workflows — converting batches of scanned document images nightly, for example — img2pdf combined with a shell script or Python script is one of the most efficient approaches. It's lossless, fast, and easy to integrate into existing data pipelines.

  1. 1Install img2pdf using pip: `pip install img2pdf` (requires Python 3).
  2. 2Open a terminal and navigate to the folder containing your images using `cd /path/to/images`.
  3. 3Sort files if needed: ensure filenames are in alphabetical order that matches your desired page sequence.
  4. 4Run: `img2pdf *.jpg -o combined.pdf` (replace *.jpg with *.png or other extensions as needed).
  5. 5For mixed formats: `img2pdf page1.jpg page2.png page3.tif -o combined.pdf`.
  6. 6Open the resulting combined.pdf to verify all pages are present and in the correct order.

Frequently Asked Questions

How many images can I combine into one PDF?

There's no hard limit on how many images a PDF can contain, but practical limits depend on your tool and system resources. Browser-based tools like LazyPDF work well for batches up to 50 images — larger batches may strain browser memory. Desktop tools like Preview or ImageMagick can handle hundreds of images. Command-line tools like img2pdf can process thousands of images given sufficient disk space and memory.

Will combining images into PDF reduce their quality?

It depends on the tool. Tools that re-encode JPEG images may reduce quality slightly, especially if they compress during PDF creation. LazyPDF and img2pdf embed images directly into the PDF without re-encoding, preserving the original quality. If image quality is critical (for archiving or printing), use a tool that doesn't re-compress JPEG images.

Can I combine different image formats (JPG, PNG, TIFF) into one PDF?

Yes. Most tools that combine images into PDF support mixed formats in the same document. LazyPDF's image-to-PDF tool accepts JPG, PNG, and WebP files together. Command-line tools like img2pdf and ImageMagick also handle mixed formats in a single batch. If you encounter compatibility issues, convert all images to JPG or PNG first using a free image converter.

How do I control page size when converting images to PDF?

Most tools default to fitting the image to the page or using a standard size like A4. In LazyPDF, you can choose page size options before converting. In macOS Preview, the page size matches your Print settings. For precise control, command-line tools like img2pdf let you specify exact page dimensions: `img2pdf --pagesize A4 *.jpg -o output.pdf`. For print-ready documents, specify the target page size to ensure consistent dimensions across all pages.

Combine your images into a single PDF right now with LazyPDF — upload multiple files at once, arrange them in order, and download your PDF. Free, no account required.

Combine Images to PDF

Related Articles