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.
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:
- Upload your PNG file(s)
- Select page size (A4, Letter, or custom)
- Choose fit mode: fill page, fit to page with margins, or actual pixel size
- 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 Paint → Print → 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 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:
| Aspect | PNG Source | JPG Source |
|---|---|---|
| Quality | Lossless | May have artifacts |
| File size in PDF | Larger | Smaller |
| Best for | Screenshots, diagrams, logos | Photos |
| Transparency | Yes | No |
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))
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
TIFF to PDF Converter: Free Online Tools and How to Use Them
Convert single and multi-page TIFF files to PDF using free online tools, desktop software, and command-line utilities.
Read Article
Convert JPG to PDF Free Online: No Watermark, No Limit
The fastest ways to convert JPG images to PDF — online tools, mobile apps, and desktop methods, all free with no watermarks or file size limits.
Read Article
How to Convert Screenshots to PDF (Windows, Mac & Mobile)
Turn screenshots into PDF files on any device — ideal for documenting software bugs, saving web content, and creating step-by-step guides.
Read Article