From e45fdb72f7506ca1a42d3a023fbc6f6bbeb9e041 Mon Sep 17 00:00:00 2001 From: Quantum Date: Sat, 16 Mar 2019 19:21:01 -0400 Subject: [PATCH] Add README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..6517782 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# PDFSignatureRemover [![](https://img.shields.io/jenkins/s/https/ci.dmoj.ca/job/PDFSignatureRemover.svg)](https://ci.dmoj.ca/job/PDFSignatureRemover/) + +Sometimes, you have to open signed PDF files. Digital signature is good +and everything, but it leaves an annoying warning if the signature fails +to verify. If you are using Adobe Reader, every time you open the file, it +complains that the signature is invalid. + +`PDFSignatureRemover` is a tool that can remove the pesky signatures for you. + +## Usage + +``` +$ wget https://ci.dmoj.ca/job/PDFSignatureRemover/lastSuccessfulBuild/artifact/target/PDFSignatureRemover-1.0-SNAPSHOT.jar -O PDFSignatureRemover.jar +$ java -jar PDFSignatureRemover.jar signed.pdf output.pdf +``` + +This will convert `signed.pdf`, with a PDF signature, to `output.pdf`, +without the signature.