-
Notifications
You must be signed in to change notification settings - Fork 2
/
Pdf.php
1635 lines (1424 loc) · 55.3 KB
/
Pdf.php
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
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Pdf
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id$
*/
/** User land classes and interfaces turned on by Zend/Pdf.php file inclusion. */
/** @todo Section should be removed with ZF 2.0 release as obsolete */
/** Zend_Pdf_Page */
require_once 'Zend/Pdf/Page.php';
/** Zend_Pdf_Style */
require_once 'Zend/Pdf/Style.php';
/** Zend_Pdf_Color_GrayScale */
require_once 'Zend/Pdf/Color/GrayScale.php';
/** Zend_Pdf_Color_Rgb */
require_once 'Zend/Pdf/Color/Rgb.php';
/** Zend_Pdf_Color_Cmyk */
require_once 'Zend/Pdf/Color/Cmyk.php';
/** Zend_Pdf_Color_Html */
require_once 'Zend/Pdf/Color/Html.php';
/** Zend_Pdf_Image */
require_once 'Zend/Pdf/Image.php';
/** Zend_Pdf_Font */
require_once 'Zend/Pdf/Font.php';
/** Zend_Pdf_Resource_Extractor */
require_once 'Zend/Pdf/Resource/Extractor.php';
/** Zend_Pdf_Canvas */
require_once 'Zend/Pdf/Canvas.php';
/** Internally used classes */
require_once 'Zend/Pdf/Element.php';
require_once 'Zend/Pdf/Element/Array.php';
require_once 'Zend/Pdf/Element/String/Binary.php';
require_once 'Zend/Pdf/Element/Boolean.php';
require_once 'Zend/Pdf/Element/Dictionary.php';
require_once 'Zend/Pdf/Element/Name.php';
require_once 'Zend/Pdf/Element/Null.php';
require_once 'Zend/Pdf/Element/Numeric.php';
require_once 'Zend/Pdf/Element/String.php';
/**
* General entity which describes PDF document.
* It implements document abstraction with a document level operations.
*
* Class is used to create new PDF document or load existing document.
* See details in a class constructor description
*
* Class agregates document level properties and entities (pages, bookmarks,
* document level actions, attachments, form object, etc)
*
* @category Zend
* @package Zend_Pdf
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Pdf
{
/**** Class Constants ****/
/**
* Version number of generated PDF documents.
*/
const PDF_VERSION = '1.4';
/**
* PDF file header.
*/
const PDF_HEADER = "%PDF-1.4\n%\xE2\xE3\xCF\xD3\n";
/**
* Form field options
*/
const PDF_FORM_FIELD_READONLY = 1;
const PDF_FORM_FIELD_REQUIRED = 2;
const PDF_FORM_FIELD_NOEXPORT = 4;
/**
* Pages collection
*
* @todo implement it as a class, which supports ArrayAccess and Iterator interfaces,
* to provide incremental parsing and pages tree updating.
* That will give good performance and memory (PDF size) benefits.
*
* @var array - array of Zend_Pdf_Page object
*/
public $pages = array();
/**
* Document properties
*
* It's an associative array with PDF meta information, values may
* be string, boolean or float.
* Returned array could be used directly to access, add, modify or remove
* document properties.
*
* Standard document properties: Title (must be set for PDF/X documents), Author,
* Subject, Keywords (comma separated list), Creator (the name of the application,
* that created document, if it was converted from other format), Trapped (must be
* true, false or null, can not be null for PDF/X documents)
*
* @var array
*/
public $properties = array();
/**
* Original properties set.
*
* Used for tracking properties changes
*
* @var array
*/
protected $_originalProperties = array();
/**
* Document level javascript
*
* @var string
*/
protected $_javaScript = null;
/**
* Document named destinations or "GoTo..." actions, used to refer
* document parts from outside PDF
*
* @var array - array of Zend_Pdf_Target objects
*/
protected $_namedTargets = array();
/**
* Document outlines
*
* @var array - array of Zend_Pdf_Outline objects
*/
public $outlines = array();
/**
* Original document outlines list
* Used to track outlines update
*
* @var array - array of Zend_Pdf_Outline objects
*/
protected $_originalOutlines = array();
/**
* Original document outlines open elements count
* Used to track outlines update
*
* @var integer
*/
protected $_originalOpenOutlinesCount = 0;
/**
* Pdf trailer (last or just created)
*
* @var Zend_Pdf_Trailer
*/
protected $_trailer = null;
/**
* PDF objects factory.
*
* @var Zend_Pdf_ElementFactory_Interface
*/
protected $_objFactory = null;
/**
* Memory manager for stream objects
*
* @var Zend_Memory_Manager|null
*/
protected static $_memoryManager = null;
/**
* Pdf file parser.
* It's not used, but has to be destroyed only with Zend_Pdf object
*
* @var Zend_Pdf_Parser
*/
protected $_parser;
/**
* List of inheritable attributesfor pages tree
*
* @var array
*/
protected static $_inheritableAttributes = array('Resources', 'MediaBox', 'CropBox', 'Rotate');
/**
* List of form fields
*
* @var array - Associative array, key: name of form field, value: Zend_Pdf_Element
*/
protected $_formFields = array();
/**
* True if the object is a newly created PDF document (affects save() method behavior)
* False otherwise
*
* @var boolean
*/
protected $_isNewDocument = true;
/**
* Request used memory manager
*
* @return Zend_Memory_Manager
*/
static public function getMemoryManager()
{
if (self::$_memoryManager === null) {
require_once 'Zend/Memory.php';
self::$_memoryManager = Zend_Memory::factory('none');
}
return self::$_memoryManager;
}
/**
* Set user defined memory manager
*
* @param Zend_Memory_Manager $memoryManager
*/
static public function setMemoryManager(Zend_Memory_Manager $memoryManager)
{
self::$_memoryManager = $memoryManager;
}
/**
* Create new PDF document from a $source string
*
* @param string $source
* @param integer $revision
* @return Zend_Pdf
*/
public static function parse(&$source = null, $revision = null)
{
return new Zend_Pdf($source, $revision);
}
/**
* Load PDF document from a file
*
* @param string $source
* @param integer $revision
* @return Zend_Pdf
*/
public static function load($source = null, $revision = null)
{
return new Zend_Pdf($source, $revision, true);
}
/**
* Render PDF document and save it.
*
* If $updateOnly is true and it's not a new document, then it only
* appends new section to the end of file.
*
* @param string $filename
* @param boolean $updateOnly
* @throws Zend_Pdf_Exception
*/
public function save($filename, $updateOnly = false)
{
if (($file = @fopen($filename, $updateOnly ? 'ab':'wb')) === false ) {
require_once 'Zend/Pdf/Exception.php';
throw new Zend_Pdf_Exception( "Can not open '$filename' file for writing." );
}
$this->render($updateOnly, $file);
fclose($file);
}
/**
* Creates or loads PDF document.
*
* If $source is null, then it creates a new document.
*
* If $source is a string and $load is false, then it loads document
* from a binary string.
*
* If $source is a string and $load is true, then it loads document
* from a file.
* $revision used to roll back document to specified version
* (0 - current version, 1 - previous version, 2 - ...)
*
* @param string $source - PDF file to load
* @param integer $revision
* @param bool $load
* @throws Zend_Pdf_Exception
* @return Zend_Pdf
*/
public function __construct($source = null, $revision = null, $load = false)
{
require_once 'Zend/Pdf/ElementFactory.php';
$this->_objFactory = Zend_Pdf_ElementFactory::createFactory(1);
if ($source !== null) {
require_once 'Zend/Pdf/Parser.php';
$this->_parser = new Zend_Pdf_Parser($source, $this->_objFactory, $load);
$this->_pdfHeaderVersion = $this->_parser->getPDFVersion();
$this->_trailer = $this->_parser->getTrailer();
if ($this->_trailer->Encrypt !== null) {
require_once 'Zend/Pdf/Exception.php';
throw new Zend_Pdf_Exception('Encrypted document modification is not supported');
}
if ($revision !== null) {
$this->rollback($revision);
} else {
$this->_loadPages($this->_trailer->Root->Pages);
}
$this->_loadNamedDestinations($this->_trailer->Root, $this->_parser->getPDFVersion());
$this->_loadOutlines($this->_trailer->Root);
$this->_loadJavaScript($this->_trailer->Root);
$this->_loadFormFields($this->_trailer->Root);
if ($this->_trailer->Info !== null) {
$this->properties = $this->_trailer->Info->toPhp();
if (isset($this->properties['Trapped'])) {
switch ($this->properties['Trapped']) {
case 'True':
$this->properties['Trapped'] = true;
break;
case 'False':
$this->properties['Trapped'] = false;
break;
case 'Unknown':
$this->properties['Trapped'] = null;
break;
default:
// Wrong property value
// Do nothing
break;
}
}
$this->_originalProperties = $this->properties;
}
$this->_isNewDocument = false;
} else {
$this->_pdfHeaderVersion = Zend_Pdf::PDF_VERSION;
$trailerDictionary = new Zend_Pdf_Element_Dictionary();
/**
* Document id
*/
$docId = md5(uniqid(rand(), true)); // 32 byte (128 bit) identifier
$docIdLow = substr($docId, 0, 16); // first 16 bytes
$docIdHigh = substr($docId, 16, 16); // second 16 bytes
$trailerDictionary->ID = new Zend_Pdf_Element_Array();
$trailerDictionary->ID->items[] = new Zend_Pdf_Element_String_Binary($docIdLow);
$trailerDictionary->ID->items[] = new Zend_Pdf_Element_String_Binary($docIdHigh);
$trailerDictionary->Size = new Zend_Pdf_Element_Numeric(0);
require_once 'Zend/Pdf/Trailer/Generator.php';
$this->_trailer = new Zend_Pdf_Trailer_Generator($trailerDictionary);
/**
* Document catalog indirect object.
*/
$docCatalog = $this->_objFactory->newObject(new Zend_Pdf_Element_Dictionary());
$docCatalog->Type = new Zend_Pdf_Element_Name('Catalog');
$docCatalog->Version = new Zend_Pdf_Element_Name(Zend_Pdf::PDF_VERSION);
$this->_trailer->Root = $docCatalog;
/**
* Pages container
*/
$docPages = $this->_objFactory->newObject(new Zend_Pdf_Element_Dictionary());
$docPages->Type = new Zend_Pdf_Element_Name('Pages');
$docPages->Kids = new Zend_Pdf_Element_Array();
$docPages->Count = new Zend_Pdf_Element_Numeric(0);
$docCatalog->Pages = $docPages;
}
}
/**
* Retrive number of revisions.
*
* @return integer
*/
public function revisions()
{
$revisions = 1;
$currentTrailer = $this->_trailer;
while ($currentTrailer->getPrev() !== null && $currentTrailer->getPrev()->Root !== null ) {
$revisions++;
$currentTrailer = $currentTrailer->getPrev();
}
return $revisions++;
}
/**
* Rollback document $steps number of revisions.
* This method must be invoked before any changes, applied to the document.
* Otherwise behavior is undefined.
*
* @param integer $steps
*/
public function rollback($steps)
{
for ($count = 0; $count < $steps; $count++) {
if ($this->_trailer->getPrev() !== null && $this->_trailer->getPrev()->Root !== null) {
$this->_trailer = $this->_trailer->getPrev();
} else {
break;
}
}
$this->_objFactory->setObjectCount($this->_trailer->Size->value);
// Mark content as modified to force new trailer generation at render time
$this->_trailer->Root->touch();
$this->pages = array();
$this->_loadPages($this->_trailer->Root->Pages);
}
/**
* Load pages recursively
*
* @param Zend_Pdf_Element_Reference $pages
* @param array|null $attributes
* @throws Zend_Pdf_Exception
*/
protected function _loadPages(Zend_Pdf_Element_Reference $pages, $attributes = array())
{
if ($pages->getType() != Zend_Pdf_Element::TYPE_DICTIONARY) {
require_once 'Zend/Pdf/Exception.php';
throw new Zend_Pdf_Exception('Wrong argument');
}
foreach ($pages->getKeys() as $property) {
if (in_array($property, self::$_inheritableAttributes)) {
$attributes[$property] = $pages->$property;
$pages->$property = null;
}
}
foreach ($pages->Kids->items as $child) {
if ($child->Type->value == 'Pages') {
$this->_loadPages($child, $attributes);
} else if ($child->Type->value == 'Page') {
foreach (self::$_inheritableAttributes as $property) {
if ($child->$property === null && array_key_exists($property, $attributes)) {
/**
* Important note.
* If any attribute or dependant object is an indirect object, then it's still
* shared between pages.
*/
if ($attributes[$property] instanceof Zend_Pdf_Element_Object ||
$attributes[$property] instanceof Zend_Pdf_Element_Reference) {
$child->$property = $attributes[$property];
} else {
$child->$property = $this->_objFactory->newObject($attributes[$property]);
}
}
}
require_once 'Zend/Pdf/Page.php';
$this->pages[] = new Zend_Pdf_Page($child, $this->_objFactory);
}
}
}
/**
* Load named destinations recursively
*
* @param Zend_Pdf_Element_Reference $root Document catalog entry
* @param string $pdfHeaderVersion
* @throws Zend_Pdf_Exception
*/
protected function _loadNamedDestinations(Zend_Pdf_Element_Reference $root, $pdfHeaderVersion)
{
if ($root->Version !== null && version_compare($root->Version->value, $pdfHeaderVersion, '>')) {
$versionIs_1_2_plus = version_compare($root->Version->value, '1.1', '>');
} else {
$versionIs_1_2_plus = version_compare($pdfHeaderVersion, '1.1', '>');
}
if ($versionIs_1_2_plus) {
// PDF version is 1.2+
// Look for Destinations structure at Name dictionary
if ($root->Names !== null && $root->Names->Dests !== null) {
require_once 'Zend/Pdf/NameTree.php';
require_once 'Zend/Pdf/Target.php';
foreach (new Zend_Pdf_NameTree($root->Names->Dests) as $name => $destination) {
$this->_namedTargets[$name] = Zend_Pdf_Target::load($destination);
}
}
} else {
// PDF version is 1.1 (or earlier)
// Look for Destinations sructure at Dest entry of document catalog
if ($root->Dests !== null) {
if ($root->Dests->getType() != Zend_Pdf_Element::TYPE_DICTIONARY) {
require_once 'Zend/Pdf/Exception.php';
throw new Zend_Pdf_Exception('Document catalog Dests entry must be a dictionary.');
}
require_once 'Zend/Pdf/Target.php';
foreach ($root->Dests->getKeys() as $destKey) {
$this->_namedTargets[$destKey] = Zend_Pdf_Target::load($root->Dests->$destKey);
}
}
}
}
/**
* Load outlines recursively
*
* @param Zend_Pdf_Element_Reference $root Document catalog entry
* @throws Zend_Pdf_Exception
*/
protected function _loadOutlines(Zend_Pdf_Element_Reference $root)
{
if ($root->Outlines === null) {
return;
}
if ($root->Outlines->getType() != Zend_Pdf_Element::TYPE_DICTIONARY) {
require_once 'Zend/Pdf/Exception.php';
throw new Zend_Pdf_Exception('Document catalog Outlines entry must be a dictionary.');
}
if ($root->Outlines->Type !== null && $root->Outlines->Type->value != 'Outlines') {
require_once 'Zend/Pdf/Exception.php';
throw new Zend_Pdf_Exception('Outlines Type entry must be an \'Outlines\' string.');
}
if ($root->Outlines->First === null) {
return;
}
$outlineDictionary = $root->Outlines->First;
$processedDictionaries = new SplObjectStorage();
while ($outlineDictionary !== null && !$processedDictionaries->contains($outlineDictionary)) {
$processedDictionaries->attach($outlineDictionary);
require_once 'Zend/Pdf/Outline/Loaded.php';
$this->outlines[] = new Zend_Pdf_Outline_Loaded($outlineDictionary);
$outlineDictionary = $outlineDictionary->Next;
}
$this->_originalOutlines = $this->outlines;
if ($root->Outlines->Count !== null) {
$this->_originalOpenOutlinesCount = $root->Outlines->Count->value;
}
}
/**
* Load JavaScript
*
* Populates the _javaScript string, for later use of getJavaScript method.
*
* @param Zend_Pdf_Element_Reference $root Document catalog entry
*/
protected function _loadJavaScript(Zend_Pdf_Element_Reference $root)
{
if (null === $root->Names || null === $root->Names->JavaScript
|| null === $root->Names->JavaScript->Names
) {
return;
}
foreach ($root->Names->JavaScript->Names->items as $item) {
if ($item instanceof Zend_Pdf_Element_Reference
&& $item->S->value === 'JavaScript'
) {
$this->_javaScript[] = $item->JS->value;
}
}
}
/**
* Load form fields
*
* Populates the _formFields array, for later lookup of fields by name
*
* @param Zend_Pdf_Element_Reference $root Document catalog entry
*/
protected function _loadFormFields(Zend_Pdf_Element_Reference $root)
{
if ($root->AcroForm === null || $root->AcroForm->Fields === null) {
return;
}
foreach ($root->AcroForm->Fields->items as $field) {
/* We only support fields that are textfields and have a name */
if ($field->FT && $field->FT->value == 'Tx' && $field->T
&& $field->T !== null
) {
$this->_formFields[$field->T->value] = $field;
}
}
if (!$root->AcroForm->NeedAppearances
|| !$root->AcroForm->NeedAppearances->value
) {
/* Ask the .pdf viewer to generate its own appearance data, so we do not have to */
$root->AcroForm->add(
new Zend_Pdf_Element_Name('NeedAppearances'),
new Zend_Pdf_Element_Boolean(true)
);
$root->AcroForm->touch();
}
}
/**
* Retrieves a list with the names of the AcroForm textfields in the PDF
*
* @return array of strings
*/
public function getTextFieldNames()
{
return array_keys($this->_formFields);
}
/**
* Sets the value of an AcroForm text field
*
* @param string $name Name of textfield
* @param string $value Value
* @throws Zend_Pdf_Exception if the textfield does not exist in the pdf
*/
public function setTextField($name, $value)
{
if (!isset($this->_formFields[$name])) {
throw new Zend_Pdf_Exception(
"Field '$name' does not exist or is not a textfield"
);
}
/** @var Zend_Pdf_Element $field */
$field = $this->_formFields[$name];
$field->add(
new Zend_Pdf_Element_Name('V'), new Zend_Pdf_Element_String($value)
);
$field->touch();
}
/**
* Sets the properties for an AcroForm text field
*
* @param string $name
* @param mixed $bitmask
* @throws Zend_Pdf_Exception
*/
public function setTextFieldProperties($name, $bitmask)
{
if (!isset($this->_formFields[$name])) {
throw new Zend_Pdf_Exception(
"Field '$name' does not exist or is not a textfield"
);
}
$field = $this->_formFields[$name];
$field->add(
new Zend_Pdf_Element_Name('Ff'),
new Zend_Pdf_Element_Numeric($bitmask)
);
$field->touch();
}
/**
* Marks an AcroForm text field as read only
*
* @param string $name
*/
public function markTextFieldAsReadOnly($name)
{
$this->setTextFieldProperties($name, self::PDF_FORM_FIELD_READONLY);
}
/**
* Orginize pages to tha pages tree structure.
*
* @todo atomatically attach page to the document, if it's not done yet.
* @todo check, that page is attached to the current document
*
* @todo Dump pages as a balanced tree instead of a plain set.
*/
protected function _dumpPages()
{
$root = $this->_trailer->Root;
$pagesContainer = $root->Pages;
$pagesContainer->touch();
$pagesContainer->Kids->items = array();
foreach ($this->pages as $page ) {
$page->render($this->_objFactory);
$pageDictionary = $page->getPageDictionary();
$pageDictionary->touch();
$pageDictionary->Parent = $pagesContainer;
$pagesContainer->Kids->items[] = $pageDictionary;
}
$this->_refreshPagesHash();
$pagesContainer->Count->touch();
$pagesContainer->Count->value = count($this->pages);
// Refresh named destinations list
foreach ($this->_namedTargets as $name => $namedTarget) {
if ($namedTarget instanceof Zend_Pdf_Destination_Explicit) {
// Named target is an explicit destination
if ($this->resolveDestination($namedTarget, false) === null) {
unset($this->_namedTargets[$name]);
}
} else if ($namedTarget instanceof Zend_Pdf_Action) {
// Named target is an action
if ($this->_cleanUpAction($namedTarget, false) === null) {
// Action is a GoTo action with an unresolved destination
unset($this->_namedTargets[$name]);
}
} else {
require_once 'Zend/Pdf/Exception.php';
throw new Zend_Pdf_Exception('Wrong type of named targed (\'' . get_class($namedTarget) . '\').');
}
}
// Refresh outlines
require_once 'Zend/Pdf/RecursivelyIteratableObjectsContainer.php';
$iterator = new RecursiveIteratorIterator(new Zend_Pdf_RecursivelyIteratableObjectsContainer($this->outlines), RecursiveIteratorIterator::SELF_FIRST);
foreach ($iterator as $outline) {
$target = $outline->getTarget();
if ($target !== null) {
if ($target instanceof Zend_Pdf_Destination) {
// Outline target is a destination
if ($this->resolveDestination($target, false) === null) {
$outline->setTarget(null);
}
} else if ($target instanceof Zend_Pdf_Action) {
// Outline target is an action
if ($this->_cleanUpAction($target, false) === null) {
// Action is a GoTo action with an unresolved destination
$outline->setTarget(null);
}
} else {
require_once 'Zend/Pdf/Exception.php';
throw new Zend_Pdf_Exception('Wrong outline target.');
}
}
}
$openAction = $this->getOpenAction();
if ($openAction !== null) {
if ($openAction instanceof Zend_Pdf_Action) {
// OpenAction is an action
if ($this->_cleanUpAction($openAction, false) === null) {
// Action is a GoTo action with an unresolved destination
$this->setOpenAction(null);
}
} else if ($openAction instanceof Zend_Pdf_Destination) {
// OpenAction target is a destination
if ($this->resolveDestination($openAction, false) === null) {
$this->setOpenAction(null);
}
} else {
require_once 'Zend/Pdf/Exception.php';
throw new Zend_Pdf_Exception('OpenAction has to be either PDF Action or Destination.');
}
}
}
/**
* Dump named destinations
*
* @todo Create a balanced tree instead of plain structure.
*/
protected function _dumpNamedDestinations()
{
ksort($this->_namedTargets, SORT_STRING);
$destArrayItems = array();
foreach ($this->_namedTargets as $name => $destination) {
$destArrayItems[] = new Zend_Pdf_Element_String($name);
if ($destination instanceof Zend_Pdf_Target) {
$destArrayItems[] = $destination->getResource();
} else {
require_once 'Zend/Pdf/Exception.php';
throw new Zend_Pdf_Exception('PDF named destinations must be a Zend_Pdf_Target object.');
}
}
$destArray = $this->_objFactory->newObject(new Zend_Pdf_Element_Array($destArrayItems));
$DestTree = $this->_objFactory->newObject(new Zend_Pdf_Element_Dictionary());
$DestTree->Names = $destArray;
$root = $this->_trailer->Root;
if ($root->Names === null) {
$root->touch();
$root->Names = $this->_objFactory->newObject(new Zend_Pdf_Element_Dictionary());
} else {
$root->Names->touch();
}
$root->Names->Dests = $DestTree;
}
/**
* Dump outlines recursively
*/
protected function _dumpOutlines()
{
$root = $this->_trailer->Root;
if ($root->Outlines === null) {
if (count($this->outlines) == 0) {
return;
} else {
$root->Outlines = $this->_objFactory->newObject(new Zend_Pdf_Element_Dictionary());
$root->Outlines->Type = new Zend_Pdf_Element_Name('Outlines');
$updateOutlinesNavigation = true;
}
} else {
$updateOutlinesNavigation = false;
if (count($this->_originalOutlines) != count($this->outlines)) {
// If original and current outlines arrays have different size then outlines list was updated
$updateOutlinesNavigation = true;
} else if ( !(array_keys($this->_originalOutlines) === array_keys($this->outlines)) ) {
// If original and current outlines arrays have different keys (with a glance to an order) then outlines list was updated
$updateOutlinesNavigation = true;
} else {
foreach ($this->outlines as $key => $outline) {
if ($this->_originalOutlines[$key] !== $outline) {
$updateOutlinesNavigation = true;
}
}
}
}
$lastOutline = null;
$openOutlinesCount = 0;
if ($updateOutlinesNavigation) {
$root->Outlines->touch();
$root->Outlines->First = null;
foreach ($this->outlines as $outline) {
if ($lastOutline === null) {
// First pass. Update Outlines dictionary First entry using corresponding value
$lastOutline = $outline->dumpOutline($this->_objFactory, $updateOutlinesNavigation, $root->Outlines);
$root->Outlines->First = $lastOutline;
} else {
// Update previous outline dictionary Next entry (Prev is updated within dumpOutline() method)
$currentOutlineDictionary = $outline->dumpOutline($this->_objFactory, $updateOutlinesNavigation, $root->Outlines, $lastOutline);
$lastOutline->Next = $currentOutlineDictionary;
$lastOutline = $currentOutlineDictionary;
}
$openOutlinesCount += $outline->openOutlinesCount();
}
$root->Outlines->Last = $lastOutline;
} else {
foreach ($this->outlines as $outline) {
$lastOutline = $outline->dumpOutline($this->_objFactory, $updateOutlinesNavigation, $root->Outlines, $lastOutline);
$openOutlinesCount += $outline->openOutlinesCount();
}
}
if ($openOutlinesCount != $this->_originalOpenOutlinesCount) {
$root->Outlines->touch;
$root->Outlines->Count = new Zend_Pdf_Element_Numeric($openOutlinesCount);
}
}
/**
* Create page object, attached to the PDF document.
* Method signatures:
*
* 1. Create new page with a specified pagesize.
* If $factory is null then it will be created and page must be attached to the document to be
* included into output.
* ---------------------------------------------------------
* new Zend_Pdf_Page(string $pagesize);
* ---------------------------------------------------------
*
* 2. Create new page with a specified pagesize (in default user space units).
* If $factory is null then it will be created and page must be attached to the document to be
* included into output.
* ---------------------------------------------------------
* new Zend_Pdf_Page(numeric $width, numeric $height);
* ---------------------------------------------------------
*
* @param mixed $param1
* @param mixed $param2
* @return Zend_Pdf_Page
*/
public function newPage($param1, $param2 = null)
{
require_once 'Zend/Pdf/Page.php';
if ($param2 === null) {
return new Zend_Pdf_Page($param1, $this->_objFactory);
} else {
return new Zend_Pdf_Page($param1, $param2, $this->_objFactory);
}
}
/**
* Return the document-level Metadata
* or null Metadata stream is not presented
*
* @return string
*/
public function getMetadata()
{
if ($this->_trailer->Root->Metadata !== null) {
return $this->_trailer->Root->Metadata->value;
} else {
return null;
}
}
/**
* Sets the document-level Metadata (mast be valid XMP document)
*
* @param string $metadata
*/
public function setMetadata($metadata)
{
$metadataObject = $this->_objFactory->newStreamObject($metadata);
$metadataObject->dictionary->Type = new Zend_Pdf_Element_Name('Metadata');
$metadataObject->dictionary->Subtype = new Zend_Pdf_Element_Name('XML');
$this->_trailer->Root->Metadata = $metadataObject;
$this->_trailer->Root->touch();
}
/**
* Return the document-level JavaScript
* or null if there is no JavaScript for this document
*
* @return string
*/
public function getJavaScript()
{
return $this->_javaScript;
}
/**
* Get open Action
* Returns Zend_Pdf_Target (Zend_Pdf_Destination or Zend_Pdf_Action object)
*
* @return Zend_Pdf_Target
*/
public function getOpenAction()
{
if ($this->_trailer->Root->OpenAction !== null) {
require_once 'Zend/Pdf/Target.php';
return Zend_Pdf_Target::load($this->_trailer->Root->OpenAction);
} else {
return null;
}