pdfcpu

Logo

PDF tooling for Go and the command line.

View the Project on GitHub pdfcpu/pdfcpu


Changelog
Future Directions

Remove Signatures

Remove digital signatures from a PDF.

pdfcpu signatures remove inFile [ outFile ] [flags]

Flags

namedescriptiondefaultrequired
rmencremove encryption while removing signaturesfalseno

Arguments

namedescriptionrequired
inFilePDF input file, use - to read from stdinyes
outFilePDF output file, use - to write to stdoutno

Example

Remove signatures from a streamed PDF and upload the result:

$ aws s3 cp s3://acme-signing/executed.pdf - \
   | pdfcpu signatures remove - - \
   | aws s3 cp - s3://acme-signing/executed-unsigned.pdf