diff options
author | Teddy Wing | 2021-05-05 19:54:10 +0200 |
---|---|---|
committer | Teddy Wing | 2021-05-05 19:54:10 +0200 |
commit | 992350ecee22f63c89be4025dd8bfb3c016a691c (patch) | |
tree | a5cabf22ed7d024d0cf0d436768783c00c25728e | |
parent | 4b0b12160969aa787bf0f2c4c03346e8f3557e30 (diff) | |
download | pdf-form-replace-font-992350ecee22f63c89be4025dd8bfb3c016a691c.tar.bz2 |
Add README
-rw-r--r-- | README.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..e2c7930 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +pdf-form-replace-font +===================== + +Replace a given font in a PDF’s text fields with a different one. + + +## Usage +The following command replaces Helvetica with Courier New (font names are +specified by their PostScript names): + + $ pdf-form-replace-font \ + --find HelveticaLTStd-Bold \ + --replace CourierNewPSMT \ + --output f1040-courier.pdf \ + f1040.pdf + + +## Install +On Mac OS X, PDF-Form-Replace-Font can be installed with Homebrew: + + $ brew install teddywing/formulae/pdf-form-replace-font + +To compile from source or install on other platforms: + + $ cargo install --git https://github.com/teddywing/pdf-form-replace-font.git + + +## Uninstall + + $ cargo uninstall pdf-form-replace-font + + +## License +Copyright © 2021 Teddy Wing. Licensed under the GNU GPLv3+ (see the included +COPYING file). |