Ask HN: Is there a good open-source alternative to Adobe Acrobat?

5 pointsposted 5 hours ago
by sebastian_z

Item id: 46764607

3 Comments

mindwork

an hour ago

I self host Stirling-PDF for complicated tasks, and use native MacOs app Preview for easy tasks

reify

3 hours ago

On linux I use qpdf

example; to keep pages 1-9 and 26-end of the original file input.pdf and save them to outputfile.pdf:

  qpdf input.pdf --pages . 1-9,26-z -- outputfile.pdf
reduce pdf file size

  qpdf --compress-streams=y --recompress-flate --optimize-images 1.pdf 2.pdf
converted a 16mb file to 1mb reduction

qpdf --help

Run "qpdf --help=topic" for help on a topic. Run "qpdf --help=--option" for help on an option. Run "qpdf --help=all" to see all available help.

Topics:

  add-attachment: attach (embed) files
  advanced-control: tweak qpdf's behavior
  attachments: work with embedded files
  completion: shell completion
  copy-attachments: copy attachments from another file
  encryption: create encrypted files
  exit-status: meanings of qpdf's exit codes
  general: general options
  help: information about qpdf
  inspection: inspect PDF files
  json: JSON output for PDF information
  modification: change parts of the PDF
  overlay-underlay: overlay/underlay pages from other PDF files
  page-ranges: page range syntax
  page-selection: select pages from one or more files
  pdf-dates: PDF date format
  testing: options for testing or debugging
  transformation: make structural PDF changes
  usage: basic invocation
For detailed help, visit the qpdf manual:

  https://qpdf.readthedocs.io