Image to PDF March 4, 2026 · 5 min read

PNG to PDF Converter: Free Online & Offline Methods

Convert PNG images to PDF format — from single screenshots to multi-image documents — using free tools across all platforms.

PNG to PDF Converter: Free Online & Offline Methods
AT

AltoUnlockPDF Team

PDF Tools Expert

PNG (Portable Network Graphics) is the preferred format for screenshots, UI designs, charts, and graphics that require transparency or lossless quality. Converting PNGs to PDF is common for sharing designs, archiving documents, and creating printable files.


Why Convert PNG to PDF?

  • PDFs are universally readable — no special software needed
  • PDFs preserve layout at any zoom/print size
  • Multiple PNGs can be combined into a structured document
  • PDFs support password protection and digital signatures
  • PNG files in email are often blocked; PDF isn’t

Method 1: AltoUnlockPDF Online

Our Image to PDF tool handles PNG natively:

  1. Upload your PNG file(s)
  2. Select page size (A4, Letter, or custom)
  3. Choose fit mode: fill page, fit to page with margins, or actual pixel size
  4. Click Convert → Download PDF

Transparency in PNGs is automatically converted to white background.


Method 2: Windows Built-In

Right-click your PNG → Open with → Photos or PaintPrint → Select “Microsoft Print to PDF” → Print → Save.

Or use the Snipping Tool’s built-in PDF export in Windows 11.


Method 3: Mac Built-In

In Finder, select the PNG → Right-click → Quick Actions → Create PDF.

Or open in Preview → File → Export as PDF.

PNG screenshot converted to PDF document

PNG Transparency in PDFs

PNG supports transparent backgrounds. When converting to PDF, the transparency is handled differently by each tool:

  • White background — most common default; transparency becomes white
  • Transparent PDF — technically possible with PDF transparency groups, but most viewers show it as white anyway
  • Custom background color — some converters let you specify

If you need a specific background color (e.g., for logos on colored paper), add the background in an image editor before converting.


PNG vs JPG for PDF Conversion

When converting images to PDF, the source format matters:

AspectPNG SourceJPG Source
QualityLosslessMay have artifacts
File size in PDFLargerSmaller
Best forScreenshots, diagrams, logosPhotos
TransparencyYesNo

If file size is a concern, consider converting PNG to JPG first (accepting slight quality loss), then to PDF. Our tool handles this automatically.


Batch PNG to PDF (Python)

import img2pdf
from pathlib import Path

# Convert all PNGs in a folder
png_files = sorted(Path('./designs').glob('*.png'))
with open('designs.pdf', 'wb') as f:
    f.write(img2pdf.convert([str(p) for p in png_files]))

print(f"Combined {len(png_files)} PNGs into designs.pdf")

Converting High-Resolution PNGs

Design exports (Figma, Sketch, Photoshop) are often 2x or 3x resolution for Retina displays. When converting these:

  • A 2880×1800 PNG at 2x resolution represents a 1440×900 display element
  • Set DPI to 144 (2x standard 72 DPI) in your converter settings
  • This ensures the PDF displays at the correct size
import img2pdf
# Set DPI for high-resolution Retina images
with open('output.pdf', 'wb') as f:
    f.write(img2pdf.convert('design@2x.png', dpi=144))
Design PNG files converted to PDF presentation

Use Cases

Screenshots to PDF: Capture your screen → convert to PDF → share as a permanent record.

Design Mockups: Export Figma/XD frames as PNG → combine into PDF presentation → send to clients.

Diagrams and Charts: Export from draw.io, Miro, or Excel as PNG → convert to PDF → embed in reports.

Scanned Documents: Photos of whiteboard notes or paper documents → convert to PDF → archive or share.

For most users, the built-in operating system methods (Mac Quick Actions, Windows Print to PDF) are the fastest. For batch conversions or custom sizing, use Python img2pdf or our online tool.

Related Articles