diff options
author | Teddy Wing | 2021-05-02 19:27:54 +0200 |
---|---|---|
committer | Teddy Wing | 2021-05-02 19:27:54 +0200 |
commit | d206580edba34efdd05cfd11d1aa830122479f93 (patch) | |
tree | 66365d0d1946c875214de364c56f2eb21ced9dbf /.gitignore | |
download | pdf-form-replace-font-d206580edba34efdd05cfd11d1aa830122479f93.tar.bz2 |
Proof of concept to replace PDF form fields' font
PDF form fields are `/DA` fields (PDF Reference page 534,
https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdfs/pdf_reference_archives/PDFReference.pdf).
Get all `/DA` objects. Their value is a string that specifies the
field's appearance properties. One part of the appearance string is the
font name (its Postscript name). By replacing the font name with a
different one, we can change the field's font.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target |