Skip to content

Commit

Permalink
BUG: Error when filling a value with parentheses #2268 (#2269)
Browse files Browse the repository at this point in the history
Co-authored-by: rdl <rdl@provexi.fr>
  • Loading branch information
KanorUbu and rdl committed Oct 28, 2023
1 parent e587157 commit 06c1a19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pypdf/_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,8 @@ def _update_text_field(self, field: DictionaryObject) -> None:
else: # /Tx
txt = field.get("/V", "")
sel = []

# Escape parentheses (pdf 1.7 reference, table 3.2 Literal Strings)
txt = txt.replace("\\", "\\\\").replace("(", r"\(").replace(")", r"\)")
# Generate appearance stream
ap_stream = f"q\n/Tx BMC \nq\n1 1 {rct.width - 1} {rct.height - 1} re\nW\nBT\n{da}\n".encode()
for line_number, line in enumerate(txt.replace("\n", "\r").split("\r")):
Expand Down

0 comments on commit 06c1a19

Please sign in to comment.