Skip to content

Commit

Permalink
BUG: Error when filling a value with parentheses py-pdf#2268
Browse files Browse the repository at this point in the history
  • Loading branch information
rdl committed Oct 25, 2023
1 parent 9047079 commit 9abcfc2
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 (Ref. 7.3.4.2 Literal Strings)
txt = txt.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 9abcfc2

Please sign in to comment.