1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
|
"""
Classes & functions that represent core elements of the PDF syntax
Most of what happens in a PDF happens in objects, which are formatted like so:
```
3 0 obj
<</Type /Page
/Parent 1 0 R
/Resources 2 0 R
/Contents 4 0 R>>
endobj
```
The first line says that this is the third object in the structure of the document.
There are 8 kinds of objects (Adobe Reference, 51):
* Boolean values
* Integer and real numbers
* Strings
* Names
* Arrays
* Dictionaries
* Streams
* The null object
The `<<` in the second line and the `>>` in the line preceding `endobj` denote
that it is a dictionary object. Dictionaries map Names to other objects.
Names are the strings preceded by `/`, valid Names do not have to start with a
capital letter, they can be any ascii characters, # and two characters can
escape non-printable ascii characters, described on page 57.
`3 0 obj` means what follows here is the third object, but the name Type
(represented here by `/Type`) is mapped to an indirect object reference:
`0 obj` vs `0 R`.
The structure of this data, in python/dict form, is thus:
```
third_obj = {
'/Type': '/Page'),
'/Parent': iobj_ref(1),
'/Resources': iobj_ref(2),
'/Contents': iobj_ref(4),
}
```
Content streams are of the form:
```
4 0 obj
<</Filter /ASCIIHexDecode /Length 22>>
stream
68656c6c6f20776f726c64
endstream
endobj
```
The contents of this module are internal to fpdf2, and not part of the public API.
They may change at any time without prior warning or any deprecation period,
in non-backward-compatible ways.
"""
# pyright: reportUnknownVariableType=false, reportUnknownMemberType=false, reportAttributeAccessIssue=false
import re
import zlib
from abc import ABC
from binascii import hexlify
from codecs import BOM_UTF16_BE
from datetime import datetime, timezone
from typing import (
TYPE_CHECKING,
Any,
Dict,
Mapping,
Optional,
Protocol,
Sequence,
TypeAlias,
Union,
runtime_checkable,
)
from .util import Number, NumberClass, escape_parens, number_to_str
if TYPE_CHECKING:
from .drawing import InheritType
from .encryption import StandardSecurityHandler
def clear_empty_fields(d: Mapping[str, object]) -> Mapping[str, object]:
return {k: v for k, v in d.items() if v}
def create_dictionary_string(
dict_: Mapping[str, object],
open_dict: str = "<<",
close_dict: str = ">>",
field_join: str = "\n",
key_value_join: str = " ",
has_empty_fields: bool = False,
) -> str:
"""format dictionary as PDF dictionary
@param dict_: dictionary of values to render
@param open_dict: string to open PDF dictionary
@param close_dict: string to close PDF dictionary
@param field_join: string to join fields with
@param key_value_join: string to join key to value with
@param has_empty_fields: whether or not to clear_empty_fields first.
"""
if has_empty_fields:
dict_ = clear_empty_fields(dict_)
return "".join(
[
open_dict,
field_join.join(key_value_join.join((k, str(v))) for k, v in dict_.items()),
close_dict,
]
)
def create_list_string(list_: list[str]) -> str:
"""format list of strings as PDF array"""
return f"[{' '.join(list_)}]"
def iobj_ref(n: int) -> str:
"""format an indirect PDF Object reference from its id number"""
return f"{n} 0 R"
def create_stream(
stream: bytearray | bytes | str,
encryption_handler: Optional["StandardSecurityHandler"] = None,
obj_id: Optional[int] = None,
) -> str:
if isinstance(stream, (bytearray, bytes)):
stream = str(stream, "latin-1")
if encryption_handler:
assert obj_id is not None
encryption_handler.encrypt(stream, obj_id)
return "\n".join(["stream", stream, "endstream"])
def wrap_in_local_context(draw_commands: list[str]) -> list[str]:
"""
Wrap a series of draw commands (list of strings) in a local context marker, so that changes to
draw style only apply to these commands.
"""
return ["q"] + draw_commands + ["Q"]
class Raw(str):
"""str subclass signifying raw data to be directly emitted to PDF without transformation."""
class Name(str):
"""str subclass signifying a PDF name, which are emitted differently than normal strings."""
NAME_ESC = re.compile(
b"[^" + bytes(v for v in range(33, 127) if v not in b"()<>[]{}/%#\\") + b"]"
)
def serialize(
self,
_security_handler: Optional["StandardSecurityHandler"] = None,
_obj_id: Optional[int] = None,
) -> str:
escaped = self.NAME_ESC.sub(
lambda m: b"#%02X" % m[0][0], self.encode()
).decode()
return f"/{escaped}"
class PDFObject:
# Main features of this class:
# * delay ID assignment
# * implement serializing
# Note: several child classes use __slots__ to save up some memory
def __init__(self) -> None:
self._id: Optional[int] = None
@property
def id(self) -> int:
if self._id is None:
raise AttributeError(
f"{self.__class__.__name__} has not been assigned an ID yet"
)
return self._id
@id.setter
def id(self, n: int) -> None:
self._id = n
@property
def ref(self) -> str:
return iobj_ref(self.id)
def serialize(
self,
obj_dict: Optional[Dict[str, object]] = None,
_security_handler: Optional["StandardSecurityHandler"] = None,
) -> str:
"Serialize the PDF object as an obj<</>>endobj text block"
output: list[str] = []
output.append(f"{self.id} 0 obj")
output.append("<<")
if not obj_dict:
obj_dict = self._build_obj_dict(_security_handler)
output.append(create_dictionary_string(obj_dict, open_dict="", close_dict=""))
output.append(">>")
content_stream = self.content_stream()
if content_stream:
output.append(create_stream(content_stream))
output.append("endobj")
return "\n".join(output)
# pylint: disable=no-self-use
def content_stream(self) -> bytes:
"Subclasses can override this method to indicate the presence of a content stream"
return b""
def _build_obj_dict(
self, security_handler: Optional["StandardSecurityHandler"] = None
) -> Dict[str, object]:
"""
Build the PDF Object associative map to serialize,
based on this class instance properties.
The property names are converted from snake_case to CamelCase,
and prefixed with a slash character "/".
"""
return build_obj_dict(
{key: getattr(self, key) for key in dir(self)},
_security_handler=security_handler,
_obj_id=self.id,
)
class PDFContentStream(PDFObject):
# Passed to zlib.compress() - In range 0-9 - Default is currently equivalent to 6:
_COMPRESSION_LEVEL = -1
def __init__(self, contents: bytes | bytearray, compress: bool = False):
super().__init__()
self._contents = (
zlib.compress(contents, level=self._COMPRESSION_LEVEL)
if compress
else bytes(contents)
)
self.filter = Name("FlateDecode") if compress else None
self.length = len(self._contents)
# method override
def content_stream(self) -> bytes:
return self._contents
# method override
def serialize(
self,
obj_dict: Optional[Dict[str, object]] = None,
_security_handler: Optional["StandardSecurityHandler"] = None,
) -> str:
if _security_handler:
assert not obj_dict
if not isinstance(self._contents, (bytearray, bytes)):
self._contents = self._contents.encode("latin-1")
self._contents = _security_handler.encrypt_stream(self._contents, self.id)
self.length = len(self._contents)
return super().serialize(obj_dict, _security_handler)
def build_obj_dict(
key_values: Dict[str, object],
_security_handler: Optional["StandardSecurityHandler"] = None,
_obj_id: Optional[int] = None,
) -> Dict[str, object]:
"""
Build the PDF Object associative map to serialize, based on a key-values dict.
The property names are converted from snake_case to CamelCase,
and prefixed with a slash character "/".
"""
obj_dict = {}
for key, value in key_values.items():
if (
callable(value)
or key.startswith("_")
or key in ("id", "ref")
or value is None
):
continue
# pylint: disable=redefined-loop-name
if hasattr(value, "value"): # e.g. Enum subclass
value = value.value
if isinstance(value, PDFObject): # indirect object reference
value = value.ref
elif hasattr(value, "serialize"): # pyright: ignore[reportUnknownArgumentType]
# e.g. PDFArray, PDFString, Name, Destination, Action...
value = value.serialize(
_security_handler=_security_handler, _obj_id=_obj_id
)
elif isinstance(value, bool):
value = str(value).lower()
obj_dict[f"/{camel_case(key)}"] = value
return obj_dict
def camel_case(snake_case: str) -> str:
return "".join(x for x in snake_case.title() if x != "_")
class PDFString(str):
USE_HEX_ENCODING = True
encrypt: bool = False
"""
Setting this to False can reduce the encoded strings size,
but then there can be a risk of badly encoding some unicode strings - cf. issue #458
"""
def __new__(cls, content: str, encrypt: bool = False) -> "PDFString":
"""
Args:
content (str): text
encrypt (bool): if document encryption is enabled, should this string be encrypted?
"""
self = super().__new__(cls, content)
self.encrypt = encrypt
return self
def serialize(
self,
_security_handler: Optional["StandardSecurityHandler"] = None,
_obj_id: Optional[int] = None,
) -> str:
if _security_handler and self.encrypt:
assert _obj_id is not None
return _security_handler.encrypt_string(self, _obj_id)
try:
self.encode("ascii")
# => this string only contains ASCII characters
return f"({escape_parens(self)})"
except UnicodeEncodeError:
pass
if self.USE_HEX_ENCODING:
# Using the "Hexadecimal String" format defined in the PDF spec:
hex_str = hexlify(BOM_UTF16_BE + self.encode("utf-16-be")).decode("latin-1")
return f"<{hex_str}>"
return f'({self.encode("UTF-16").decode("latin-1")})'
class PDFDate:
def __init__(
self, date: datetime, with_tz: bool = False, encrypt: bool = False
) -> None:
"""
Args:
date (datetime): self-explanatory
with_tz (bool): should the timezone be encoded in included in the date?
encrypt (bool): if document encryption is enabled, should this string be encrypted?
"""
self.date = date
self.with_tz = with_tz
self.encrypt = encrypt
def __repr__(self) -> str:
return f"PDFDate({self.date}, with_tz={self.with_tz}, encrypt={self.encrypt})"
def serialize(
self,
_security_handler: Optional["StandardSecurityHandler"] = None,
_obj_id: Optional[int] = None,
) -> str:
if self.with_tz:
assert self.date.tzinfo
if self.date.tzinfo == timezone.utc:
out_str = f"D:{self.date:%Y%m%d%H%M%SZ}"
else:
out_str = f"D:{self.date:%Y%m%d%H%M%S%z}"
out_str = out_str[:-2] + "'" + out_str[-2:] + "'"
else:
out_str = f"D:{self.date:%Y%m%d%H%M%S}"
if _security_handler and self.encrypt:
assert _obj_id
return _security_handler.encrypt_string(out_str, _obj_id)
return f"({out_str})"
class PDFArray(list[Any]):
def serialize(
self,
_security_handler: Optional["StandardSecurityHandler"] = None,
_obj_id: Optional[int] = None,
) -> str:
if all(isinstance(elem, str) for elem in self):
serialized_elems = " ".join(self)
elif all(isinstance(elem, (int, float)) for elem in self):
serialized_elems = " ".join(str(elem) for elem in self)
else:
serialized_chunks: list[str] = []
for elem in self:
if isinstance(elem, PDFObject):
serialized_chunks.append(elem.ref)
elif hasattr(elem, "serialize"):
serialized_chunks.append(
elem.serialize(
_security_handler=_security_handler, _obj_id=_obj_id
)
)
elif isinstance(elem, bool):
serialized_chunks.append(str(elem).lower())
elif isinstance(elem, (int, float)):
serialized_chunks.append(str(elem))
else:
serialized_chunks.append(str(elem))
serialized_elems = "\n".join(serialized_chunks)
return f"[{serialized_elems}]"
# cf. section 8.2.1 "Destinations" of the 2006 PDF spec 1.7:
class Destination(ABC):
def serialize(
self,
_security_handler: Optional["StandardSecurityHandler"] = None,
_obj_id: Optional[int] = None,
) -> str:
raise NotImplementedError
class DestinationXYZ(Destination):
def __init__(
self,
page: int,
top: Optional[float],
left: float = 0,
zoom: str | float = "null",
) -> None:
self.page_number = page
self.top = top
self.left = left
self.zoom = zoom
self.page_ref: Optional[str] = None
def __eq__(self, dest: object) -> bool:
if not isinstance(dest, DestinationXYZ):
return False
return (
self.page_number == dest.page_number
and self.top == dest.top
and self.left == dest.left
and self.zoom == dest.zoom
)
def __hash__(self) -> int:
return hash((self.page_number, self.top, self.left, self.zoom))
def __repr__(self) -> str:
return f'DestinationXYZ(page_number={self.page_number}, top={self.top}, left={self.left}, zoom="{self.zoom}", page_ref={self.page_ref})'
def serialize(
self,
_security_handler: Optional["StandardSecurityHandler"] = None,
_obj_id: Optional[int] = None,
) -> str:
left = round(self.left, 2) if isinstance(self.left, float) else self.left
top = round(self.top, 2) if isinstance(self.top, float) else self.top
assert self.page_ref
return f"[{self.page_ref} /XYZ {left} {top} {self.zoom}]"
def replace(
self,
page: Optional[int] = None,
top: Optional[float] = None,
left: Optional[float] = None,
zoom: Optional[str | float] = None,
) -> "DestinationXYZ":
assert (
not self.page_ref
), "DestinationXYZ should not be copied after serialization"
return DestinationXYZ(
page=self.page_number if page is None else page,
top=self.top if top is None else top,
left=self.left if left is None else left,
zoom=self.zoom if zoom is None else zoom,
)
@runtime_checkable
class PrimitiveSerializable(Protocol):
def serialize(self) -> str: ...
PDFScalar: TypeAlias = Union[Raw, Name, str, bytes, bool, None, Number, "InheritType"]
PDFPrimitive: TypeAlias = (
PDFScalar
| Sequence["PDFPrimitive"]
| Mapping["Name", "PDFPrimitive"]
| PrimitiveSerializable
)
def render_pdf_primitive(primitive: PDFPrimitive) -> Raw:
"""
Render a Python value as a PDF primitive type.
Container types (tuples/lists and dicts) are rendered recursively. This supports
values of the type Name, str, bytes, numbers, booleans, list/tuple, and dict.
Any custom type can be passed in as long as it provides a `serialize` method that
takes no arguments and returns a string. The primitive object is returned directly
if it is an instance of the `Raw` class. Otherwise, The existence of the `serialize`
method is checked before any other type checking is performed, so, for example, a
`dict` subclass with a `serialize` method would be converted using its `pdf_repr`
method rather than the built-in `dict` conversion process.
Args:
primitive: the primitive value to convert to its PDF representation.
Returns:
Raw-wrapped str of the PDF representation.
Raises:
ValueError: if a dictionary key is not a Name.
TypeError: if `primitive` does not have a known conversion to a PDF
representation.
"""
if isinstance(primitive, Raw):
return primitive
if isinstance(primitive, PrimitiveSerializable):
output = primitive.serialize()
elif primitive is None:
output = "null"
elif isinstance(primitive, str):
output = f"({escape_parens(primitive)})"
elif isinstance(primitive, bytes):
output = f"<{primitive.hex()}>"
elif isinstance(primitive, bool): # has to come before number check
output = ["false", "true"][primitive]
elif isinstance(primitive, NumberClass):
output = number_to_str(primitive)
elif isinstance(primitive, (list, tuple)):
output = "[" + " ".join(render_pdf_primitive(val) for val in primitive) + "]"
elif isinstance(primitive, dict):
item_list: list[str] = []
for key, val in primitive.items():
if not isinstance(key, Name):
raise ValueError("dict keys must be Names")
item_list.append(
render_pdf_primitive(key) + " " + render_pdf_primitive(val)
)
output = "<< " + "\n".join(item_list) + " >>"
else:
raise TypeError(f"cannot produce PDF representation for value {primitive!r}")
return Raw(output)
|