qPDF

qPDF

A content-preserving PDF document transformer

Category
PDF
License
Apache 2
Platforms
Windows macOS Linux
Released
2008
Path
c:\qpdf\qpdf.exe
Version
Latest known: 12.3.2 (2025-05-04)

Examples

1. Optimize a PDF for the web.

qpdf.exe d:\mypdf.pdf --linearize d:\mypdf_optimized.pdf

2. Optimize the quality of images in a PDF to reduce filesize.

qpdf.exe d:\mypdf.pdf --optimize-images --jpeg-quality=75 d:\mypdf_optimized.pdf

3. Generate a JSON representation of a PDF file.

qpdf.exe --json-output d:\mypdf.pdf d:\mypdf.json

4. Exclude file information and metadata from the output file.

qpdf.exe --remove-info --remove-metadata d:\mypdf.pdf d:\mypdf-sanitized.pdf

6. Combine 2 PDFs and overlay the single page from watermark.pdf on the result.

qpdf.exe --empty --pages d:\a.pdf d:\b.pdf -- --overlay watermark.pdf --from= --repeat=1 -- d:\out.pdf