1 | <?php |
||
19 | class Page extends AbstractObject |
||
20 | { |
||
21 | /** |
||
22 | * @var Document |
||
23 | */ |
||
24 | private $document; |
||
25 | |||
26 | /** |
||
27 | * @var IndirectObject |
||
28 | */ |
||
29 | private $indirectReference; |
||
30 | |||
31 | /** |
||
32 | * @var DictionaryObject |
||
33 | */ |
||
34 | private $dictionary; |
||
35 | |||
36 | /** |
||
37 | * @param Document $document |
||
38 | * @param int $width |
||
39 | * @param int $height |
||
40 | */ |
||
41 | public function __construct(Document $document, IndirectObject $indirectReference, $width, $height) |
||
52 | |||
53 | /** |
||
54 | * @return IndirectObject |
||
55 | */ |
||
56 | public function getIndirectReference() |
||
60 | |||
61 | /** |
||
62 | * {@inheritdoc} |
||
63 | */ |
||
64 | public function writeToStream(SplFileObject $fileObject, $encryptionKey) |
||
68 | } |
||
69 |