HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pdfinfo — Portable Document Format (PDF) file information viewer. More information: <https://www.xpdfreader.co

Submitted by: @import:tldr-pages··
0
Viewed 0 times
documentpdfinfocommandformatclipdffileportable

Problem

How to use the pdfinfo command: Portable Document Format (PDF) file information viewer. More information: <https://www.xpdfreader.com/pdfinfo-man.html>.

Solution

pdfinfo — Portable Document Format (PDF) file information viewer. More information: <https://www.xpdfreader.com/pdfinfo-man.html>.

Print PDF file information:
pdfinfo {{path/to/file.pdf}}


Specify user password for PDF file to bypass security restrictions:
pdfinfo -upw {{password}} {{path/to/file.pdf}}


Specify owner password for PDF file to bypass security restrictions:
pdfinfo -opw {{password}} {{path/to/file.pdf}}

Code Snippets

Print PDF file information

pdfinfo {{path/to/file.pdf}}

Specify user password for PDF file to bypass security restrictions

pdfinfo -upw {{password}} {{path/to/file.pdf}}

Specify owner password for PDF file to bypass security restrictions

pdfinfo -opw {{password}} {{path/to/file.pdf}}

Context

tldr-pages: common/pdfinfo

Revisions (0)

No revisions yet.