-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCpdf.php
5566 lines (4759 loc) · 187 KB
/
Cpdf.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
/**
* A PHP class to provide the basic functionality to create a pdf document without
* any requirement for additional modules.
*
* Extended by Orion Richardson to support Unicode / UTF-8 characters using
* TCPDF and others as a guide.
*
* @author Wayne Munro <pdf@ros.co.nz>
* @author Orion Richardson <orionr@yahoo.com>
* @author Helmut Tischer <htischer@weihenstephan.org>
* @author Ryan H. Masten <ryan.masten@gmail.com>
* @author Brian Sweeney <eclecticgeek@gmail.com>
* @author Fabien Ménager <fabien.menager@gmail.com>
* @license Public Domain http://creativecommons.org/licenses/publicdomain/
* @package Cpdf
*/
use FontLib\Font;
use FontLib\BinaryStream;
class Cpdf
{
/**
* @var integer The current number of pdf objects in the document
*/
public $numObj = 0;
/**
* @var array This array contains all of the pdf objects, ready for final assembly
*/
public $objects = array();
/**
* @var integer The objectId (number within the objects array) of the document catalog
*/
public $catalogId;
/**
* @var array Array carrying information about the fonts that the system currently knows about
* Used to ensure that a font is not loaded twice, among other things
*/
public $fonts = array();
/**
* @var string The default font metrics file to use if no other font has been loaded.
* The path to the directory containing the font metrics should be included
*/
public $defaultFont = './fonts/Helvetica.afm';
/**
* @string A record of the current font
*/
public $currentFont = '';
/**
* @var string The current base font
*/
public $currentBaseFont = '';
/**
* @var integer The number of the current font within the font array
*/
public $currentFontNum = 0;
/**
* @var integer
*/
public $currentNode;
/**
* @var integer Object number of the current page
*/
public $currentPage;
/**
* @var integer Object number of the currently active contents block
*/
public $currentContents;
/**
* @var integer Number of fonts within the system
*/
public $numFonts = 0;
/**
* @var integer Number of graphic state resources used
*/
private $numStates = 0;
/**
* @var array Number of graphic state resources used
*/
private $gstates = array();
/**
* @var array Current color for fill operations, defaults to inactive value,
* all three components should be between 0 and 1 inclusive when active
*/
public $currentColor = null;
/**
* @var array Current color for stroke operations (lines etc.)
*/
public $currentStrokeColor = null;
/**
* @var string Fill rule (nonzero or evenodd)
*/
public $fillRule = "nonzero";
/**
* @var string Current style that lines are drawn in
*/
public $currentLineStyle = '';
/**
* @var array Current line transparency (partial graphics state)
*/
public $currentLineTransparency = array("mode" => "Normal", "opacity" => 1.0);
/**
* array Current fill transparency (partial graphics state)
*/
public $currentFillTransparency = array("mode" => "Normal", "opacity" => 1.0);
/**
* @var array An array which is used to save the state of the document, mainly the colors and styles
* it is used to temporarily change to another state, then change back to what it was before
*/
public $stateStack = array();
/**
* @var integer Number of elements within the state stack
*/
public $nStateStack = 0;
/**
* @var integer Number of page objects within the document
*/
public $numPages = 0;
/**
* @var array Object Id storage stack
*/
public $stack = array();
/**
* @var integer Number of elements within the object Id storage stack
*/
public $nStack = 0;
/**
* an array which contains information about the objects which are not firmly attached to pages
* these have been added with the addObject function
*/
public $looseObjects = array();
/**
* array contains information about how the loose objects are to be added to the document
*/
public $addLooseObjects = array();
/**
* @var integer The objectId of the information object for the document
* this contains authorship, title etc.
*/
public $infoObject = 0;
/**
* @var integer Number of images being tracked within the document
*/
public $numImages = 0;
/**
* @var array An array containing options about the document
* it defaults to turning on the compression of the objects
*/
public $options = array('compression' => true);
/**
* @var integer The objectId of the first page of the document
*/
public $firstPageId;
/**
* @var integer The object Id of the procset object
*/
public $procsetObjectId;
/**
* @var array Store the information about the relationship between font families
* this used so that the code knows which font is the bold version of another font, etc.
* the value of this array is initialised in the constructor function.
*/
public $fontFamilies = array();
/**
* @var string Folder for php serialized formats of font metrics files.
* If empty string, use same folder as original metrics files.
* This can be passed in from class creator.
* If this folder does not exist or is not writable, Cpdf will be **much** slower.
* Because of potential trouble with php safe mode, folder cannot be created at runtime.
*/
public $fontcache = '';
/**
* @var integer The version of the font metrics cache file.
* This value must be manually incremented whenever the internal font data structure is modified.
*/
public $fontcacheVersion = 6;
/**
* @var string Temporary folder.
* If empty string, will attempt system tmp folder.
* This can be passed in from class creator.
*/
public $tmp = '';
/**
* @var string Track if the current font is bolded or italicised
*/
public $currentTextState = '';
/**
* @var string Messages are stored here during processing, these can be selected afterwards to give some useful debug information
*/
public $messages = '';
/**
* @var string The encryption array for the document encryption is stored here
*/
public $arc4 = '';
/**
* @var integer The object Id of the encryption information
*/
public $arc4_objnum = 0;
/**
* @var string The file identifier, used to uniquely identify a pdf document
*/
public $fileIdentifier = '';
/**
* @var boolean A flag to say if a document is to be encrypted or not
*/
public $encrypted = false;
/**
* @var string The encryption key for the encryption of all the document content (structure is not encrypted)
*/
public $encryptionKey = '';
/**
* @var array Array which forms a stack to keep track of nested callback functions
*/
public $callback = array();
/**
* @var integer The number of callback functions in the callback array
*/
public $nCallback = 0;
/**
* @var array Store label->id pairs for named destinations, these will be used to replace internal links
* done this way so that destinations can be defined after the location that links to them
*/
public $destinations = array();
/**
* @var array Store the stack for the transaction commands, each item in here is a record of the values of all the
* publiciables within the class, so that the user can rollback at will (from each 'start' command)
* note that this includes the objects array, so these can be large.
*/
public $checkpoint = '';
/**
* @var array Table of Image origin filenames and image labels which were already added with o_image().
* Allows to merge identical images
*/
public $imagelist = array();
/**
* @var boolean Whether the text passed in should be treated as Unicode or just local character set.
*/
public $isUnicode = false;
/**
* @var string the JavaScript code of the document
*/
public $javascript = '';
/**
* @var boolean whether the compression is possible
*/
protected $compressionReady = false;
/**
* @var array Current page size
*/
protected $currentPageSize = array("width" => 0, "height" => 0);
/**
* @var array All the chars that will be required in the font subsets
*/
protected $stringSubsets = array();
/**
* @var string The target internal encoding
*/
static protected $targetEncoding = 'iso-8859-1';
/**
* @var array The list of the core fonts
*/
static protected $coreFonts = array(
'courier',
'courier-bold',
'courier-oblique',
'courier-boldoblique',
'helvetica',
'helvetica-bold',
'helvetica-oblique',
'helvetica-boldoblique',
'times-roman',
'times-bold',
'times-italic',
'times-bolditalic',
'symbol',
'zapfdingbats'
);
/**
* Class constructor
* This will start a new document
*
* @param array $pageSize Array of 4 numbers, defining the bottom left and upper right corner of the page. first two are normally zero.
* @param boolean $isUnicode Whether text will be treated as Unicode or not.
* @param string $fontcache The font cache folder
* @param string $tmp The temporary folder
*/
function __construct($pageSize = array(0, 0, 612, 792), $isUnicode = false, $fontcache = '', $tmp = '')
{
$this->isUnicode = $isUnicode;
$this->fontcache = rtrim($fontcache, DIRECTORY_SEPARATOR."/\\");
$this->tmp = ($tmp !== '' ? $tmp : sys_get_temp_dir());
$this->newDocument($pageSize);
$this->compressionReady = function_exists('gzcompress');
if (in_array('Windows-1252', mb_list_encodings())) {
self::$targetEncoding = 'Windows-1252';
}
// also initialize the font families that are known about already
$this->setFontFamily('init');
// $this->fileIdentifier = md5('xxxxxxxx'.time());
}
/**
* Document object methods (internal use only)
*
* There is about one object method for each type of object in the pdf document
* Each function has the same call list ($id,$action,$options).
* $id = the object ID of the object, or what it is to be if it is being created
* $action = a string specifying the action to be performed, though ALL must support:
* 'new' - create the object with the id $id
* 'out' - produce the output for the pdf object
* $options = optional, a string or array containing the various parameters for the object
*
* These, in conjunction with the output function are the ONLY way for output to be produced
* within the pdf 'file'.
*/
/**
* Destination object, used to specify the location for the user to jump to, presently on opening
*
* @param $id
* @param $action
* @param string $options
* @return string|null
*/
protected function o_destination($id, $action, $options = '')
{
switch ($action) {
case 'new':
$this->objects[$id] = array('t' => 'destination', 'info' => array());
$tmp = '';
switch ($options['type']) {
case 'XYZ':
/** @noinspection PhpMissingBreakStatementInspection */
case 'FitR':
$tmp = ' ' . $options['p3'] . $tmp;
case 'FitH':
case 'FitV':
case 'FitBH':
/** @noinspection PhpMissingBreakStatementInspection */
case 'FitBV':
$tmp = ' ' . $options['p1'] . ' ' . $options['p2'] . $tmp;
case 'Fit':
case 'FitB':
$tmp = $options['type'] . $tmp;
$this->objects[$id]['info']['string'] = $tmp;
$this->objects[$id]['info']['page'] = $options['page'];
}
break;
case 'out':
$o = &$this->objects[$id];
$tmp = $o['info'];
$res = "\n$id 0 obj\n" . '[' . $tmp['page'] . ' 0 R /' . $tmp['string'] . "]\nendobj";
return $res;
}
return null;
}
/**
* set the viewer preferences
*
* @param $id
* @param $action
* @param string|array $options
* @return string|null
*/
protected function o_viewerPreferences($id, $action, $options = '')
{
switch ($action) {
case 'new':
$this->objects[$id] = array('t' => 'viewerPreferences', 'info' => array());
break;
case 'add':
$o = &$this->objects[$id];
foreach ($options as $k => $v) {
switch ($k) {
// Boolean keys
case 'HideToolbar':
case 'HideMenubar':
case 'HideWindowUI':
case 'FitWindow':
case 'CenterWindow':
case 'DisplayDocTitle':
case 'PickTrayByPDFSize':
$o['info'][$k] = (bool)$v;
break;
// Integer keys
case 'NumCopies':
$o['info'][$k] = (int)$v;
break;
// Name keys
case 'ViewArea':
case 'ViewClip':
case 'PrintClip':
case 'PrintArea':
$o['info'][$k] = (string)$v;
break;
// Named with limited valid values
case 'NonFullScreenPageMode':
if (!in_array($v, array('UseNone', 'UseOutlines', 'UseThumbs', 'UseOC'))) {
continue;
}
$o['info'][$k] = $v;
break;
case 'Direction':
if (!in_array($v, array('L2R', 'R2L'))) {
continue;
}
$o['info'][$k] = $v;
break;
case 'PrintScaling':
if (!in_array($v, array('None', 'AppDefault'))) {
continue;
}
$o['info'][$k] = $v;
break;
case 'Duplex':
if (!in_array($v, array('None', 'AppDefault'))) {
continue;
}
$o['info'][$k] = $v;
break;
// Integer array
case 'PrintPageRange':
// Cast to integer array
foreach ($v as $vK => $vV) {
$v[$vK] = (int)$vV;
}
$o['info'][$k] = array_values($v);
break;
}
}
break;
case 'out':
$o = &$this->objects[$id];
$res = "\n$id 0 obj\n<< ";
foreach ($o['info'] as $k => $v) {
if (is_string($v)) {
$v = '/' . $v;
} elseif (is_int($v)) {
$v = (string) $v;
} elseif (is_bool($v)) {
$v = ($v ? 'true' : 'false');
} elseif (is_array($v)) {
$v = '[' . implode(' ', $v) . ']';
}
$res .= "\n/$k $v";
}
$res .= "\n>>\n";
return $res;
}
return null;
}
/**
* define the document catalog, the overall controller for the document
*
* @param $id
* @param $action
* @param string|array $options
* @return string|null
*/
protected function o_catalog($id, $action, $options = '')
{
if ($action !== 'new') {
$o = &$this->objects[$id];
}
switch ($action) {
case 'new':
$this->objects[$id] = array('t' => 'catalog', 'info' => array());
$this->catalogId = $id;
break;
case 'outlines':
case 'pages':
case 'openHere':
case 'javascript':
$o['info'][$action] = $options;
break;
case 'viewerPreferences':
if (!isset($o['info']['viewerPreferences'])) {
$this->numObj++;
$this->o_viewerPreferences($this->numObj, 'new');
$o['info']['viewerPreferences'] = $this->numObj;
}
$vp = $o['info']['viewerPreferences'];
$this->o_viewerPreferences($vp, 'add', $options);
break;
case 'out':
$res = "\n$id 0 obj\n<< /Type /Catalog";
foreach ($o['info'] as $k => $v) {
switch ($k) {
case 'outlines':
$res .= "\n/Outlines $v 0 R";
break;
case 'pages':
$res .= "\n/Pages $v 0 R";
break;
case 'viewerPreferences':
$res .= "\n/ViewerPreferences $v 0 R";
break;
case 'openHere':
$res .= "\n/OpenAction $v 0 R";
break;
case 'javascript':
$res .= "\n/Names <</JavaScript $v 0 R>>";
break;
}
}
$res .= " >>\nendobj";
return $res;
}
return null;
}
/**
* object which is a parent to the pages in the document
*
* @param $id
* @param $action
* @param string $options
* @return string|null
*/
protected function o_pages($id, $action, $options = '')
{
if ($action !== 'new') {
$o = &$this->objects[$id];
}
switch ($action) {
case 'new':
$this->objects[$id] = array('t' => 'pages', 'info' => array());
$this->o_catalog($this->catalogId, 'pages', $id);
break;
case 'page':
if (!is_array($options)) {
// then it will just be the id of the new page
$o['info']['pages'][] = $options;
} else {
// then it should be an array having 'id','rid','pos', where rid=the page to which this one will be placed relative
// and pos is either 'before' or 'after', saying where this page will fit.
if (isset($options['id']) && isset($options['rid']) && isset($options['pos'])) {
$i = array_search($options['rid'], $o['info']['pages']);
if (isset($o['info']['pages'][$i]) && $o['info']['pages'][$i] == $options['rid']) {
// then there is a match
// make a space
switch ($options['pos']) {
case 'before':
$k = $i;
break;
case 'after':
$k = $i + 1;
break;
default:
$k = -1;
break;
}
if ($k >= 0) {
for ($j = count($o['info']['pages']) - 1; $j >= $k; $j--) {
$o['info']['pages'][$j + 1] = $o['info']['pages'][$j];
}
$o['info']['pages'][$k] = $options['id'];
}
}
}
}
break;
case 'procset':
$o['info']['procset'] = $options;
break;
case 'mediaBox':
$o['info']['mediaBox'] = $options;
// which should be an array of 4 numbers
$this->currentPageSize = array('width' => $options[2], 'height' => $options[3]);
break;
case 'font':
$o['info']['fonts'][] = array('objNum' => $options['objNum'], 'fontNum' => $options['fontNum']);
break;
case 'extGState':
$o['info']['extGStates'][] = array('objNum' => $options['objNum'], 'stateNum' => $options['stateNum']);
break;
case 'xObject':
$o['info']['xObjects'][] = array('objNum' => $options['objNum'], 'label' => $options['label']);
break;
case 'out':
if (count($o['info']['pages'])) {
$res = "\n$id 0 obj\n<< /Type /Pages\n/Kids [";
foreach ($o['info']['pages'] as $v) {
$res .= "$v 0 R\n";
}
$res .= "]\n/Count " . count($this->objects[$id]['info']['pages']);
if ((isset($o['info']['fonts']) && count($o['info']['fonts'])) ||
isset($o['info']['procset']) ||
(isset($o['info']['extGStates']) && count($o['info']['extGStates']))
) {
$res .= "\n/Resources <<";
if (isset($o['info']['procset'])) {
$res .= "\n/ProcSet " . $o['info']['procset'] . " 0 R";
}
if (isset($o['info']['fonts']) && count($o['info']['fonts'])) {
$res .= "\n/Font << ";
foreach ($o['info']['fonts'] as $finfo) {
$res .= "\n/F" . $finfo['fontNum'] . " " . $finfo['objNum'] . " 0 R";
}
$res .= "\n>>";
}
if (isset($o['info']['xObjects']) && count($o['info']['xObjects'])) {
$res .= "\n/XObject << ";
foreach ($o['info']['xObjects'] as $finfo) {
$res .= "\n/" . $finfo['label'] . " " . $finfo['objNum'] . " 0 R";
}
$res .= "\n>>";
}
if (isset($o['info']['extGStates']) && count($o['info']['extGStates'])) {
$res .= "\n/ExtGState << ";
foreach ($o['info']['extGStates'] as $gstate) {
$res .= "\n/GS" . $gstate['stateNum'] . " " . $gstate['objNum'] . " 0 R";
}
$res .= "\n>>";
}
$res .= "\n>>";
if (isset($o['info']['mediaBox'])) {
$tmp = $o['info']['mediaBox'];
$res .= "\n/MediaBox [" . sprintf(
'%.3F %.3F %.3F %.3F',
$tmp[0],
$tmp[1],
$tmp[2],
$tmp[3]
) . ']';
}
}
$res .= "\n >>\nendobj";
} else {
$res = "\n$id 0 obj\n<< /Type /Pages\n/Count 0\n>>\nendobj";
}
return $res;
}
return null;
}
/**
* define the outlines in the doc, empty for now
*
* @param $id
* @param $action
* @param string $options
* @return string|null
*/
protected function o_outlines($id, $action, $options = '')
{
if ($action !== 'new') {
$o = &$this->objects[$id];
}
switch ($action) {
case 'new':
$this->objects[$id] = array('t' => 'outlines', 'info' => array('outlines' => array()));
$this->o_catalog($this->catalogId, 'outlines', $id);
break;
case 'outline':
$o['info']['outlines'][] = $options;
break;
case 'out':
if (count($o['info']['outlines'])) {
$res = "\n$id 0 obj\n<< /Type /Outlines /Kids [";
foreach ($o['info']['outlines'] as $v) {
$res .= "$v 0 R ";
}
$res .= "] /Count " . count($o['info']['outlines']) . " >>\nendobj";
} else {
$res = "\n$id 0 obj\n<< /Type /Outlines /Count 0 >>\nendobj";
}
return $res;
}
return null;
}
/**
* an object to hold the font description
*
* @param $id
* @param $action
* @param string|array $options
* @return string|null
*/
protected function o_font($id, $action, $options = '')
{
if ($action !== 'new') {
$o = &$this->objects[$id];
}
switch ($action) {
case 'new':
$this->objects[$id] = array(
't' => 'font',
'info' => array(
'name' => $options['name'],
'fontFileName' => $options['fontFileName'],
'SubType' => 'Type1'
)
);
$fontNum = $this->numFonts;
$this->objects[$id]['info']['fontNum'] = $fontNum;
// deal with the encoding and the differences
if (isset($options['differences'])) {
// then we'll need an encoding dictionary
$this->numObj++;
$this->o_fontEncoding($this->numObj, 'new', $options);
$this->objects[$id]['info']['encodingDictionary'] = $this->numObj;
} else {
if (isset($options['encoding'])) {
// we can specify encoding here
switch ($options['encoding']) {
case 'WinAnsiEncoding':
case 'MacRomanEncoding':
case 'MacExpertEncoding':
$this->objects[$id]['info']['encoding'] = $options['encoding'];
break;
case 'none':
break;
default:
$this->objects[$id]['info']['encoding'] = 'WinAnsiEncoding';
break;
}
} else {
$this->objects[$id]['info']['encoding'] = 'WinAnsiEncoding';
}
}
if ($this->fonts[$options['fontFileName']]['isUnicode']) {
// For Unicode fonts, we need to incorporate font data into
// sub-sections that are linked from the primary font section.
// Look at o_fontGIDtoCID and o_fontDescendentCID functions
// for more information.
//
// All of this code is adapted from the excellent changes made to
// transform FPDF to TCPDF (http://tcpdf.sourceforge.net/)
$toUnicodeId = ++$this->numObj;
$this->o_contents($toUnicodeId, 'new', 'raw');
$this->objects[$id]['info']['toUnicode'] = $toUnicodeId;
$stream = <<<EOT
/CIDInit /ProcSet findresource begin
12 dict begin
begincmap
/CIDSystemInfo
<</Registry (Adobe)
/Ordering (UCS)
/Supplement 0
>> def
/CMapName /Adobe-Identity-UCS def
/CMapType 2 def
1 begincodespacerange
<0000> <FFFF>
endcodespacerange
1 beginbfrange
<0000> <FFFF> <0000>
endbfrange
endcmap
CMapName currentdict /CMap defineresource pop
end
end
EOT;
$res = "<</Length " . mb_strlen($stream, '8bit') . " >>\n";
$res .= "stream\n" . $stream . "\nendstream";
$this->objects[$toUnicodeId]['c'] = $res;
$cidFontId = ++$this->numObj;
$this->o_fontDescendentCID($cidFontId, 'new', $options);
$this->objects[$id]['info']['cidFont'] = $cidFontId;
}
// also tell the pages node about the new font
$this->o_pages($this->currentNode, 'font', array('fontNum' => $fontNum, 'objNum' => $id));
break;
case 'add':
foreach ($options as $k => $v) {
switch ($k) {
case 'BaseFont':
$o['info']['name'] = $v;
break;
case 'FirstChar':
case 'LastChar':
case 'Widths':
case 'FontDescriptor':
case 'SubType':
$this->addMessage('o_font ' . $k . " : " . $v);
$o['info'][$k] = $v;
break;
}
}
// pass values down to descendent font
if (isset($o['info']['cidFont'])) {
$this->o_fontDescendentCID($o['info']['cidFont'], 'add', $options);
}
break;
case 'out':
if ($this->fonts[$this->objects[$id]['info']['fontFileName']]['isUnicode']) {
// For Unicode fonts, we need to incorporate font data into
// sub-sections that are linked from the primary font section.
// Look at o_fontGIDtoCID and o_fontDescendentCID functions
// for more information.
//
// All of this code is adapted from the excellent changes made to
// transform FPDF to TCPDF (http://tcpdf.sourceforge.net/)
$res = "\n$id 0 obj\n<</Type /Font\n/Subtype /Type0\n";
$res .= "/BaseFont /" . $o['info']['name'] . "\n";
// The horizontal identity mapping for 2-byte CIDs; may be used
// with CIDFonts using any Registry, Ordering, and Supplement values.
$res .= "/Encoding /Identity-H\n";
$res .= "/DescendantFonts [" . $o['info']['cidFont'] . " 0 R]\n";
$res .= "/ToUnicode " . $o['info']['toUnicode'] . " 0 R\n";
$res .= ">>\n";
$res .= "endobj";
} else {
$res = "\n$id 0 obj\n<< /Type /Font\n/Subtype /" . $o['info']['SubType'] . "\n";
$res .= "/Name /F" . $o['info']['fontNum'] . "\n";
$res .= "/BaseFont /" . $o['info']['name'] . "\n";
if (isset($o['info']['encodingDictionary'])) {
// then place a reference to the dictionary
$res .= "/Encoding " . $o['info']['encodingDictionary'] . " 0 R\n";
} else {
if (isset($o['info']['encoding'])) {
// use the specified encoding
$res .= "/Encoding /" . $o['info']['encoding'] . "\n";
}
}
if (isset($o['info']['FirstChar'])) {
$res .= "/FirstChar " . $o['info']['FirstChar'] . "\n";
}
if (isset($o['info']['LastChar'])) {
$res .= "/LastChar " . $o['info']['LastChar'] . "\n";
}
if (isset($o['info']['Widths'])) {
$res .= "/Widths " . $o['info']['Widths'] . " 0 R\n";
}
if (isset($o['info']['FontDescriptor'])) {
$res .= "/FontDescriptor " . $o['info']['FontDescriptor'] . " 0 R\n";
}
$res .= ">>\n";
$res .= "endobj";
}
return $res;
}
return null;
}
/**
* a font descriptor, needed for including additional fonts
*
* @param $id
* @param $action
* @param string $options
* @return null|string
*/
protected function o_fontDescriptor($id, $action, $options = '')
{
if ($action !== 'new') {
$o = &$this->objects[$id];
}
switch ($action) {
case 'new':
$this->objects[$id] = array('t' => 'fontDescriptor', 'info' => $options);