
PDF tooling for Go and the command line.
View the Project on GitHub pdfcpu/pdfcpu
Remove digital signatures from a PDF.
pdfcpu signatures remove inFile [ outFile ] [flags]
| name | description | default | required |
|---|---|---|---|
| rmenc | remove encryption while removing signatures | false | no |
| name | description | required |
|---|---|---|
| inFile | PDF input file, use - to read from stdin | yes |
| outFile | PDF output file, use - to write to stdout | no |
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