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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
|
<?php
// PDF Report Generator
//
// used by the SAX parser to generate PDF reports from the XML report file.
//
// webtrees: Web based Family History software
// Copyright (C) 2014 webtrees development team.
//
// Derived from PhpGedView
// Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
use WT\Auth;
/**
* Main WT Report Class for PDF
*/
class WT_Report_PDF extends WT_Report_Base {
/**
* PDF compression - Zlib extension is required
*
* @var boolean const
*/
const compression = true;
/**
* If TRUE reduce the RAM memory usage by caching temporary data on filesystem (slower).
*
* @var boolean const
*/
const diskcache = false;
/**
* TRUE means that the input text is unicode (PDF)
*
* @var boolean const
*/
const unicode = true;
/**
* FALSE means that the full font is embedded, TRUE means only the used chars
* in TCPDF v5.9 font subsetting is a very slow process, this leads to larger files
*
* @var boolean const
*/
const subsetting = false;
/**
* A new object of the PDF class
*
* @var PDF
*/
public $pdf;
/**
* PDF Setup - WT_Report_PDF
*/
function setup() {
parent::setup();
// Setup the PDF class with custom size pages because WT supports more page sizes. If WT sends an unknown size name then the default would be A4
$this->pdf = new PDF($this->orientation, parent::unit, array(
$this->pagew,
$this->pageh
), self::unicode, "UTF-8", self::diskcache);
// Setup the PDF margins
$this->pdf->setMargins($this->leftmargin, $this->topmargin, $this->rightmargin);
$this->pdf->SetHeaderMargin($this->headermargin);
$this->pdf->SetFooterMargin($this->footermargin);
//Set auto page breaks
$this->pdf->SetAutoPageBreak(true, $this->bottommargin);
// Set font subsetting
$this->pdf->setFontSubsetting(self::subsetting);
// Setup PDF compression
$this->pdf->SetCompression(self::compression);
// Setup RTL support
$this->pdf->setRTL($this->rtl);
// Set the document information
// Only admin should see the version number
$appversion = WT_WEBTREES;
if (Auth::isAdmin()) {
$appversion .= " ".WT_VERSION;
}
$this->pdf->SetCreator($appversion . " (" . parent::wt_url . ")");
// Not implemented yet - WT_Report_Base::setup()
$this->pdf->SetAuthor($this->rauthor);
$this->pdf->SetTitle($this->title);
$this->pdf->SetSubject($this->rsubject);
$this->pdf->SetKeywords($this->rkeywords);
$this->pdf->setReport($this);
if ($this->showGenText) {
// The default style name for Generated by.... is 'genby'
$element = new CellPDF(0, 10, 0, "C", "", "genby", 1, ".", ".", 0, 0, "", "", true);
$element->addText($this->generatedby);
$element->setUrl(parent::wt_url);
$this->pdf->addFooter($element);
}
}
/**
* Add an element - WT_Report_PDF
*
* @param object|string $element Object or string
*
* @return int
*/
function addElement($element) {
if ($this->processing == "B") {
return $this->pdf->addBody($element);
} elseif ($this->processing == "H") {
return $this->pdf->addHeader($element);
} elseif ($this->processing == "F") {
return $this->pdf->addFooter($element);
}
return 0;
}
function run() {
$this->pdf->Body();
header('Expires:');
header('Pragma:');
header('Cache-control:');
$this->pdf->Output('webtrees-' . uniqid() . '.pdf', 'I');
}
/**
* Clear the Header - WT_Report_PDF
*/
function clearHeader() {
$this->pdf->clearHeader();
}
/**
* Clear the Page Header - WT_Report_PDF
*/
function clearPageHeader() {
$this->pdf->clearPageHeader();
}
/**
* Create a new Cell object - WT_Report_PDF
*
* @param int $width cell width (expressed in points)
* @param int $height cell height (expressed in points)
* @param mixed $border Border style
* @param string $align Text alignement
* @param string $bgcolor Background color code
* @param string $style The name of the text style
* @param int $ln Indicates where the current position should go after the call
* @param mixed $top Y-position
* @param mixed $left X-position
* @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 1
* @param int $stretch Stretch carachter mode
* @param string $bocolor Border color
* @param string $tcolor Text color
* @param boolean $reseth
*
* @return CellPDF
*/
function createCell(
$width, $height, $border, $align, $bgcolor, $style, $ln, $top, $left, $fill, $stretch, $bocolor, $tcolor, $reseth
) {
return new CellPDF($width, $height, $border, $align, $bgcolor, $style, $ln, $top, $left, $fill, $stretch, $bocolor, $tcolor, $reseth);
}
/**
* Create a new TextBox object - WT_Report_PDF
*
* @param float $width Text box width
* @param float $height Text box height
* @param boolean $border
* @param string $bgcolor Background color code in HTML
* @param boolean $newline
* @param mixed $left
* @param mixed $top
* @param boolean $pagecheck
* @param string $style
* @param boolean $fill
* @param boolean $padding
* @param boolean $reseth
*
* @return TextBoxPDF
*/
function createTextBox(
$width, $height, $border, $bgcolor, $newline, $left, $top, $pagecheck, $style, $fill, $padding, $reseth
) {
return new TextBoxPDF($width, $height, $border, $bgcolor, $newline, $left, $top, $pagecheck, $style, $fill, $padding, $reseth);
}
/**
* Create a new Text object- WT_Report_PDF
*
* @param string $style The name of the text style
* @param string $color HTML color code
*
* @return TextPDF
*/
function createText($style, $color) {
return new TextPDF($style, $color);
}
/**
* Create a new Footnote object - WT_Report_PDF
*
* @param string $style Style name
*
* @return FootnotePDF
*/
function createFootnote($style) {
return new FootnotePDF($style);
}
/**
* Create a new Page Header object - WT_Report_PDF
*
* @return PageHeaderPDF
*/
function createPageHeader() {
return new PageHeaderPDF();
}
/**
* Create a new image object - WT_Report_PDF
*
* @param string $file Filename
* @param mixed $x
* @param mixed $y
* @param int $w Image width
* @param int $h Image height
* @param string $align L:left, C:center, R:right or empty to use x/y
* @param string $ln T:same line, N:next line
*
* @return ImagePDF
*/
function createImage($file, $x, $y, $w, $h, $align, $ln) {
return new ImagePDF($file, $x, $y, $w, $h, $align, $ln);
}
/**
* Create a new image object from WT_Media Object - WT_Report_PDF
*
* @param string $mediaobject WT_Media Object
* @param mixed $x
* @param mixed $y
* @param int $w Image width
* @param int $h Image height
* @param string $align L:left, C:center, R:right or empty to use x/y
* @param string $ln T:same line, N:next line
*
* @return ImagePDF
*/
function createImageFromObject($mediaobject, $x, $y, $w, $h, $align, $ln) {
return new ImagePDF($mediaobject->getServerFilename('thumb'), $x, $y, $w, $h, $align, $ln);
}
/**
* Create a new line object - WT_Report_PDF
*
* @param mixed $x1
* @param mixed $y1
* @param mixed $x2
* @param mixed $y2
*
* @return LinePDF
*/
function createLine($x1, $y1, $x2, $y2) {
return new LinePDF($x1, $y1, $x2, $y2);
}
/**
* @param $tag
* @param $attrs
*
* @return HtmlPDF
*/
function createHTML($tag, $attrs) {
return new HtmlPDF($tag, $attrs);
}
} //-- end Report
/**
* WT Report PDF Class
*
* This class inherits from the TCPDF class and is used to generate the PDF document
*/
class PDF extends TCPDF {
/**
* Array of elements in the header
*
* @var array
*/
public $headerElements = array();
/**
* Array of elements in the page header
*
* @var array
*/
public $pageHeaderElements = array();
/**
* Array of elements in the footer
*
* @var array
*/
public $footerElements = array();
/**
* Array of elements in the body
*
* @var array
*/
public $bodyElements = array();
/**
* Array of elements in the footer notes
*
* @var array
*/
public $printedfootnotes = array();
/**
* Currently used style name
*
* @var string
*/
public $currentStyle;
/**
* The last cell height
*
* @var int
*/
public $lastCellHeight = 0;
/**
* The largest font size within a TextBox
* to calculate the height
*
* @var int
*/
public $largestFontHeight = 0;
/**
* The last pictures page number
*
* @var int
*/
public $lastpicpage = 0;
public $wt_report;
/**
* PDF Header -PDF
*/
function Header() {
foreach ($this->headerElements as $element) {
if (is_object($element)) {
$element->render($this);
} elseif (is_string($element) && $element == "footnotetexts") {
$this->Footnotes();
} elseif (is_string($element) && $element == "addpage") {
$this->newPage();
}
}
foreach ($this->pageHeaderElements as $element) {
if (is_object($element)) {
$element->render($this);
} elseif (is_string($element) && $element == "footnotetexts") {
$this->Footnotes();
} elseif (is_string($element) && $element == "addpage") {
$this->newPage();
}
}
}
/**
* PDF Body -PDF
*/
function Body() {
$this->AddPage();
foreach ($this->bodyElements as $key => $element) {
if (is_object($element)) {
$element->render($this);
} elseif (is_string($element) && $element == "footnotetexts") {
$this->Footnotes();
} elseif (is_string($element) && $element == "addpage") {
$this->newPage();
}
// Delete used elements in hope to reduce 'some' memory usage
unset($this->bodyElements[$key]);
}
}
/**
* PDF Footnotes -PDF
*/
function Footnotes() {
foreach ($this->printedfootnotes as $element) {
if (($this->GetY() + $element->getFootnoteHeight($this)) > $this->getPageHeight()) {
$this->AddPage();
}
$element->renderFootnote($this);
if ($this->GetY() > $this->getPageHeight()) {
$this->AddPage();
}
}
}
/**
* PDF Footer -PDF
*/
function Footer() {
foreach ($this->footerElements as $element) {
if (is_object($element)) {
$element->render($this);
} elseif (is_string($element) && $element == "footnotetexts") {
$this->Footnotes();
} elseif (is_string($element) && $element == "addpage") {
$this->newPage();
}
}
}
/**
* Add an element to the Header -PDF
*
* @param object|string $element
*
* @return int The number of the Header elements
*/
function addHeader($element) {
$this->headerElements[] = $element;
return count($this->headerElements) - 1;
}
/**
* Add an element to the Page Header -PDF
*
* @param object|string $element
*
* @return int The number of the Page Header elements
*/
function addPageHeader($element) {
$this->pageHeaderElements[] = $element;
return count($this->pageHeaderElements) - 1;
}
/**
* Add an element to the Body -PDF
*
* @param object|string $element
*
* @return int The number of the Body elements
*/
function addBody($element) {
$this->bodyElements[] = $element;
return count($this->bodyElements) - 1;
}
/**
* Add an element to the Footer -PDF
*
* @param object|string $element
*
* @return int The number of the Footer elements
*/
function addFooter($element) {
$this->footerElements[] = $element;
return count($this->footerElements) - 1;
}
function removeHeader($index) {
unset($this->headerElements[$index]);
}
function removePageHeader($index) {
unset($this->pageHeaderElements[$index]);
}
function removeBody($index) {
unset($this->bodyElements[$index]);
}
function removeFooter($index) {
unset($this->footerElements[$index]);
}
/**
* Clear the Header -PDF
*/
function clearHeader() {
unset($this->headerElements);
$this->headerElements = array();
}
/**
* Clear the Page Header -PDF
*/
function clearPageHeader() {
unset($this->pageHeaderElements);
$this->pageHeaderElements = array();
}
function setReport($r) {
$this->wt_report = $r;
}
/**
* Get the currently used style name -PDF
*
* @return string
*/
function getCurrentStyle() {
return $this->currentStyle;
}
/**
* Setup a style for usage -PDF
*
* @param string $s Style name
*/
function setCurrentStyle($s) {
$this->currentStyle = $s;
$style = $this->wt_report->getStyle($s);
$this->SetFont($style['font'], $style['style'], $style['size']);
}
/**
* Get the style -PDF
*
* @param string $s Style name
*
* @return array
*/
function getStyle($s) {
if (!isset($this->wt_report->Styles[$s])) {
$s = $this->getCurrentStyle();
$this->wt_report->Styles[$s] = $s;
}
return $this->wt_report->Styles[$s];
}
/**
* Add margin when static horizontal position is used -PDF
* RTL supported
*
* @param float $x Static position
*
* @return float
*/
function addMarginX($x) {
$m = $this->getMargins();
if ($this->getRTL()) {
$x += $m['right'];
} else {
$x += $m['left'];
}
$this->SetX($x);
return $x;
}
/**
* Get the maximum line width to draw from the curren position -PDF
* RTL supported
*
* @return float
*/
function getMaxLineWidth() {
$m = $this->getMargins();
if ($this->getRTL()) {
return ($this->getRemainingWidth() + $m['right']);
} else {
return ($this->getRemainingWidth() + $m['left']);
}
}
function getFootnotesHeight() {
$h = 0;
foreach ($this->printedfootnotes as $element) {
$h += $element->getHeight($this);
}
return $h;
}
/**
* Returns the the current font size height -PDF
*
* @return int
*/
function getCurrentStyleHeight() {
if (empty($this->currentStyle)) {
return $this->wt_report->defaultFontSize;
}
$style = $this->wt_report->getStyle($this->currentStyle);
return $style['size'];
}
/**
* Checks the Footnote and numbers them
*
* @param object $footnote
*
* @return boolean false if not numbered befor | object if already numbered
*/
function checkFootnote($footnote) {
$ct = count($this->printedfootnotes);
$val = $footnote->getValue();
$i = 0;
while ($i < $ct) {
if ($this->printedfootnotes[$i]->getValue() == $val) {
// If this footnote already exist then set up the numbers for this object
$footnote->setNum($i + 1);
$footnote->setAddlink($i + 1);
return $this->printedfootnotes[$i];
}
$i++;
}
// If this Footnote has not been set up yet
$footnote->setNum($ct + 1);
$footnote->setAddlink($this->AddLink());
$this->printedfootnotes[] = $footnote;
return false;
}
/**
* Used this function instead of AddPage()
* This function will make sure that images will not be overwritten
*/
function newPage() {
if ($this->lastpicpage > $this->getPage()) {
$this->setPage($this->lastpicpage);
}
$this->AddPage();
}
/*******************************************
* TCPDF protected functions
*******************************************/
/**
* Add a page if needed -PDF
*
* @param $height Cell height. Default value: 0
*
* @return boolean true in case of page break, false otherwise
*/
function checkPageBreakPDF($height) {
return $this->checkPageBreak($height);
}
/**
* Returns the remaining width between the current position and margins -PDF
*
* @return float Remaining width
*/
function getRemainingWidthPDF() {
return $this->getRemainingWidth();
}
} //-- END PDF
/**
* Cell element - PDF
*/
class CellPDF extends Cell {
/**
* PDF Cell renderer
*
* @param PDF $pdf
*
* @return void
*/
function render($pdf) {
/**
* Use these variables to update/manipulate values
* Repeted classes would reupdate all their class variables again, Header/Page Header/Footer
* This is the bugfree version
*/
$cX = 0; // Class Left
// Set up the text style
if (($pdf->getCurrentStyle()) != ($this->styleName)) {
$pdf->setCurrentStyle($this->styleName);
}
$temptext = str_replace("#PAGENUM#", $pdf->PageNo(), $this->text);
// underline «title» part of Source item
$temptext = str_replace(array('«', '»'), array('<u>', '</u>'), $temptext);
$match = array();
// Indicates if the cell background must be painted (1) or transparent (0)
if ($this->fill == 1) {
if (!empty($this->bgcolor)) {
// HTML color to RGB
if (preg_match("/#?(..)(..)(..)/", $this->bgcolor, $match)) {
$r = hexdec($match[1]);
$g = hexdec($match[2]);
$b = hexdec($match[3]);
$pdf->SetFillColor($r, $g, $b);
}
} // If no color set then don't fill
else {
$this->fill = 0;
}
}
// Paint the Border color if set
if (!empty($this->bocolor)) {
// HTML color to RGB
if (preg_match("/#?(..)(..)(..)/", $this->bocolor, $match)) {
$r = hexdec($match[1]);
$g = hexdec($match[2]);
$b = hexdec($match[3]);
$pdf->SetDrawColor($r, $g, $b);
}
}
// Paint the text color or they might use inherited colors by the previous function
if (preg_match("/#?(..)(..)(..)/", $this->tcolor, $match)) {
$r = hexdec($match[1]);
$g = hexdec($match[2]);
$b = hexdec($match[3]);
$pdf->SetTextColor($r, $g, $b);
} else {
$pdf->SetTextColor(0, 0, 0);
}
// If current position (left)
if ($this->left == ".") {
$cX = $pdf->GetX();
} // For static position add margin (also updates X)
else {
$cX = $pdf->addMarginX($this->left);
}
// Check the width if set to page wide OR set by xml to larger then page wide
if (($this->width == 0) or ($this->width > $pdf->getRemainingWidthPDF())) {
$this->width = $pdf->getRemainingWidthPDF();
}
// For current position
if ($this->top == ".") {
$this->top = $pdf->GetY();
} else {
$pdf->SetY($this->top);
}
// Check the last cell height and adjust the current cell height if needed
if ($pdf->lastCellHeight > $this->height) {
$this->height = $pdf->lastCellHeight;
}
// Check for pagebreak
if (!empty($temptext)) {
$cHT = $pdf->getNumLines($temptext, $this->width);
$cHT = $cHT * $pdf->getCellHeightRatio() * $pdf->getCurrentStyleHeight();
$cM = $pdf->getMargins();
// Add padding
if (is_array($cM['cell'])) {
$cHT += ($cM['padding_bottom'] + $cM['padding_top']);
} else {
$cHT += ($cM['cell'] * 2);
}
// Add a new page if needed
if ($pdf->checkPageBreakPDF($cHT)) {
$this->top = $pdf->GetY();
}
$temptext = spanLTRRTL($temptext, "BOTH");
}
// HTML ready - last value is true
$pdf->MultiCell(
$this->width,
$this->height,
$temptext,
$this->border,
$this->align,
$this->fill,
$this->newline,
$cX,
$this->top,
$this->reseth,
$this->stretch,
true
);
// Reset the last cell height for the next line
if ($this->newline >= 1) {
$pdf->lastCellHeight = 0;
} // OR save the last height if heigher then before
elseif ($pdf->lastCellHeight < $pdf->getLastH()) {
$pdf->lastCellHeight = $pdf->getLastH();
}
// Set up the url link if exists ontop of the cell
if (!empty($this->url)) {
$pdf->Link($cX, $this->top, $this->width, $this->height, $this->url);
}
// Reset the border and the text color to black or they will be inherited
$pdf->SetDrawColor(0, 0, 0);
$pdf->SetTextColor(0, 0, 0);
}
}
/**
* HTML element - PDF Report
*/
class HtmlPDF extends Html {
function render($pdf, $sub = false) {
if (!empty($this->attrs['style'])) {
$pdf->setCurrentStyle($this->attrs['style']);
}
if (!empty($this->attrs['width'])) {
$this->attrs['width'] *= 3.9;
}
$this->text = $this->getStart() . $this->text;
foreach ($this->elements as $element) {
if (is_string($element) && $element == "footnotetexts") {
$pdf->Footnotes();
} elseif (is_string($element) && $element == "addpage") {
$pdf->newPage();
} elseif ($element->get_type() == "Html") {
$this->text .= $element->render($pdf, true);
} else {
$element->render($pdf);
}
}
$this->text .= $this->getEnd();
if ($sub) {
return $this->text;
}
$pdf->writeHTML($this->text); //prints 2 empty cells in the Expanded Relatives report
return 0;
}
}
/**
* TextBox element
*/
class TextBoxPDF extends TextBox {
/**
* PDF Text Box renderer
*
* @param PDF $pdf
*
* @return bool|int
*/
function render($pdf) {
$newelements = array();
$lastelement = "";
$footnote_element = array();
// Element counter
$cE = count($this->elements);
//-- collapse duplicate elements
for ($i = 0; $i < $cE; $i++) {
$element = $this->elements[$i];
if (is_object($element)) {
if ($element->get_type() == "Text") {
if (!empty($footnote_element)) {
ksort($footnote_element);
foreach ($footnote_element as $links) {
$newelements[] = $links;
}
$footnote_element = array();
}
if (empty($lastelement)) {
$lastelement = $element;
} else {
// Checking if the Text has the same style
if ($element->getStyleName() == $lastelement->getStyleName()) {
$lastelement->addText(str_replace("\n", "<br>", $element->getValue()));
} elseif (!empty($lastelement)) {
$newelements[] = $lastelement;
$lastelement = $element;
}
}
} // Collect the Footnote links
elseif ($element->get_type() == "Footnote") {
// Check if the Footnote has been set with it’s link number
$pdf->checkFootnote($element);
// Save first the last element if any
if (!empty($lastelement)) {
$newelements[] = $lastelement;
$lastelement = array();
}
// Save the Footnote with it’s link number as key for sorting later
$footnote_element[$element->num] = $element;
} //-- do not keep empty footnotes
elseif (($element->get_type() != "Footnote") || (trim($element->getValue()) != "")) {
if (!empty($footnote_element)) {
ksort($footnote_element);
foreach ($footnote_element as $links) {
$newelements[] = $links;
}
$footnote_element = array();
}
if (!empty($lastelement)) {
$newelements[] = $lastelement;
$lastelement = array();
}
$newelements[] = $element;
}
} else {
if (!empty($lastelement)) {
$newelements[] = $lastelement;
$lastelement = array();
}
if (!empty($footnote_element)) {
ksort($footnote_element);
foreach ($footnote_element as $links) {
$newelements[] = $links;
}
$footnote_element = array();
}
$newelements[] = $element;
}
}
if (!empty($lastelement)) {
$newelements[] = $lastelement;
}
if (!empty($footnote_element)) {
ksort($footnote_element);
foreach ($footnote_element as $links) {
$newelements[] = $links;
}
}
$this->elements = $newelements;
unset($footnote_element, $lastelement, $links, $newelements);
/**
* Use these variables to update/manipulate values
* Repeted classes would reupdate all their class variables again, Header/Page Header/Footer
* This is the bugfree version
*/
$cH = 0; // Class Height
$cW = 0; // Class Width
$cX = 0; // Class Left
$cY = 0; // Class Top
// Used with line breaks and cell height calculation within this box
$pdf->largestFontHeight = 0;
// If current position (left)
if ($this->left == ".") {
$cX = $pdf->GetX();
} // For static position add margin (returns and updates X)
else {
$cX = $pdf->addMarginX($this->left);
}
// If current position (top)
if ($this->top == ".") {
$cY = $pdf->GetY();
} else {
$cY = $this->top;
$pdf->SetY($cY);
}
// Check the width if set to page wide OR set by xml to larger then page width (margin)
if (($this->width == 0) or ($this->width > $pdf->getRemainingWidthPDF())) {
$cW = $pdf->getRemainingWidthPDF();
} else {
$cW = $this->width;
}
// Save the original margins
$cM = $pdf->getMargins();
// Use cell padding to wrap the width
// Temp Width with cell padding
if (is_array($cM['cell'])) {
$cWT = $cW - ($cM['padding_left'] + $cM['padding_right']);
} else {
$cWT = $cW - ($cM['cell'] * 2);
}
// Element height (exept text)
$eH = 0;
$w = 0;
// Temp Height
$cHT = 0;
//-- $lw is an array
// 0 => last line width
// 1 => 1 if text was wrapped, 0 if text did not wrap
// 2 => number of LF
$lw = array();
// Element counter
$cE = count($this->elements);
//-- calculate the text box height + width
for ($i = 0; $i < $cE; $i++) {
if (is_object($this->elements[$i])) {
$ew = $this->elements[$i]->setWrapWidth($cWT - $w, $cWT);
if ($ew == $cWT) {
$w = 0;
}
$lw = $this->elements[$i]->getWidth($pdf);
// Text is already gets the # LF
$cHT += $lw[2];
if ($lw[1] == 1) {
$w = $lw[0];
} elseif ($lw[1] == 2) {
$w = 0;
} else {
$w += $lw[0];
}
if ($w > $cWT) {
$w = $lw[0];
}
// Footnote is at the bottom of the page. No need to calculate it’s height or wrap the text!
// We are changing the margins anyway!
// For anything else but text (images), get the height
$eH += $this->elements[$i]->getHeight($pdf);
}
//else {
//$h += $pdf->getFootnotesHeight();
//}
}
// Add up what’s the final height
$cH = $this->height;
// If any element exist
if ($cE > 0) {
// Check if this is text or some other element, like images
if ($eH == 0) {
// This is text elements. Number of LF but at least one line
$cHT = ($cHT + 1) * $pdf->getCellHeightRatio();
// Calculate the cell hight with the largest font size used within this Box
$cHT = $cHT * $pdf->largestFontHeight;
// Add cell padding
if ($this->padding) {
if (is_array($cM['cell'])) {
$cHT += ($cM['padding_bottom'] + $cM['padding_top']);
} else {
$cHT += ($cM['cell'] * 2);
}
}
if ($cH < $cHT) {
$cH = $cHT;
}
} // This is any other element
elseif ($cH < $eH) {
$cH = $eH;
}
}
// Finaly, check the last cells height
if ($cH < $pdf->lastCellHeight) {
$cH = $pdf->lastCellHeight;
}
// Add a new page if needed
if ($this->pagecheck) {
// Reset last cell height or Header/Footer will inherit it, in case of pagebreak
$pdf->lastCellHeight = 0;
if ($pdf->checkPageBreakPDF($cH)) {
$cY = $pdf->GetY();
}
}
// Setup the border and background color
$cS = ""; // Class Style
if ($this->border) {
$cS = "D";
} // D or empty string: Draw (default)
$match = array();
// Fill the background
if ($this->fill) {
if (!empty($this->bgcolor)) {
if (preg_match("/#?(..)(..)(..)/", $this->bgcolor, $match)) {
$cS .= "F"; // F: Fill the background
$r = hexdec($match[1]);
$g = hexdec($match[2]);
$b = hexdec($match[3]);
$pdf->SetFillColor($r, $g, $b);
}
}
}
// Clean up a bit
unset($lw, $w, $match, $cE, $eH);
// Draw the border
if (!empty($cS)) {
if (!$pdf->getRTL()) {
$cXM = $cX;
} else {
$cXM = ($pdf->getPageWidth()) - $cX - $cW;
}
//echo "<br>cX=".$cX." cXM=".$cXM." cW=".$cW." LW=".$pdf->getPageWidth()." RW=".$pdf->getRemainingWidthPDF()." MLW=".$pdf->getMaxLineWidth();
$pdf->Rect($cXM, $cY, $cW, $cH, $cS);
}
// Add cell padding if set and if any text (element) exist
if ($this->padding) {
if ($cHT > 0) {
if (is_array($cM['cell'])) {
$pdf->SetY($cY + $cM['padding_top']);
} else {
$pdf->SetY($cY + $cM['cell']);
}
}
}
// Change the margins X, Width
if (!$pdf->getRTL()) {
if ($this->padding) {
if (is_array($cM['cell'])) {
$pdf->SetLeftMargin($cX + $cM['padding_left']);
} else {
$pdf->SetLeftMargin($cX + $cM['cell']);
}
$pdf->SetRightMargin($pdf->getRemainingWidthPDF() - $cW + $cM['right']);
} else {
$pdf->SetLeftMargin($cX);
$pdf->SetRightMargin($pdf->getRemainingWidthPDF() - $cW + $cM['right']);
}
} else {
if ($this->padding) {
if (is_array($cM['cell'])) {
$pdf->SetRightMargin($cX + $cM['padding_right']);
} else {
$pdf->SetRightMargin($cX + $cM['cell']);
}
$pdf->SetLeftMargin($pdf->getRemainingWidthPDF() - $cW + $cM['left']);
} else {
$pdf->SetRightMargin($cX);
$pdf->SetLeftMargin($pdf->getRemainingWidthPDF() - $cW + $cM['left']);
}
}
// Save the current page number
$cPN = $pdf->getPage();
// Render the elements (write text, print picture...)
foreach ($this->elements as $element) {
if (is_object($element)) {
$element->render($pdf);
} elseif (is_string($element) and $element == "footnotetexts") {
$pdf->Footnotes();
} elseif (is_string($element) and $element == "addpage") {
$pdf->newPage();
}
}
// Restore the margins
$pdf->SetLeftMargin($cM['left']);
$pdf->SetRightMargin($cM['right']);
// This will be mostly used to trick the multiple images last height
if ($this->reseth) {
$cH = 0;
// This can only happen with multiple images and with pagebreak
if ($cPN != $pdf->getPage()) {
$pdf->setPage($cPN);
}
}
// New line and some clean up
if (!$this->newline) {
$pdf->SetXY(($cX + $cW), $cY);
$pdf->lastCellHeight = $cH;
} else {
// addMarginX() also updates X
$pdf->addMarginX(0);
$pdf->SetY($cY + $cH);
$pdf->lastCellHeight = 0;
}
return true;
}
}
/**
* Text element
*/
class TextPDF extends Text {
/**
* PDF Text renderer
*
* @param PDF $pdf
*
* @return void
*/
function render($pdf) {
// Set up the style
if ($pdf->getCurrentStyle() != $this->styleName) {
$pdf->setCurrentStyle($this->styleName);
}
$temptext = str_replace("#PAGENUM#", $pdf->PageNo(), $this->text);
// underline «title» part of Source item
$temptext = str_replace(array('«', '»'), array('<u>', '</u>'), $temptext);
// Paint the text color or they might use inherited colors by the previous function
$match = array();
if (preg_match("/#?(..)(..)(..)/", $this->color, $match)) {
$r = hexdec($match[1]);
$g = hexdec($match[2]);
$b = hexdec($match[3]);
$pdf->SetTextColor($r, $g, $b);
} else {
$pdf->SetTextColor(0, 0, 0);
}
$temptext = spanLTRRTL($temptext, "BOTH");
$temptext = str_replace(
array('<br><span dir="rtl" >', '<br><span dir="ltr" >', '> ', ' <'),
array('<span dir="rtl" ><br>', '<span dir="ltr" ><br>', '> ', ' <'),
$temptext
);
$pdf->writeHTML(
$temptext,
false,
false,
true,
false,
""
); //change height - line break etc. - the form is mirror on rtl pages
// Reset the text color to black or it will be inherited
$pdf->SetTextColor(0, 0, 0);
}
/**
* Returns the height in points of the text element
*
* The height is already calculated in getWidth()
*
* @param PDF $pdf
*
* @return float 0
*/
function getHeight($pdf) {
return 0;
}
/**
* Splits the text into lines if necessary to fit into a giving cell
*
* @param PDF $pdf
*
* @return array
*/
function getWidth($pdf) {
// Setup the style name, a font must be selected to calculate the width
if ($pdf->getCurrentStyle() != $this->styleName) {
$pdf->setCurrentStyle($this->styleName);
}
// Check for the largest font size in the box
$fsize = $pdf->getCurrentStyleHeight();
if ($fsize > $pdf->largestFontHeight) {
$pdf->largestFontHeight = $fsize;
}
// Get the line width
$lw = $pdf->GetStringWidth($this->text);
// Line Feed counter - Number of lines in the text
$lfct = substr_count($this->text, "\n") + 1;
// If there is still remaining wrap width...
if ($this->wrapWidthRemaining > 0) {
// Check with line counter too!
// but floor the $wrapWidthRemaining first to keep it bugfree!
$wrapWidthRemaining = (int) ($this->wrapWidthRemaining);
if (($lw >= ($wrapWidthRemaining)) or ($lfct > 1)) {
$newtext = "";
$lines = explode("\n", $this->text);
// Go throught the text line by line
foreach ($lines as $line) {
// Line width in points + a little margin
$lw = $pdf->GetStringWidth($line);
// If the line has to be wraped
if ($lw >= $wrapWidthRemaining) {
$words = explode(" ", $line);
$addspace = count($words);
$lw = 0;
foreach ($words as $word) {
$addspace--;
$lw += $pdf->GetStringWidth($word . " ");
if ($lw <= $wrapWidthRemaining) {
$newtext .= $word;
if ($addspace != 0) {
$newtext .= " ";
}
} else {
$lw = $pdf->GetStringWidth($word . " ");
$newtext .= "\n$word";
if ($addspace != 0) {
$newtext .= " ";
}
// Reset the wrap width to the cell width
$wrapWidthRemaining = $this->wrapWidthCell;
}
}
} else {
$newtext .= $line;
}
// Check the Line Feed counter
if ($lfct > 1) {
// Add a new line as long as it’s not the last line
$newtext .= "\n";
// Reset the line width
$lw = 0;
// Reset the wrap width to the cell width
$wrapWidthRemaining = $this->wrapWidthCell;
}
$lfct--;
}
$this->text = $newtext;
$lfct = substr_count($this->text, "\n");
return array($lw, 1, $lfct);
}
}
$l = 0;
$lfct = substr_count($this->text, "\n");
if ($lfct > 0) {
$l = 2;
}
return array($lw, $l, $lfct);
}
}
/**
* Footnote element
*/
class FootnotePDF extends Footnote {
/**
* PDF Footnotes number renderer
*
* @param PDF $pdf
*
* @return void
*/
function render($pdf) {
$pdf->setCurrentStyle("footnotenum");
$pdf->Write($pdf->getCurrentStyleHeight(), $this->numText, $this->addlink); //source link numbers after name
}
/**
* Write the Footnote text
* Uses style name "footnote" by default
*
* @param PDF $pdf
*
* @return void
*/
function renderFootnote($pdf) {
if ($pdf->getCurrentStyle() != $this->styleName) {
$pdf->setCurrentStyle($this->styleName);
}
$temptext = str_replace("#PAGENUM#", $pdf->PageNo(), $this->text);
// Set the link to this y/page position
$pdf->SetLink($this->addlink, -1, -1);
// Print first the source number
// working
if ($pdf->getRTL()) {
$pdf->writeHTML("<span> ." . $this->num . "</span>", false, false, false, false, "");
} else {
$temptext = "<span>" . $this->num . ". </span>" . $temptext;
}
// underline «title» part of Source item
$temptext = str_replace(array('«', '»'), array('<u>', '</u>'), $temptext);
$pdf->writeHTML($temptext, true, false, true, false, '');
}
/**
* Returns the height in points of the Footnote element
*
* @param PDF $pdf
*
* @return float $h
*/
function getFootnoteHeight($pdf) {
//$style = $pdf->getStyle($this->styleName);
//$ct = substr_count($this->numText, "\n");
//if ($ct > 0) {
//$ct += 1;
//}
//$h = ($style['size'] * $ct);
//return $h;
return 0;
}
/**
* Splits the text into lines to fit into a giving cell
* and returns the last lines width
*
* @param PDF $pdf
*
* @return array
*/
function getWidth($pdf) {
// Setup the style name, a font must be selected to calculate the width
$pdf->setCurrentStyle("footnotenum");
// Check for the largest font size in the box
$fsize = $pdf->getCurrentStyleHeight();
if ($fsize > $pdf->largestFontHeight) {
$pdf->largestFontHeight = $fsize;
}
// Returns the Object if already numbered else false
if (empty($this->num)) {
$pdf->checkFootnote($this);
}
// Get the line width
$lw = ceil($pdf->GetStringWidth($this->numText));
// Line Feed counter - Number of lines in the text
$lfct = substr_count($this->numText, "\n") + 1;
// If there is still remaining wrap width...
if ($this->wrapWidthRemaining > 0) {
// Check with line counter too!
// but floor the $wrapWidthRemaining first to keep it bugfree!
$wrapWidthRemaining = (int) ($this->wrapWidthRemaining);
if (($lw >= $wrapWidthRemaining) or ($lfct > 1)) {
$newtext = "";
$lines = explode("\n", $this->numText);
// Go throught the text line by line
foreach ($lines as $line) {
// Line width in points
$lw = ceil($pdf->GetStringWidth($line));
// If the line has to be wraped
if ($lw >= $wrapWidthRemaining) {
$words = explode(" ", $line);
$addspace = count($words);
$lw = 0;
foreach ($words as $word) {
$addspace--;
$lw += ceil($pdf->GetStringWidth($word . " "));
if ($lw < $wrapWidthRemaining) {
$newtext .= $word;
if ($addspace != 0) {
$newtext .= " ";
}
} else {
$lw = $pdf->GetStringWidth($word . " ");
$newtext .= "\n$word";
if ($addspace != 0) {
$newtext .= " ";
}
// Reset the wrap width to the cell width
$wrapWidthRemaining = $this->wrapWidthCell;
}
}
} else {
$newtext .= $line;
}
// Check the Line Feed counter
if ($lfct > 1) {
// Add a new line feed as long as it’s not the last line
$newtext .= "\n";
// Reset the line width
$lw = 0;
// Reset the wrap width to the cell width
$wrapWidthRemaining = $this->wrapWidthCell;
}
$lfct--;
}
$this->numText = $newtext;
$lfct = substr_count($this->numText, "\n");
return array($lw, 1, $lfct);
}
}
$l = 0;
$lfct = substr_count($this->numText, "\n");
if ($lfct > 0) {
$l = 2;
}
return array($lw, $l, $lfct);
}
}
/**
* PageHeader element
*/
class PageHeaderPDF extends PageHeader {
/**
* PageHeader element renderer
*
* @param PDF $pdf
*
* @return void
*/
function render($pdf) {
$pdf->clearPageHeader();
foreach ($this->elements as $element) {
$pdf->addPageHeader($element);
}
}
}
/**
* ImagePDF class element
*/
class ImagePDF extends Image {
/**
* PDF image renderer
*
* @param PDF $pdf
*
* @return void
*/
function render($pdf) {
global $lastpicbottom, $lastpicpage, $lastpicleft, $lastpicright;
// Check for a pagebreak first
if ($pdf->checkPageBreakPDF($this->height + 5)) {
$this->y = $pdf->GetY();
}
$curx = $pdf->GetX();
// If current position (left)set "."
if ($this->x == ".") {
$this->x = $pdf->GetX();
} // For static position add margin
else {
$this->x = $pdf->addMarginX($this->x);
$pdf->SetX($curx);
}
if ($this->y == ".") {
//-- first check for a collision with the last picture
if (isset($lastpicbottom)) {
if (($pdf->PageNo() == $lastpicpage) && ($lastpicbottom >= $pdf->GetY(
)) && ($this->x >= $lastpicleft) && ($this->x <= $lastpicright)
) {
$pdf->SetY($lastpicbottom + 5);
}
}
$this->y = $pdf->GetY();
} else {
$pdf->SetY($this->y);
}
if ($pdf->getRTL()) {
$pdf->Image(
$this->file,
$pdf->getPageWidth() - $this->x,
$this->y,
$this->width,
$this->height,
"",
"",
$this->line,
false,
72,
$this->align
);
} else {
$pdf->Image(
$this->file,
$this->x,
$this->y,
$this->width,
$this->height,
"",
"",
$this->line,
false,
72,
$this->align
);
}
$lastpicpage = $pdf->PageNo();
$pdf->lastpicpage = $pdf->getPage();
$lastpicleft = $this->x;
$lastpicright = $this->x + $this->width;
$lastpicbottom = $this->y + $this->height;
// Setup for the next line
if ($this->line == "N") {
$pdf->SetY($lastpicbottom);
}
}
/**
* Get the image height
*
* @param PDF $pdf
*
* @return float
*/
function getHeight($pdf) {
return $this->height;
}
function getWidth($pdf) {
return $this->width;
}
}
/**
* Line element
*/
class LinePDF extends Line {
/**
* PDF line renderer
*
* @param PDF $pdf
*
* @return void
*/
function render($pdf) {
if ($this->x1 == ".") {
$this->x1 = $pdf->GetX();
}
if ($this->y1 == ".") {
$this->y1 = $pdf->GetY();
}
if ($this->x2 == ".") {
$this->x2 = $pdf->getMaxLineWidth();
}
if ($this->y2 == ".") {
$this->y2 = $pdf->GetY();
}
if ($pdf->getRTL()) {
$pdf->Line($pdf->getPageWidth() - $this->x1, $this->y1, $pdf->getPageWidth() - $this->x2, $this->y2);
} else {
$pdf->Line($this->x1, $this->y1, $this->x2, $this->y2);
}
//@@ pedigree report lines - family, deaths, cemeteries???
}
}
|