画像をPDFに無料で変換する方法:JPG、PNG等

読了時間 8分

JPG、PNG、WebPなどの画像をPDFに変換するガイド。アップロード不要の無料ツール。

Why convert images to PDF

Converting images to PDF is needed in many contexts:

  • Documentation: Scan a document with your phone camera (JPG) and need to send it as PDF.
  • Portfolio: Combine multiple designs or photos into one professional file.
  • Printing: Print shops prefer PDF over loose images for layout consistency.
  • Archiving: PDFs are easier to organize and search than hundreds of loose images.
  • Email: One 10-page PDF is easier to send than 10 image attachments.

Convert images to PDF instantly with the NexTools image to PDF converter — 100% browser processing.

How to convert images to PDF for free online

Using the NexTools converter:

Step 1: Open the tool. No registration.

Step 2: Drag images (JPG, PNG, WebP, BMP, GIF, TIFF) to the upload area.

Step 3: Rearrange order by dragging.

Step 4: Select options: page size (A4, letter, original), orientation, margins.

Step 5: Click "Convert" and download your PDF.

Supported formats: JPG/JPEG, PNG, WebP, BMP, GIF, TIFF, SVG.

Privacy: Everything processed in your browser. No file leaves your computer.

Format differences: JPG, PNG, WebP, TIFF

FormatCompressionTransparencyBest for
JPGLossyNoPhotos, images with many colors
PNGLosslessYesGraphics, screenshots, logos
WebPBothYesWeb (30% smaller than JPG at same quality)
TIFFLosslessYesProfessional printing, high-quality scans

If your images are large, compress first with the NexTools image compressor.

Optimal settings for different uses

Scanned documents: A4, portrait, 300 DPI, grayscale if no color needed.

Design/photo portfolio: Original size, 300 DPI for print, RGB.

Presentations: A4 landscape for slides, reduced margins.

Converting images to PDF from the terminal

ImageMagick: convert image1.jpg image2.png output.pdf

With options: convert -page A4 -quality 85 *.jpg output.pdf

Python (Pillow):

from PIL import Image
imgs = [Image.open(f) for f in ["img1.jpg", "img2.jpg"]]
imgs[0].save("output.pdf", save_all=True, append_images=imgs[1:])

For quick use, the NexTools online converter is most practical.

Common problems when converting images to PDF

1. Rotated image. Cameras store orientation as EXIF metadata. Some converters ignore EXIF. Fix: rotate beforehand.

2. PDF too large. A 5 MB JPG stays ~5 MB in PDF. Compress images BEFORE converting.

3. Image cropped or distorted. Happens when aspect ratio doesn't match page size. Use "original size" instead of forcing A4.

4. Low text quality. Scanned below 150 DPI. Re-scan at 300 DPI.

OCR: converting images to searchable PDF

A PDF from images is just "photos of text" — you can't select or search text. For that you need OCR:

  • Google Drive: Upload image, open with Google Docs. Auto-applies OCR.
  • Tesseract (open source): tesseract image.png output -l eng pdf
  • Adobe Scan (mobile): Free app with automatic OCR.

NexTools converts images to PDF without OCR (preserves original image). For searchable documents, use OCR afterward.

Privacy when converting images to PDF online

Images may contain sensitive information:

  • EXIF metadata: Camera photos include GPS location, date, camera model.
  • Visual content: Scanned IDs, passports, medical documents.

NexTools processes everything in your browser — files never leave your computer.

To combine the resulting PDF with others, use the NexTools PDF merger.

このツールを試す:

ツールを開く

よくある質問

Can I convert multiple images into one PDF

Yes. The NexTools converter accepts multiple images and combines them into a single PDF. You can reorder before converting.

What image formats can I convert to PDF

JPG/JPEG, PNG, WebP, BMP, GIF, and TIFF. Most common are JPG (photos) and PNG (screenshots).

Does conversion affect image quality

No. The image is inserted into the PDF without recompression. Quality is identical to the original file.

Can I choose the PDF page size

Yes. Options include A4, letter, legal, or the exact size of the image.

Does the converter upload my images to a server

No. NexTools processes everything in your browser. Files never leave your computer.

Can I convert a PDF back to images

That requires a different tool (PDF to image). For the reverse, use screenshots or pdftoppm in terminal.