How to Convert JPG to PDF in Seconds
PDF Guides

How to Convert JPG to PDF in Seconds

Lisa Wang

Lisa Wang

Digital Marketing Strategist

Mar 5, 2026 Apr 10, 2026 6 min
Reviewed by Emma RodriguezFact-checkedEditorial Policy

Combining JPG images into a single PDF is perfect for creating photo albums, scanned document packages, and presentations. This guide covers the fastest conversion methods for 2026, from one-click online tools to command-line automation.

Converting JPG images to PDF is a surprisingly common task. Whether you are creating a photo album from vacation pictures, assembling scanned receipts into a single expense report, or combining screenshots into a presentation document, turning JPGs into a PDF is the cleanest way to package multiple images. This guide covers the fastest and most reliable methods for 2026.

Why Convert JPG to PDF?

Combining JPG images into a PDF offers several advantages:

  • Single file convenience: One PDF is easier to manage and share than dozens of JPG files.
  • Universal viewing: PDFs open on any device without special image viewing software.
  • Controlled ordering: Pages in a PDF have a defined sequence, unlike a folder of images.
  • Smaller total size: A single PDF is often smaller than the sum of its source JPGs, especially when the tool optimizes images.
  • Professional presentation: A PDF looks more polished than a ZIP file of images.
  • Add metadata: PDFs can include titles, author information, and bookmarks.

Common Use Cases

  1. Scanned documents: Combine scanned receipt images into one expense report PDF.
  2. Photo albums: Create a shareable photo collection from vacation or event photos.
  3. Comics and manga: Package sequential art into a readable document.
  4. Screenshots: Combine UI screenshots into a bug report or tutorial.
  5. Contracts and forms: Assemble photographed or scanned signed pages into one document.

Method 1: Convert JPG to PDF Online (Fastest)

Online converters are the quickest way to combine JPGs into a PDF. They work in any browser and require no installation.

Step-by-Step: Converting JPG to PDF Online

  1. Upload your JPG images: Drag and drop multiple images into the converter, or browse to select them. Most tools accept multiple files at once.
  2. Arrange the order: Drag the images into the sequence you want them to appear in the PDF. The order of images determines the page order.
  3. Choose page settings (if available):

- Page size: A4, Letter, or fit to image. "Fit to image" creates pages that match each image's dimensions.

- Orientation: Portrait or landscape.

- Margins: Add white space around images, or use full-bleed (no margins).

  1. Convert: Click the convert button. The tool combines the images into a single PDF.
  2. Download: Save the PDF to your device.
  3. Verify: Open the PDF and check that all images are present, in the right order, and properly sized.

Tips for Online Conversion

  • Check file limits: Some tools limit the number of images or total file size.
  • Use consistent image sizes: If your images vary in dimensions, choose "fit to image" page size to avoid awkward cropping or white space.
  • Consider compression: Some tools compress images during conversion. If quality matters, look for a "no compression" or "original quality" option.

Method 2: Convert on Desktop

Desktop tools give you more control and work offline.

Using macOS (Built-in)

macOS has a built-in method that requires no additional software:

  1. Select the JPG files in Finder.
  2. Right-click and choose "Open With > Preview."
  3. In Preview, show the thumbnail pane (View > Thumbnails).
  4. Drag the thumbnails to reorder if needed.
  5. Select all pages (Cmd+A).
  6. Go to File > Print (Cmd+P).
  7. In the print dialog, click the PDF button in the lower-left corner.
  8. Select "Save as PDF."
  9. Enter a filename and save.

This method is fast, free, and produces good quality PDFs.

Using Adobe Acrobat Pro

  1. Go to File > Create > PDF from File.
  2. Select the JPG images you want to combine.
  3. Acrobat creates a PDF with each image as a page.
  4. Arrange pages in the thumbnail pane if needed.
  5. Save the PDF.

Using LibreOffice

  1. Open a new LibreOffice Writer document.
  2. Insert each image (Insert > Image).
  3. Adjust page size and margins as needed.
  4. Export as PDF (File > Export As > Export as PDF).

This method gives you the most control over layout but is more manual.

Method 3: Command-Line Conversion

For automation and batch processing, command-line tools are powerful.

Using ImageMagick

ImageMagick can combine multiple JPGs into a single PDF:

convert image1.jpg image2.jpg image3.jpg output.pdf

For better quality (less compression):

convert image1.jpg image2.jpg image3.jpg -quality 100 -density 150 output.pdf

To convert all JPGs in a directory:

convert *.jpg output.pdf

Using img2pdf (Python)

img2pdf is a specialized tool that converts images to PDF without re-encoding them, preserving original quality:

img2pdf image1.jpg image2.jpg image3.jpg -o output.pdf

To convert all JPGs in a directory:

img2pdf *.jpg -o output.pdf

img2pdf is the best command-line option for quality preservation because it does not decompress and recompress the JPEG data — it wraps the existing image data in a PDF container.

Batch Conversion Script

#!/bin/bash
# Convert all JPGs in subdirectories to separate PDFs
for dir in */; do
  img2pdf "$dir"*.jpg -o "$dir.pdf"
  echo "Created $dir.pdf"
done

This script processes each subdirectory and creates a PDF from the JPGs in each one.

Tips for Better JPG to PDF Conversion

Choose the Right Page Size

  • Fit to image: Each page matches the image dimensions. Best when images vary in size.
  • A4 or Letter: Standard paper sizes. Best for documents that may be printed.
  • Custom: Set a specific size for special use cases.

Control Image Quality

When using tools that re-encode images during conversion, choose the highest quality setting to avoid degradation. Tools like img2pdf that do not re-encode are preferable for quality preservation.

Add a Cover Page

For professional documents, consider adding a cover page with a title, date, and description before the image pages. You can do this by creating a title page in Word, converting it to PDF, and merging it with the image PDF.

Set Page Margins

Adding small margins (0.25–0.5 inch) around images makes the PDF look more polished and ensures nothing is cut off when printed. Most conversion tools let you set margins.

Consider File Size

If the PDF is too large, you can:

  • Compress the source JPGs before conversion.
  • Use a tool that applies compression during conversion.
  • Compress the resulting PDF afterward.

Common Problems and Solutions

Problem: Images Are Rotated Incorrectly

JPG files contain orientation metadata (EXIF) that some converters ignore. If images appear sideways, use a tool that respects EXIF orientation, or rotate the images before conversion using an image editor or ImageMagick:

convert image.jpg -auto-orient image-fixed.jpg

Problem: PDF File Is Too Large

If the source JPGs are high-resolution, the PDF will be large. Compress the JPGs before conversion, or use a PDF compression tool afterward. img2pdf does not add overhead, so the PDF will be roughly the same size as the sum of the JPGs.

Problem: Image Order Is Wrong

Always verify the page order in the PDF after conversion. If the order is wrong, re-arrange the images in the converter before converting again. With command-line tools, the order of arguments determines the page order.

Problem: White Borders Around Images

This happens when the page size does not match the image aspect ratio. Use "fit to image" page size, or set margins to zero. Some tools add borders by default — check the settings.

Conclusion

Converting JPG to PDF is a simple process that produces a convenient, shareable document. For most users, an online converter is the fastest option. macOS users have a excellent built-in method via Preview. For automation and quality preservation, command-line tools like img2pdf are the best choice. Whatever method you use, always verify the output — check image order, quality, and page size before sharing the final PDF.

Share

About the Author

Lisa Wang

Lisa Wang

Digital Marketing Strategist

Lisa specializes in content strategy and SEO for tech products. She helps creators and businesses optimize their digital workflows for maximum efficiency.

6+ years in digital marketing and content strategy
Skills & Expertise
SEO StrategyContent MarketingAnalyticsDigital Workflows

Frequently Asked Questions

Can I convert multiple JPGs into one PDF?
Yes. Most conversion tools allow you to upload multiple JPG images and combine them into a single PDF. Each image becomes a page in the PDF, and you can arrange the order before converting.
Will converting JPG to PDF reduce image quality?
It depends on the tool. Some tools re-encode images during conversion, which can reduce quality. Tools like img2pdf wrap the original JPEG data in a PDF container without re-encoding, preserving original quality.
How do I control the page size of the PDF?
Most conversion tools let you choose page size: A4, Letter, or fit to image. "Fit to image" creates pages that match each image's dimensions. Choose A4 or Letter if the PDF will be printed.
Why are my images rotated incorrectly in the PDF?
JPG files contain EXIF orientation metadata that some converters ignore. Use a tool that respects EXIF orientation, or fix the orientation before conversion using ImageMagick: convert image.jpg -auto-orient image-fixed.jpg.

Start working smarter today

Join 500,000+ users who trust VisualDocs for their daily image and PDF workflows.