de:guide:pdf

PDF-Dateien

LibreOffice: Datei → Export als PDF…

  • qpdfview – hat ein Interface mit Tabs
  • Okular
  • Atril
  • Evince
  • SumatraPDF

exiftool

exiftool -all:all # read all the tags.
exiftool -all:all= # remove all the tags.

exiftool -all:all also removes the pointer to the Info Dictionary, but does not completely remove it.

In Graustufen konvertieren

GhostScript:

gs \
 -sOutputFile=output.pdf \
 -sDEVICE=pdfwrite \
 -sColorConversionStrategy=Gray \
 -dProcessColorModel=/DeviceGray \
 -dCompatibilityLevel=1.4 \
 -dNOPAUSE \
 -dBATCH \
 input.pdf
  • Zuletzt geändert: 2021-03-27 16:01