elementindex_com-tecnick-tcpdf.html
215 KB
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
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
<html>
<head>
<title>Package com-tecnick-tcpdf Element Index</title>
<link rel="stylesheet" type="text/css" href="media/style.css">
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0" height="48" width="100%">
<tr>
<td class="header_top">com-tecnick-tcpdf</td>
</tr>
<tr><td class="header_line"><img src="media/empty.png" width="1" height="1" border="0" alt="" /></td></tr>
<tr>
<td class="header_menu">
[ <a href="classtrees_com-tecnick-tcpdf.html" class="menu">class tree: com-tecnick-tcpdf</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html" class="menu">index: com-tecnick-tcpdf</a> ]
[ <a href="elementindex.html" class="menu">all elements</a> ]
</td>
</tr>
<tr><td class="header_line"><img src="media/empty.png" width="1" height="1" border="0" alt="" /></td></tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="200" class="menu">
<div id="todolist">
<p><a href="todolist.html">Todo List</a></p>
</div>
<b>Packages:</b><br />
<a href="li_PHPExcel.html">PHPExcel</a><br />
<a href="li_PHPExcel_CachedObjectStorage.html">PHPExcel_CachedObjectStorage</a><br />
<a href="li_PHPExcel_Calculation.html">PHPExcel_Calculation</a><br />
<a href="li_PHPExcel_Cell.html">PHPExcel_Cell</a><br />
<a href="li_PHPExcel_Reader.html">PHPExcel_Reader</a><br />
<a href="li_PHPExcel_Reader_Excel5.html">PHPExcel_Reader_Excel5</a><br />
<a href="li_PHPExcel_Reader_Excel2007.html">PHPExcel_Reader_Excel2007</a><br />
<a href="li_PHPExcel_RichText.html">PHPExcel_RichText</a><br />
<a href="li_PHPExcel_Settings.html">PHPExcel_Settings</a><br />
<a href="li_PHPExcel_Shared.html">PHPExcel_Shared</a><br />
<a href="li_PHPExcel_Shared_Escher.html">PHPExcel_Shared_Escher</a><br />
<a href="li_JAMA.html">JAMA</a><br />
<a href="li_Math_Stats.html">Math_Stats</a><br />
<a href="li_PHPExcel_Shared_OLE.html">PHPExcel_Shared_OLE</a><br />
<a href="li_com-tecnick-tcpdf.html">com-tecnick-tcpdf</a><br />
<a href="li_PHPExcel_Shared_Best_Fit.html">PHPExcel_Shared_Best_Fit</a><br />
<a href="li_PHPExcel_Shared_ZipArchive.html">PHPExcel_Shared_ZipArchive</a><br />
<a href="li_PHPExcel_Style.html">PHPExcel_Style</a><br />
<a href="li_PHPExcel_Worksheet.html">PHPExcel_Worksheet</a><br />
<a href="li_PHPExcel_Worksheet_Drawing.html">PHPExcel_Worksheet_Drawing</a><br />
<a href="li_PHPExcel_Writer.html">PHPExcel_Writer</a><br />
<a href="li_PHPExcel_Writer_Excel5.html">PHPExcel_Writer_Excel5</a><br />
<a href="li_PHPExcel_Writer_Excel2007.html">PHPExcel_Writer_Excel2007</a><br />
<br /><br />
<b>Files:</b><br />
<div class="package">
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---2dbarcodes.php.html"> 2dbarcodes.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---barcodes.php.html"> barcodes.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---lang---bra.php.html"> bra.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---lang---eng.php.html"> eng.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---lang---ger.php.html"> ger.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---htmlcolors.php.html"> htmlcolors.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---lang---ita.php.html"> ita.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makeallttffonts.php.html"> makeallttffonts.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makefont.php.html"> makefont.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---pdf417.php.html"> pdf417.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html"> qrcode.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---tcpdf.php.html"> tcpdf.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html"> tcpdf_config.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config_alt.php.html"> tcpdf_config_alt.php
</a><br>
<a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---unicode_data.php.html"> unicode_data.php
</a><br>
</div><br />
<b>Classes:</b><br />
<div class="package">
<a href="com-tecnick-tcpdf/PDF417.html">PDF417</a><br />
<a href="com-tecnick-tcpdf/QRcode.html">QRcode</a><br />
<a href="com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div>
</td>
<td>
<table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top">
<a name="top"></a>
<h1>Element index for package com-tecnick-tcpdf</h1>
[ <a href="elementindex_com-tecnick-tcpdf.html#2">2</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#a">a</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#b">b</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#c">c</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#d">d</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#e">e</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#f">f</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#g">g</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#h">h</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#i">i</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#j">j</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#k">k</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#l">l</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#m">m</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#n">n</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#o">o</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#p">p</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#q">q</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#r">r</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#s">s</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#t">t</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#u">u</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#v">v</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#w">w</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#x">x</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#y">y</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#z">z</a> ]
[ <a href="elementindex_com-tecnick-tcpdf.html#_">_</a> ]
<hr />
<a name="_"></a>
<div>
<h2>_</h2>
<dl>
<dt><b>_addfield</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_addfield">TCPDF::_addfield()</a><br> Adds a javascript form field.</dd>
<dt><b>_AES</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_AES">TCPDF::_AES()</a><br> Returns the input text exrypted using AES algorithm and the specified key.</dd>
<dt><b>_beginpage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_beginpage">TCPDF::_beginpage()</a><br> Initialize a new page.</dd>
<dt><b>_datastring</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_datastring">TCPDF::_datastring()</a><br> Format a data string for meta information</dd>
<dt><b>_datestring</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_datestring">TCPDF::_datestring()</a><br> Returns a formatted date for meta information</dd>
<dt><b>_destroy</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_destroy">TCPDF::_destroy()</a><br> Unset all class variables except the following critical variables: internal_encoding, state, bufferlen, buffer and diskcache.</dd>
<dt><b>_dochecks</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_dochecks">TCPDF::_dochecks()</a><br> Check for locale-related bug</dd>
<dt><b>_dolinethrough</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_dolinethrough">TCPDF::_dolinethrough()</a><br> Line through text.</dd>
<dt><b>_dolinethroughw</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_dolinethroughw">TCPDF::_dolinethroughw()</a><br> Line through for rectangular text area.</dd>
<dt><b>_dooverline</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_dooverline">TCPDF::_dooverline()</a><br> Overline text.</dd>
<dt><b>_dooverlinew</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_dooverlinew">TCPDF::_dooverlinew()</a><br> Overline for rectangular text area.</dd>
<dt><b>_dounderline</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_dounderline">TCPDF::_dounderline()</a><br> Underline text.</dd>
<dt><b>_dounderlinew</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_dounderlinew">TCPDF::_dounderlinew()</a><br> Underline for rectangular text area.</dd>
<dt><b>_encrypt_data</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_encrypt_data">TCPDF::_encrypt_data()</a><br> Encrypt the input string.</dd>
<dt><b>_enddoc</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_enddoc">TCPDF::_enddoc()</a><br> Output end of document (EOF).</dd>
<dt><b>_endpage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_endpage">TCPDF::_endpage()</a><br> Mark end of page.</dd>
<dt><b>_escape</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_escape">TCPDF::_escape()</a><br> Add "\" before "\", "(" and ")"</dd>
<dt><b>_escapetext</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_escapetext">TCPDF::_escapetext()</a><br> THIS METHOD IS DEPRECATED</dd>
<dt><b>_fixAES256Password</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_fixAES256Password">TCPDF::_fixAES256Password()</a><br> Convert password for AES-256 encryption mode</dd>
<dt><b>_freadint</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_freadint">TCPDF::_freadint()</a><br> Read a 4-byte (32 bit) integer from file.</dd>
<dt><b>_generateencryptionkey</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_generateencryptionkey">TCPDF::_generateencryptionkey()</a><br> Compute encryption key</dd>
<dt><b>_getannotsrefs</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_getannotsrefs">TCPDF::_getannotsrefs()</a><br> Get references to page annotations.</dd>
<dt><b>_getBYTE</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_getBYTE">TCPDF::_getBYTE()</a><br> Get BYTE from string (8-bit unsigned integer).</dd>
<dt><b>_getfontpath</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_getfontpath">TCPDF::_getfontpath()</a><br> Return fonts path</dd>
<dt><b>_getobj</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_getobj">TCPDF::_getobj()</a><br> Return the starting object string for the selected object ID.</dd>
<dt><b>_getrawstream</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_getrawstream">TCPDF::_getrawstream()</a><br> get raw output stream.</dd>
<dt><b>_getSHORT</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_getSHORT">TCPDF::_getSHORT()</a><br> Get SHORT from string (Big Endian 16-bit signed integer).</dd>
<dt><b>_getstream</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_getstream">TCPDF::_getstream()</a><br> Format output stream (DEPRECATED).</dd>
<dt><b>_getTrueTypeFontSubset</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_getTrueTypeFontSubset">TCPDF::_getTrueTypeFontSubset()</a><br> Returns a subset of the TrueType font data without the unused glyphs.</dd>
<dt><b>_getTTFtableChecksum</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_getTTFtableChecksum">TCPDF::_getTTFtableChecksum()</a><br> Returs the checksum of a TTF table.</dd>
<dt><b>_getULONG</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_getULONG">TCPDF::_getULONG()</a><br> Get ULONG from string (Big Endian 32-bit unsigned integer).</dd>
<dt><b>_getUSHORT</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_getUSHORT">TCPDF::_getUSHORT()</a><br> Get USHORT from string (Big Endian 16-bit unsigned integer).</dd>
<dt><b>_getxobjectdict</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_getxobjectdict">TCPDF::_getxobjectdict()</a><br> Return XObjects Dictionary.</dd>
<dt><b>_JScolor</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_JScolor">TCPDF::_JScolor()</a><br> Convert color to javascript color.</dd>
<dt><b>_md5_16</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_md5_16">TCPDF::_md5_16()</a><br> Encrypts a string using MD5 and returns it's value as a binary string.</dd>
<dt><b>_newobj</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_newobj">TCPDF::_newobj()</a><br> Begin a new object and return the object number.</dd>
<dt><b>_objectkey</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_objectkey">TCPDF::_objectkey()</a><br> Compute encryption key depending on object number where the encrypted data is stored.</dd>
<dt><b>_OEvalue</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_OEvalue">TCPDF::_OEvalue()</a><br> Compute OE value (used for encryption)</dd>
<dt><b>_out</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_out">TCPDF::_out()</a><br> Output a string to the document.</dd>
<dt><b>_outCurve</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_outCurve">TCPDF::_outCurve()</a><br> Append a cubic Bézier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1) and (x2, y2) as the Bézier control points.</dd>
<dt><b>_outCurveV</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_outCurveV">TCPDF::_outCurveV()</a><br> Append a cubic Bézier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using the current point and (x2, y2) as the Bézier control points.</dd>
<dt><b>_outCurveY</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_outCurveY">TCPDF::_outCurveY()</a><br> Append a cubic Bézier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1) and (x3, y3) as the Bézier control points.</dd>
<dt><b>_outellipticalarc</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_outellipticalarc">TCPDF::_outellipticalarc()</a><br> Append an elliptical arc to the current path.</dd>
<dt><b>_outLine</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_outLine">TCPDF::_outLine()</a><br> Append a straight line segment from the current point to the point (x, y).</dd>
<dt><b>_outPoint</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_outPoint">TCPDF::_outPoint()</a><br> Begin a new subpath by moving the current point to coordinates (x, y), omitting any connecting line segment.</dd>
<dt><b>_outRect</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_outRect">TCPDF::_outRect()</a><br> Append a rectangle to the current path as a complete subpath, with lower-left corner (x, y) and dimensions widthand height in user space.</dd>
<dt><b>_Ovalue</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_Ovalue">TCPDF::_Ovalue()</a><br> Compute O value (used for encryption)</dd>
<dt><b>_parsejpeg</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_parsejpeg">TCPDF::_parsejpeg()</a><br> Extract info from a JPEG file without using the GD library.</dd>
<dt><b>_parsepng</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_parsepng">TCPDF::_parsepng()</a><br> Extract info from a PNG file without using the GD library.</dd>
<dt><b>_putannotsobjs</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putannotsobjs">TCPDF::_putannotsobjs()</a><br> Output annotations objects for all pages.</dd>
<dt><b>_putannotsrefs</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putannotsrefs">TCPDF::_putannotsrefs()</a><br> Output references to page annotations</dd>
<dt><b>_putAPXObject</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putAPXObject">TCPDF::_putAPXObject()</a><br> Put appearance streams XObject used to define annotation's appearance states</dd>
<dt><b>_putbookmarks</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putbookmarks">TCPDF::_putbookmarks()</a><br> Create a bookmark PDF string.</dd>
<dt><b>_putcatalog</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putcatalog">TCPDF::_putcatalog()</a><br> Output Catalog.</dd>
<dt><b>_putcidfont0</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putcidfont0">TCPDF::_putcidfont0()</a><br> Output CID-0 fonts.</dd>
<dt><b>_putEmbeddedFiles</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putEmbeddedFiles">TCPDF::_putEmbeddedFiles()</a><br> Embedd the attached files.</dd>
<dt><b>_putencryption</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putencryption">TCPDF::_putencryption()</a><br> Put encryption on PDF document.</dd>
<dt><b>_putextgstates</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putextgstates">TCPDF::_putextgstates()</a><br> Put extgstates for object transparency</dd>
<dt><b>_putfonts</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putfonts">TCPDF::_putfonts()</a><br> Output fonts.</dd>
<dt><b>_putfontwidths</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putfontwidths">TCPDF::_putfontwidths()</a><br> Outputs font widths</dd>
<dt><b>_putheader</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putheader">TCPDF::_putheader()</a><br> Output PDF header.</dd>
<dt><b>_putimages</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putimages">TCPDF::_putimages()</a><br> Output images.</dd>
<dt><b>_putinfo</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putinfo">TCPDF::_putinfo()</a><br> Adds some Metadata information (Document Information Dictionary)</dd>
<dt><b>_putjavascript</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putjavascript">TCPDF::_putjavascript()</a><br> Create a javascript PDF string.</dd>
<dt><b>_putocg</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putocg">TCPDF::_putocg()</a><br> Put visibility settings.</dd>
<dt><b>_putpages</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putpages">TCPDF::_putpages()</a><br> Output pages.</dd>
<dt><b>_putresourcedict</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putresourcedict">TCPDF::_putresourcedict()</a><br> Output Resources Dictionary.</dd>
<dt><b>_putresources</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putresources">TCPDF::_putresources()</a><br> Output Resources.</dd>
<dt><b>_putshaders</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putshaders">TCPDF::_putshaders()</a><br> Output gradient shaders.</dd>
<dt><b>_putsignature</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putsignature">TCPDF::_putsignature()</a><br> Add certification signature (DocMDP or UR3)</dd>
<dt><b>_putspotcolors</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putspotcolors">TCPDF::_putspotcolors()</a><br> Output Spot Colors Resources.</dd>
<dt><b>_putstream</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putstream">TCPDF::_putstream()</a><br> Output a stream (DEPRECATED).</dd>
<dt><b>_puttruetypeunicode</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_puttruetypeunicode">TCPDF::_puttruetypeunicode()</a><br> Adds unicode fonts.<br /></dd>
<dt><b>_putviewerpreferences</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putviewerpreferences">TCPDF::_putviewerpreferences()</a><br> Output viewer preferences.</dd>
<dt><b>_putxobjects</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_putxobjects">TCPDF::_putxobjects()</a><br> Output Form XObjects Templates.</dd>
<dt><b>_RC4</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_RC4">TCPDF::_RC4()</a><br> Returns the input text encrypted using RC4 algorithm and the specified key.</dd>
<dt><b>_setGDImageTransparency</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_setGDImageTransparency">TCPDF::_setGDImageTransparency()</a><br> Set the transparency for the given GD image.</dd>
<dt><b>_textstring</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_textstring">TCPDF::_textstring()</a><br> Format a text string for meta information</dd>
<dt><b>_toJPEG</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_toJPEG">TCPDF::_toJPEG()</a><br> Convert the loaded image to a JPEG and then return a structure for the PDF creator.</dd>
<dt><b>_toPNG</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_toPNG">TCPDF::_toPNG()</a><br> Convert the loaded image to a PNG and then return a structure for the PDF creator.</dd>
<dt><b>_UEvalue</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_UEvalue">TCPDF::_UEvalue()</a><br> Compute UE value (used for encryption)</dd>
<dt><b>_Uvalue</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method_Uvalue">TCPDF::_Uvalue()</a><br> Compute U value (used for encryption)</dd>
<dt><b>__construct</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#method__construct">QRcode::__construct()</a><br> This is the class constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#method__construct">TCPDFBarcode::__construct()</a><br> This is the class constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method__construct">TCPDF::__construct()</a><br> This is the class constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file 2dbarcodes.php, method <a href="com-tecnick-tcpdf/TCPDF2DBarcode.html#method__construct">TCPDF2DBarcode::__construct()</a><br> This is the class constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file pdf417.php, method <a href="com-tecnick-tcpdf/PDF417.html#method__construct">PDF417::__construct()</a><br> This is the class constructor.</dd>
<dt><b>__destruct</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#method__destruct">TCPDF::__destruct()</a><br> Default destructor.</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="a"></a>
<div>
<h2>a</h2>
<dl>
<dt><b>$AliasNbPages</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$AliasNbPages">TCPDF::$AliasNbPages</a></dd>
<dt><b>$AliasNumPage</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$AliasNumPage">TCPDF::$AliasNumPage</a></dd>
<dt><b>$alignmentPattern</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$alignmentPattern">QRcode::$alignmentPattern</a></dd>
<dt><b>$annotation_fonts</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$annotation_fonts">TCPDF::$annotation_fonts</a><br> List of fonts used on form fields (fontname => fontkey).</dd>
<dt><b>$anTable</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$anTable">QRcode::$anTable</a></dd>
<dt><b>$author</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$author">TCPDF::$author</a></dd>
<dt><b>$AutoPageBreak</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$AutoPageBreak">TCPDF::$AutoPageBreak</a></dd>
<dt><b>AcceptPageBreak</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodAcceptPageBreak">TCPDF::AcceptPageBreak()</a><br> Whenever a page break condition is met, the method is called, and the break is issued or not depending on the returned value.</dd>
<dt><b>addExtGState</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodaddExtGState">TCPDF::addExtGState()</a><br> Add transparency parameters to the current extgstate</dd>
<dt><b>AddFont</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodAddFont">TCPDF::AddFont()</a><br> Imports a TrueType, Type1, core, or CID0 font and makes it available.</dd>
<dt><b>addHtmlLink</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodaddHtmlLink">TCPDF::addHtmlLink()</a><br> Output anchor link.</dd>
<dt><b>addHTMLTOC</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodaddHTMLTOC">TCPDF::addHTMLTOC()</a><br> Output a Table Of Content Index (TOC) using HTML templates.</dd>
<dt><b>addHTMLVertSpace</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodaddHTMLVertSpace">TCPDF::addHTMLVertSpace()</a><br> Add vertical spaces if needed.</dd>
<dt><b>addJavascriptObject</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodaddJavascriptObject">TCPDF::addJavascriptObject()</a><br> Adds a javascript object and return object ID</dd>
<dt><b>AddLink</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodAddLink">TCPDF::AddLink()</a><br> Creates a new internal link and returns its identifier. An internal link is a clickable area which directs to another place within the document.<br /> The identifier can then be passed to Cell(), Write(), Image() or Link(). The destination is defined with SetLink().</dd>
<dt><b>AddPage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodAddPage">TCPDF::AddPage()</a><br> Adds a new page to the document. If a page is already present, the Footer() method is called first to output the footer (if enabled). Then the page is added, the current position set to the top-left corner according to the left and top margins (or top-right if in RTL mode), and Header() is called to display the header (if enabled).</dd>
<dt><b>addPageRegion</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodaddPageRegion">TCPDF::addPageRegion()</a><br> Add a single no-write region on selected page.</dd>
<dt><b>AddSpotColor</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodAddSpotColor">TCPDF::AddSpotColor()</a><br> Defines a new spot color.</dd>
<dt><b>addTOC</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodaddTOC">TCPDF::addTOC()</a><br> Output a Table of Content Index (TOC).</dd>
<dt><b>addTOCPage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodaddTOCPage">TCPDF::addTOCPage()</a><br> Adds a new TOC (Table Of Content) page to the document.</dd>
<dt><b>adjustCellPadding</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodadjustCellPadding">TCPDF::adjustCellPadding()</a><br> Adjust the internal Cell padding array to take account of the line width.</dd>
<dt><b>AliasNbPages</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodAliasNbPages">TCPDF::AliasNbPages()</a><br> Defines an alias for the total number of pages.</dd>
<dt><b>AliasNumPage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodAliasNumPage">TCPDF::AliasNumPage()</a><br> Defines an alias for the page number.</dd>
<dt><b>allocate</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodallocate">QRcode::allocate()</a><br> Return an array with zeros</dd>
<dt><b>Annotation</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodAnnotation">TCPDF::Annotation()</a><br> Puts a markup annotation on a rectangular area of the page.</dd>
<dt><b>appendBitstream</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodappendBitstream">QRcode::appendBitstream()</a><br> Append one bitstream to another</dd>
<dt><b>appendBytes</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodappendBytes">QRcode::appendBytes()</a><br> Append one bitstream created from bytes to another</dd>
<dt><b>appendNewInputItem</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodappendNewInputItem">QRcode::appendNewInputItem()</a><br> Append data to an input object.</dd>
<dt><b>appendNum</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodappendNum">QRcode::appendNum()</a><br> Append one bitstream created from number to another</dd>
<dt><b>appendPaddingBit</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodappendPaddingBit">QRcode::appendPaddingBit()</a><br> Append Padding Bit to bitstream</dd>
<dt><b>Arrow</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodArrow">TCPDF::Arrow()</a><br> Draws a grahic arrow.</dd>
<dt><b>arrUTF8ToUTF16BE</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodarrUTF8ToUTF16BE">TCPDF::arrUTF8ToUTF16BE()</a><br> Converts array of UTF-8 characters to UTF16-BE string.<br /></dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="b"></a>
<div>
<h2>b</h2>
<dl>
<dt><b>$b1</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$b1">QRcode::$b1</a></dd>
<dt><b>$barcode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$barcode">TCPDF::$barcode</a></dd>
<dt><b>$barcode_array</b></dt>
<dd>in file 2dbarcodes.php, variable <a href="com-tecnick-tcpdf/TCPDF2DBarcode.html#var$barcode_array">TCPDF2DBarcode::$barcode_array</a></dd>
<dt><b>$barcode_array</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$barcode_array">QRcode::$barcode_array</a></dd>
<dt><b>$barcode_array</b></dt>
<dd>in file pdf417.php, variable <a href="com-tecnick-tcpdf/PDF417.html#var$barcode_array">PDF417::$barcode_array</a></dd>
<dt><b>$barcode_array</b></dt>
<dd>in file barcodes.php, variable <a href="com-tecnick-tcpdf/TCPDFBarcode.html#var$barcode_array">TCPDFBarcode::$barcode_array</a></dd>
<dt><b>$bgcolor</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$bgcolor">TCPDF::$bgcolor</a></dd>
<dt><b>$bit</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$bit">QRcode::$bit</a></dd>
<dt><b>$blocks</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$blocks">QRcode::$blocks</a></dd>
<dt><b>$bMargin</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$bMargin">TCPDF::$bMargin</a></dd>
<dt><b>$booklet</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$booklet">TCPDF::$booklet</a><br> Booklet mode for double-sided pages</dd>
<dt><b>$bordermrk</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$bordermrk">TCPDF::$bordermrk</a><br> Array used to store positions inside the pages buffer.</dd>
<dt><b>$buffer</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$buffer">TCPDF::$buffer</a></dd>
<dt><b>$bufferlen</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$bufferlen">TCPDF::$bufferlen</a><br> Length of the buffer in bytes.</dd>
<dt><b>$byterange_string</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$byterange_string">TCPDF::$byterange_string</a><br> ByteRange placemark used during signature process.</dd>
<dt><b>barcode_c128</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_c128">TCPDFBarcode::barcode_c128()</a><br> C128 barcodes.</dd>
<dt><b>barcode_codabar</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_codabar">TCPDFBarcode::barcode_codabar()</a><br> CODABAR barcodes.</dd>
<dt><b>barcode_code11</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_code11">TCPDFBarcode::barcode_code11()</a><br> CODE11 barcodes.</dd>
<dt><b>barcode_code39</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_code39">TCPDFBarcode::barcode_code39()</a><br> CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.</dd>
<dt><b>barcode_code93</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_code93">TCPDFBarcode::barcode_code93()</a><br> CODE 93 - USS-93</dd>
<dt><b>barcode_eanext</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_eanext">TCPDFBarcode::barcode_eanext()</a><br> UPC-Based Extentions</dd>
<dt><b>barcode_eanupc</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_eanupc">TCPDFBarcode::barcode_eanupc()</a><br> EAN13 and UPC-A barcodes.</dd>
<dt><b>barcode_i25</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_i25">TCPDFBarcode::barcode_i25()</a><br> Interleaved 2 of 5 barcodes.</dd>
<dt><b>barcode_imb</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_imb">TCPDFBarcode::barcode_imb()</a><br> IMB - Intelligent Mail Barcode - Onecode - USPS-B-3200 (requires PHP bcmath extension) Intelligent Mail barcode is a 65-bar code for use on mail in the United States.</dd>
<dt><b>barcode_msi</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_msi">TCPDFBarcode::barcode_msi()</a><br> MSI.</dd>
<dt><b>barcode_pharmacode</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_pharmacode">TCPDFBarcode::barcode_pharmacode()</a><br> Pharmacode</dd>
<dt><b>barcode_pharmacode2t</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_pharmacode2t">TCPDFBarcode::barcode_pharmacode2t()</a><br> Pharmacode two-track</dd>
<dt><b>barcode_postnet</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_postnet">TCPDFBarcode::barcode_postnet()</a><br> POSTNET and PLANET barcodes.</dd>
<dt><b>barcode_rms4cc</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_rms4cc">TCPDFBarcode::barcode_rms4cc()</a><br> RMS4CC - CBC - KIX RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code) - KIX (Klant index - Customer index) RM4SCC is the name of the barcode symbology used by the Royal Mail for its Cleanmail service.</dd>
<dt><b>barcode_s25</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbarcode_s25">TCPDFBarcode::barcode_s25()</a><br> Standard 2 of 5 barcodes.</dd>
<dt><b>binarize</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodbinarize">QRcode::binarize()</a><br> Convert the frame in binary form</dd>
<dt><b>binseq_to_array</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodbinseq_to_array">TCPDFBarcode::binseq_to_array()</a><br> Convert binary barcode sequence to TCPDF barcode array</dd>
<dt><b>bitstreamToByte</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodbitstreamToByte">QRcode::bitstreamToByte()</a><br> Convert bitstream to bytes</dd>
<dt><b>Bookmark</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodBookmark">TCPDF::Bookmark()</a><br> Adds a bookmark.</dd>
<dt><b>Button</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodButton">TCPDF::Button()</a><br> Creates a button field</dd>
<dt><b>barcodes.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---barcodes.php.html">barcodes.php</a></dd>
<dt><b>bra.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---lang---bra.php.html">bra.php</a></dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="c"></a>
<div>
<h2>c</h2>
<dl>
<dt><b>$cache_file_length</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$cache_file_length">TCPDF::$cache_file_length</a><br> Array used to store the lengths of cache files</dd>
<dt><b>$cache_maxsize_UTF8StringToArray</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$cache_maxsize_UTF8StringToArray">TCPDF::$cache_maxsize_UTF8StringToArray</a><br> Maximum size of cache array used for UTF8StringToArray() method.</dd>
<dt><b>$cache_size_UTF8StringToArray</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$cache_size_UTF8StringToArray">TCPDF::$cache_size_UTF8StringToArray</a><br> Current size of cache array used for UTF8StringToArray() method.</dd>
<dt><b>$cache_UTF8StringToArray</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$cache_UTF8StringToArray">TCPDF::$cache_UTF8StringToArray</a><br> Cache array for UTF8StringToArray() method.</dd>
<dt><b>$capacity</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$capacity">QRcode::$capacity</a></dd>
<dt><b>$casesensitive</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$casesensitive">QRcode::$casesensitive</a></dd>
<dt><b>$cell_height_ratio</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$cell_height_ratio">TCPDF::$cell_height_ratio</a><br> Default cell height ratio.</dd>
<dt><b>$cell_margin</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$cell_margin">TCPDF::$cell_margin</a></dd>
<dt><b>$cell_padding</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$cell_padding">TCPDF::$cell_padding</a></dd>
<dt><b>$clusters</b></dt>
<dd>in file pdf417.php, variable <a href="com-tecnick-tcpdf/PDF417.html#var$clusters">PDF417::$clusters</a></dd>
<dt><b>$cntmrk</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$cntmrk">TCPDF::$cntmrk</a><br> Array used to store content positions inside the pages buffer.</dd>
<dt><b>$ColorFlag</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$ColorFlag">TCPDF::$ColorFlag</a></dd>
<dt><b>$columns</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$columns">TCPDF::$columns</a><br> Array of column measures (width, space, starting Y position)</dd>
<dt><b>$column_start_page</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$column_start_page">TCPDF::$column_start_page</a><br> Starting page for columns</dd>
<dt><b>$colxshift</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$colxshift">TCPDF::$colxshift</a><br> Array of: X difference between table cell x start and starting page margin, cellspacing, cellpadding</dd>
<dt><b>$compress</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$compress">TCPDF::$compress</a></dd>
<dt><b>$CoreFonts</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$CoreFonts">TCPDF::$CoreFonts</a></dd>
<dt><b>$count</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$count">QRcode::$count</a></dd>
<dt><b>$creator</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$creator">TCPDF::$creator</a></dd>
<dt><b>$CurOrientation</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$CurOrientation">TCPDF::$CurOrientation</a></dd>
<dt><b>$CurrentFont</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$CurrentFont">TCPDF::$CurrentFont</a></dd>
<dt><b>$current_column</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$current_column">TCPDF::$current_column</a><br> Current column number</dd>
<dt><b>$currpagegroup</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$currpagegroup">TCPDF::$currpagegroup</a><br> Contains the alias of the current page group</dd>
<dt><b>$customlistindent</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$customlistindent">TCPDF::$customlistindent</a></dd>
<dt><b>calcN1N3</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodcalcN1N3">QRcode::calcN1N3()</a><br> calcN1N3</dd>
<dt><b>calcParity</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodcalcParity">QRcode::calcParity()</a><br> calcParity</dd>
<dt><b>Cell</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodCell">TCPDF::Cell()</a><br> Prints a cell (rectangular area) with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.<br /> If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.</dd>
<dt><b>check</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodcheck">QRcode::check()</a><br> Validate the input data.</dd>
<dt><b>CheckBox</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodCheckBox">TCPDF::CheckBox()</a><br> Creates a CheckBox field</dd>
<dt><b>checkModeAn</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodcheckModeAn">QRcode::checkModeAn()</a><br> checkModeAn</dd>
<dt><b>checkModeKanji</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodcheckModeKanji">QRcode::checkModeKanji()</a><br> checkModeKanji</dd>
<dt><b>checkModeNum</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodcheckModeNum">QRcode::checkModeNum()</a><br> checkModeNum</dd>
<dt><b>checkPageBreak</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodcheckPageBreak">TCPDF::checkPageBreak()</a><br> Add page if needed.</dd>
<dt><b>checkPageRegions</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodcheckPageRegions">TCPDF::checkPageRegions()</a><br> Check page for no-write regions and adapt current coordinates and page margins if necessary.</dd>
<dt><b>checksum_code39</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodchecksum_code39">TCPDFBarcode::checksum_code39()</a><br> Calculate CODE 39 checksum (modulo 43).</dd>
<dt><b>checksum_code93</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodchecksum_code93">TCPDFBarcode::checksum_code93()</a><br> Calculate CODE 93 checksum (modulo 47).</dd>
<dt><b>checksum_s25</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodchecksum_s25">TCPDFBarcode::checksum_s25()</a><br> Checksum for standard 2 of 5 barcodes.</dd>
<dt><b>CheckTTF</b></dt>
<dd>in file makefont.php, function <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makefont.php.html#functionCheckTTF">CheckTTF()</a></dd>
<dt><b>Circle</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodCircle">TCPDF::Circle()</a><br> Draws a circle.</dd>
<dt><b>Clip</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodClip">TCPDF::Clip()</a><br> Set a rectangular clipping area.</dd>
<dt><b>Close</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodClose">TCPDF::Close()</a><br> Terminates the PDF document.</dd>
<dt><b>closeHTMLTagHandler</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodcloseHTMLTagHandler">TCPDF::closeHTMLTagHandler()</a><br> Process closing tags.</dd>
<dt><b>colorRegistrationBar</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodcolorRegistrationBar">TCPDF::colorRegistrationBar()</a><br> Paints color transition registration bars</dd>
<dt><b>ComboBox</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodComboBox">TCPDF::ComboBox()</a><br> Creates a Combo-box field</dd>
<dt><b>commitTransaction</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodcommitTransaction">TCPDF::commitTransaction()</a><br> Delete the copy of the current TCPDF object used for undo operation.</dd>
<dt><b>convertData</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodconvertData">QRcode::convertData()</a><br> convertData</dd>
<dt><b>convertHexStringToString</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodconvertHexStringToString">TCPDF::convertHexStringToString()</a><br> Convert hexadecimal string to string</dd>
<dt><b>convertHTMLColorToDec</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodconvertHTMLColorToDec">TCPDF::convertHTMLColorToDec()</a><br> Returns an associative array (keys: R,G,B) from an html color name or a six-digit or three-digit hexadecimal color representation (i.e. #3FE5AA or #7FF).</dd>
<dt><b>convertStringToHexString</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodconvertStringToHexString">TCPDF::convertStringToHexString()</a><br> Convert string to hexadecimal string (byte string)</dd>
<dt><b>convertSVGtMatrix</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodconvertSVGtMatrix">TCPDF::convertSVGtMatrix()</a><br> Convert SVG transformation matrix to PDF.</dd>
<dt><b>CoonsPatchMesh</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodCoonsPatchMesh">TCPDF::CoonsPatchMesh()</a><br> Paints a coons patch mesh.</dd>
<dt><b>copyPage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodcopyPage">TCPDF::copyPage()</a><br> Clone the specified page to a new page.</dd>
<dt><b>createBitStream</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodcreateBitStream">QRcode::createBitStream()</a><br> createBitStream</dd>
<dt><b>createFrame</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodcreateFrame">QRcode::createFrame()</a><br> Return a copy of initialized frame.</dd>
<dt><b>cropMark</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodcropMark">TCPDF::cropMark()</a><br> Paints crop mark</dd>
<dt><b>Curve</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodCurve">TCPDF::Curve()</a><br> Draws a Bezier curve.</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="d"></a>
<div>
<h2>d</h2>
<dl>
<dt><b>$data</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$data">QRcode::$data</a></dd>
<dt><b>$datacode</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$datacode">QRcode::$datacode</a></dd>
<dt><b>$dataLength</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$dataLength">QRcode::$dataLength</a></dd>
<dt><b>$dataStr</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$dataStr">QRcode::$dataStr</a></dd>
<dt><b>$default_form_prop</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$default_form_prop">TCPDF::$default_form_prop</a><br> Deafult Javascript field properties. Possible values are described on official Javascript for Acrobat API reference. Annotation options can be directly specified using the 'aopt' entry.</dd>
<dt><b>$default_graphic_vars</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$default_graphic_vars">TCPDF::$default_graphic_vars</a></dd>
<dt><b>$default_monospaced_font</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$default_monospaced_font">TCPDF::$default_monospaced_font</a><br> Default monospaced font</dd>
<dt><b>$default_table_columns</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$default_table_columns">TCPDF::$default_table_columns</a></dd>
<dt><b>$diffs</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$diffs">TCPDF::$diffs</a></dd>
<dt><b>$dir</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$dir">QRcode::$dir</a></dd>
<dt><b>$diskcache</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$diskcache">TCPDF::$diskcache</a><br> If true enables disk caching.</dd>
<dt><b>$dpi</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$dpi">TCPDF::$dpi</a><br> Dot Per Inch Document Resolution (do not change)</dd>
<dt><b>$DrawColor</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$DrawColor">TCPDF::$DrawColor</a></dd>
<dt><b>dec_to_hex</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methoddec_to_hex">TCPDFBarcode::dec_to_hex()</a><br> Convert large integer number to hexadecimal representation.</dd>
<dt><b>deletePage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methoddeletePage">TCPDF::deletePage()</a><br> Remove the specified page.</dd>
<dt><b>drawHTMLTagBorder</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methoddrawHTMLTagBorder">TCPDF::drawHTMLTagBorder()</a><br> Draw an HTML block border and fill</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="e"></a>
<div>
<h2>e</h2>
<dl>
<dt><b>$ecccode</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$ecccode">QRcode::$ecccode</a></dd>
<dt><b>$eccLength</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$eccLength">QRcode::$eccLength</a></dd>
<dt><b>$eccTable</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$eccTable">QRcode::$eccTable</a></dd>
<dt><b>$embeddedfiles</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$embeddedfiles">TCPDF::$embeddedfiles</a></dd>
<dt><b>$emptypagemrk</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$emptypagemrk">TCPDF::$emptypagemrk</a><br> Array used to store page positions to track empty pages.</dd>
<dt><b>$encoding</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$encoding">TCPDF::$encoding</a></dd>
<dt><b>$encryptdata</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$encryptdata">TCPDF::$encryptdata</a><br> Array containing encryption settings</dd>
<dt><b>$encrypted</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$encrypted">TCPDF::$encrypted</a><br> Indicates whether document is protected</dd>
<dt><b>$enc_padding</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$enc_padding">TCPDF::$enc_padding</a><br> Encryption padding</dd>
<dt><b>$endlinex</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$endlinex">TCPDF::$endlinex</a><br> End position of the latest inserted line</dd>
<dt><b>$epsmarker</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$epsmarker">TCPDF::$epsmarker</a><br> String used to mark the beginning and end of EPS image blocks</dd>
<dt><b>$extgstates</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$extgstates">TCPDF::$extgstates</a><br> Array of transparency objects and parameters.</dd>
<dt><b>eat8</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodeat8">QRcode::eat8()</a><br> eat8</dd>
<dt><b>eatAn</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodeatAn">QRcode::eatAn()</a><br> eatAn</dd>
<dt><b>eatKanji</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodeatKanji">QRcode::eatKanji()</a><br> eatKanji</dd>
<dt><b>eatNum</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodeatNum">QRcode::eatNum()</a><br> eatNum</dd>
<dt><b>Ellipse</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodEllipse">TCPDF::Ellipse()</a><br> Draws an ellipse.</dd>
<dt><b>empty_string</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodempty_string">TCPDF::empty_string()</a><br> Determine whether a string is empty.</dd>
<dt><b>encodeBitStream</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodencodeBitStream">QRcode::encodeBitStream()</a><br> encodeBitStream</dd>
<dt><b>encodeMask</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodencodeMask">QRcode::encodeMask()</a><br> Encode mask</dd>
<dt><b>encodeMode8</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodencodeMode8">QRcode::encodeMode8()</a><br> encodeMode8</dd>
<dt><b>encodeModeAn</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodencodeModeAn">QRcode::encodeModeAn()</a><br> encodeModeAn</dd>
<dt><b>encodeModeKanji</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodencodeModeKanji">QRcode::encodeModeKanji()</a><br> encodeModeKanji</dd>
<dt><b>encodeModeNum</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodencodeModeNum">QRcode::encodeModeNum()</a><br> encodeModeNum</dd>
<dt><b>encodeModeStructure</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodencodeModeStructure">QRcode::encodeModeStructure()</a><br> encodeModeStructure</dd>
<dt><b>encodeString</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodencodeString">QRcode::encodeString()</a><br> Encode the input string to QR code</dd>
<dt><b>encode_code39_ext</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodencode_code39_ext">TCPDFBarcode::encode_code39_ext()</a><br> Encode a string to be used for CODE 39 Extended mode.</dd>
<dt><b>encode_rs_char</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodencode_rs_char">QRcode::encode_rs_char()</a><br> Encode a Reed-Solomon codec and returns the parity array</dd>
<dt><b>endPage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodendPage">TCPDF::endPage()</a><br> Terminate the current page</dd>
<dt><b>endSVGElementHandler</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodendSVGElementHandler">TCPDF::endSVGElementHandler()</a><br> Sets the closing SVG element handler function for the XML parser.</dd>
<dt><b>endTemplate</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodendTemplate">TCPDF::endTemplate()</a><br> End the current XObject Template started with startTemplate() and restore the previous graphic state.</dd>
<dt><b>endTOCPage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodendTOCPage">TCPDF::endTOCPage()</a><br> Terminate the current TOC (Table Of Content) page</dd>
<dt><b>Error</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodError">TCPDF::Error()</a><br> This method is automatically called in case of fatal error; it simply outputs the message and halts the execution. An inherited class may override it to customize the error handling but should always halt the script, or the resulting document would probably be invalid.</dd>
<dt><b>estimateBitsMode8</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodestimateBitsMode8">QRcode::estimateBitsMode8()</a><br> estimateBitsMode8</dd>
<dt><b>estimateBitsModeAn</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodestimateBitsModeAn">QRcode::estimateBitsModeAn()</a><br> estimateBitsModeAn</dd>
<dt><b>estimateBitsModeKanji</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodestimateBitsModeKanji">QRcode::estimateBitsModeKanji()</a><br> estimateBitsModeKanji</dd>
<dt><b>estimateBitsModeNum</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodestimateBitsModeNum">QRcode::estimateBitsModeNum()</a><br> estimateBitsModeNum</dd>
<dt><b>estimateBitStreamSize</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodestimateBitStreamSize">QRcode::estimateBitStreamSize()</a><br> estimateBitStreamSize</dd>
<dt><b>estimateVersion</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodestimateVersion">QRcode::estimateVersion()</a><br> estimateVersion</dd>
<dt><b>evaluateSymbol</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodevaluateSymbol">QRcode::evaluateSymbol()</a><br> evaluateSymbol</dd>
<dt><b>extractCSSproperties</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodextractCSSproperties">TCPDF::extractCSSproperties()</a><br> Extracts the CSS properties from a CSS string.</dd>
<dt><b>eng.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---lang---eng.php.html">eng.php</a></dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="f"></a>
<div>
<h2>f</h2>
<dl>
<dt><b>$feps</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$feps">TCPDF::$feps</a><br> Epsilon value used for float calculations</dd>
<dt><b>$fgcolor</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$fgcolor">TCPDF::$fgcolor</a></dd>
<dt><b>$fhPt</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$fhPt">TCPDF::$fhPt</a></dd>
<dt><b>$file_id</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$file_id">TCPDF::$file_id</a><br> File ID (used on trailer)</dd>
<dt><b>$FillColor</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$FillColor">TCPDF::$FillColor</a></dd>
<dt><b>$FontAscent</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$FontAscent">TCPDF::$FontAscent</a></dd>
<dt><b>$FontDescent</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$FontDescent">TCPDF::$FontDescent</a></dd>
<dt><b>$FontFamily</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$FontFamily">TCPDF::$FontFamily</a></dd>
<dt><b>$FontFiles</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$FontFiles">TCPDF::$FontFiles</a></dd>
<dt><b>$fontkeys</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$fontkeys">TCPDF::$fontkeys</a><br> Store the font keys.</dd>
<dt><b>$fontlist</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$fontlist">TCPDF::$fontlist</a></dd>
<dt><b>$fonts</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$fonts">TCPDF::$fonts</a></dd>
<dt><b>$FontSize</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$FontSize">TCPDF::$FontSize</a></dd>
<dt><b>$FontSizePt</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$FontSizePt">TCPDF::$FontSizePt</a></dd>
<dt><b>$FontStyle</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$FontStyle">TCPDF::$FontStyle</a></dd>
<dt><b>$font_obj_ids</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$font_obj_ids">TCPDF::$font_obj_ids</a><br> Store the font object IDs.</dd>
<dt><b>$font_spacing</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$font_spacing">TCPDF::$font_spacing</a></dd>
<dt><b>$font_stretching</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$font_stretching">TCPDF::$font_stretching</a></dd>
<dt><b>$font_subsetting</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$font_subsetting">TCPDF::$font_subsetting</a></dd>
<dt><b>$footerlen</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$footerlen">TCPDF::$footerlen</a><br> Array used to store footer length of each page.</dd>
<dt><b>$footerpos</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$footerpos">TCPDF::$footerpos</a><br> Array used to store footer positions of each page.</dd>
<dt><b>$footer_font</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$footer_font">TCPDF::$footer_font</a></dd>
<dt><b>$footer_margin</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$footer_margin">TCPDF::$footer_margin</a></dd>
<dt><b>$formatInfo</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$formatInfo">QRcode::$formatInfo</a></dd>
<dt><b>$form_action</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$form_action">TCPDF::$form_action</a><br> Current form action (used during XHTML rendering)</dd>
<dt><b>$form_enctype</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$form_enctype">TCPDF::$form_enctype</a><br> Current form encryption type (used during XHTML rendering)</dd>
<dt><b>$form_mode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$form_mode">TCPDF::$form_mode</a><br> Current method to submit forms.</dd>
<dt><b>$form_obj_id</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$form_obj_id">TCPDF::$form_obj_id</a><br> List of form annotations IDs</dd>
<dt><b>$frame</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$frame">QRcode::$frame</a></dd>
<dt><b>$frames</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$frames">QRcode::$frames</a></dd>
<dt><b>$fwPt</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$fwPt">TCPDF::$fwPt</a></dd>
<dt><b>fitBlock</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodfitBlock">TCPDF::fitBlock()</a><br> Set the block dimensions accounting for page breaks and page/column fitting</dd>
<dt><b>Footer</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodFooter">TCPDF::Footer()</a><br> This method is used to render the page footer.</dd>
<dt><b>formatPageNumber</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodformatPageNumber">TCPDF::formatPageNumber()</a><br> Format the page numbers.</dd>
<dt><b>formatTOCPageNumber</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodformatTOCPageNumber">TCPDF::formatTOCPageNumber()</a><br> Format the page numbers on the Table Of Content.</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="g"></a>
<div>
<h2>g</h2>
<dl>
<dt><b>$gradients</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$gradients">TCPDF::$gradients</a><br> Array for storing gradient information.</dd>
<dt><b>generateMaskNo</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgenerateMaskNo">QRcode::generateMaskNo()</a><br> Return bitmask</dd>
<dt><b>GetAbsX</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodGetAbsX">TCPDF::GetAbsX()</a><br> Returns the absolute X value of current position.</dd>
<dt><b>getAliasNbPages</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetAliasNbPages">TCPDF::getAliasNbPages()</a><br> Returns the string alias used for the total number of pages.</dd>
<dt><b>getAliasNumPage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetAliasNumPage">TCPDF::getAliasNumPage()</a><br> Returns the string alias used for the page number.</dd>
<dt><b>getAnnotOptFromJSProp</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetAnnotOptFromJSProp">TCPDF::getAnnotOptFromJSProp()</a><br> Convert JavaScript form fields properties array to Annotation Properties array.</dd>
<dt><b>GetArrStringWidth</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodGetArrStringWidth">TCPDF::GetArrStringWidth()</a><br> Returns the string length of an array of chars in user unit or an array of characters widths. A font must be selected.<br /></dd>
<dt><b>getBarcode</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetBarcode">TCPDF::getBarcode()</a><br> Get current barcode.</dd>
<dt><b>getBarcodeArray</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodgetBarcodeArray">TCPDFBarcode::getBarcodeArray()</a><br> Return an array representations of barcode.</dd>
<dt><b>getBarcodeArray</b></dt>
<dd>in file pdf417.php, method <a href="com-tecnick-tcpdf/PDF417.html#methodgetBarcodeArray">PDF417::getBarcodeArray()</a><br> Returns a barcode array which is readable by TCPDF</dd>
<dt><b>getBarcodeArray</b></dt>
<dd>in file 2dbarcodes.php, method <a href="com-tecnick-tcpdf/TCPDF2DBarcode.html#methodgetBarcodeArray">TCPDF2DBarcode::getBarcodeArray()</a><br> Return an array representations of barcode.</dd>
<dt><b>getBarcodeArray</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetBarcodeArray">QRcode::getBarcodeArray()</a><br> Returns a barcode array which is readable by TCPDF</dd>
<dt><b>getBitStream</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetBitStream">QRcode::getBitStream()</a><br> Returns a stream of bits.</dd>
<dt><b>getBorderMode</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetBorderMode">TCPDF::getBorderMode()</a><br> Get the border mode accounting for multicell position (opens bottom side of multicell crossing pages)</dd>
<dt><b>getBorderStartPosition</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetBorderStartPosition">TCPDF::getBorderStartPosition()</a><br> Return the starting coordinates to draw an html border</dd>
<dt><b>getBreakMargin</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetBreakMargin">TCPDF::getBreakMargin()</a><br> Returns the page break margin.</dd>
<dt><b>getBuffer</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetBuffer">TCPDF::getBuffer()</a><br> Get buffer content.</dd>
<dt><b>getByteStream</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetByteStream">QRcode::getByteStream()</a><br> Pack all bit streams padding bits into a byte array.</dd>
<dt><b>getCellBorder</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetCellBorder">TCPDF::getCellBorder()</a><br> Returns the code to draw the cell border</dd>
<dt><b>getCellCode</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetCellCode">TCPDF::getCellCode()</a><br> Returns the PDF string code to print a cell (rectangular area) with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.<br /> If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.</dd>
<dt><b>getCellHeightRatio</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetCellHeightRatio">TCPDF::getCellHeightRatio()</a><br> return the height of cell repect font height.</dd>
<dt><b>getCellMargins</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetCellMargins">TCPDF::getCellMargins()</a><br> Get the internal Cell margin array.</dd>
<dt><b>getCellPaddings</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetCellPaddings">TCPDF::getCellPaddings()</a><br> Get the internal Cell padding array.</dd>
<dt><b>GetCharWidth</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodGetCharWidth">TCPDF::GetCharWidth()</a><br> Returns the length of the char in user unit for the current font considering current stretching and spacing (tracking/kerning).</dd>
<dt><b>getCode</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetCode">QRcode::getCode()</a><br> Return Reed-Solomon block code.</dd>
<dt><b>getColumn</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetColumn">TCPDF::getColumn()</a><br> Return the current column number</dd>
<dt><b>getCompaction</b></dt>
<dd>in file pdf417.php, method <a href="com-tecnick-tcpdf/PDF417.html#methodgetCompaction">PDF417::getCompaction()</a><br> Compact data by mode.</dd>
<dt><b>getCSSBorderDashStyle</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetCSSBorderDashStyle">TCPDF::getCSSBorderDashStyle()</a><br> Returns the border dash style from CSS property</dd>
<dt><b>getCSSBorderStyle</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetCSSBorderStyle">TCPDF::getCSSBorderStyle()</a><br> Returns the border style array from CSS border properties</dd>
<dt><b>getCSSBorderWidth</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetCSSBorderWidth">TCPDF::getCSSBorderWidth()</a><br> Returns the border width from CSS property</dd>
<dt><b>getCSSFontSpacing</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetCSSFontSpacing">TCPDF::getCSSFontSpacing()</a><br> Returns the letter-spacing value from CSS value</dd>
<dt><b>getCSSFontStretching</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetCSSFontStretching">TCPDF::getCSSFontStretching()</a><br> Returns the percentage of font stretching from CSS value</dd>
<dt><b>getCSSMargin</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetCSSMargin">TCPDF::getCSSMargin()</a><br> Get the internal Cell margin from CSS attribute.</dd>
<dt><b>getCSSPadding</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetCSSPadding">TCPDF::getCSSPadding()</a><br> Get the internal Cell padding from CSS attribute.</dd>
<dt><b>getDataLength</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetDataLength">QRcode::getDataLength()</a><br> Return maximum data code length (bytes) for the version.</dd>
<dt><b>getECCLength</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetECCLength">QRcode::getECCLength()</a><br> Return maximum error correction code length (bytes) for the version.</dd>
<dt><b>getEccSpec</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetEccSpec">QRcode::getEccSpec()</a><br> Return an array of ECC specification.</dd>
<dt><b>getEncPermissionsString</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetEncPermissionsString">TCPDF::getEncPermissionsString()</a><br> Convert encryption P value to a string of bytes, low-order byte first.</dd>
<dt><b>getErrorCorrection</b></dt>
<dd>in file pdf417.php, method <a href="com-tecnick-tcpdf/PDF417.html#methodgetErrorCorrection">PDF417::getErrorCorrection()</a><br> Returns the error correction codewords</dd>
<dt><b>getErrorCorrectionLevel</b></dt>
<dd>in file pdf417.php, method <a href="com-tecnick-tcpdf/PDF417.html#methodgetErrorCorrectionLevel">PDF417::getErrorCorrectionLevel()</a><br> Returns the error correction level (0-8) to be used</dd>
<dt><b>getFontAscent</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFontAscent">TCPDF::getFontAscent()</a><br> Return the font ascent value</dd>
<dt><b>getFontBuffer</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFontBuffer">TCPDF::getFontBuffer()</a><br> Get font buffer content.</dd>
<dt><b>getFontDescent</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFontDescent">TCPDF::getFontDescent()</a><br> Return the font descent value</dd>
<dt><b>getFontFamily</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFontFamily">TCPDF::getFontFamily()</a><br> Returns the current font family name.</dd>
<dt><b>getFontFamilyName</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFontFamilyName">TCPDF::getFontFamilyName()</a><br> Return normalized font name</dd>
<dt><b>getFontSize</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFontSize">TCPDF::getFontSize()</a><br> Returns the current font size.</dd>
<dt><b>getFontSizePt</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFontSizePt">TCPDF::getFontSizePt()</a><br> Returns the current font size in points unit.</dd>
<dt><b>getFontsList</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFontsList">TCPDF::getFontsList()</a><br> Fill the list of available fonts ($this->fontlist).</dd>
<dt><b>getFontSpacing</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFontSpacing">TCPDF::getFontSpacing()</a><br> Get the amount to increase or decrease the space between characters in a text.</dd>
<dt><b>getFontStretching</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFontStretching">TCPDF::getFontStretching()</a><br> Get the percentage of character stretching.</dd>
<dt><b>getFontStyle</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFontStyle">TCPDF::getFontStyle()</a><br> Returns the current font style.</dd>
<dt><b>getFontSubsetting</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFontSubsetting">TCPDF::getFontSubsetting()</a><br> Return the default option for font subsetting.</dd>
<dt><b>getFooterFont</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFooterFont">TCPDF::getFooterFont()</a><br> Get Footer font.</dd>
<dt><b>getFooterMargin</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFooterMargin">TCPDF::getFooterMargin()</a><br> Returns footer margin in user units.</dd>
<dt><b>getFormatInfo</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetFormatInfo">QRcode::getFormatInfo()</a><br> Return BCH encoded format information pattern.</dd>
<dt><b>getFormDefaultProp</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetFormDefaultProp">TCPDF::getFormDefaultProp()</a><br> Return the default properties for form fields.</dd>
<dt><b>getFrameAt</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetFrameAt">QRcode::getFrameAt()</a><br> Get frame value at specified position</dd>
<dt><b>getGDgamma</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetGDgamma">TCPDF::getGDgamma()</a><br> Correct the gamma value to be used with GD library</dd>
<dt><b>getGraphicVars</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetGraphicVars">TCPDF::getGraphicVars()</a><br> Returns current graphic variables as array.</dd>
<dt><b>getGroupPageNo</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetGroupPageNo">TCPDF::getGroupPageNo()</a><br> Return the current page in the group.</dd>
<dt><b>getGroupPageNoFormatted</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetGroupPageNoFormatted">TCPDF::getGroupPageNoFormatted()</a><br> Returns the current group page number formatted as a string.</dd>
<dt><b>getHeaderData</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetHeaderData">TCPDF::getHeaderData()</a><br> Returns header data:</dd>
<dt><b>getHeaderFont</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetHeaderFont">TCPDF::getHeaderFont()</a><br> Get header font.</dd>
<dt><b>getHeaderMargin</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetHeaderMargin">TCPDF::getHeaderMargin()</a><br> Returns header margin in user units.</dd>
<dt><b>getHtmlDomArray</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetHtmlDomArray">TCPDF::getHtmlDomArray()</a><br> Returns the HTML DOM array.</dd>
<dt><b>getHTMLUnitToUnits</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetHTMLUnitToUnits">TCPDF::getHTMLUnitToUnits()</a><br> Convert HTML string containing value and unit of measure to user's units or points.</dd>
<dt><b>getHyphenPatternsFromTEX</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetHyphenPatternsFromTEX">TCPDF::getHyphenPatternsFromTEX()</a><br> Returns an array of hyphenation patterns.</dd>
<dt><b>getImageBuffer</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetImageBuffer">TCPDF::getImageBuffer()</a><br> Get image buffer content.</dd>
<dt><b>getImageFileType</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetImageFileType">TCPDF::getImageFileType()</a><br> Return the image type given the file name or array returned by getimagesize() function.</dd>
<dt><b>getImageRBX</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetImageRBX">TCPDF::getImageRBX()</a><br> Return the right-bottom (or left-bottom for RTL) corner X coordinate of last inserted image</dd>
<dt><b>getImageRBY</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetImageRBY">TCPDF::getImageRBY()</a><br> Return the right-bottom (or left-bottom for RTL) corner Y coordinate of last inserted image</dd>
<dt><b>getImageScale</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetImageScale">TCPDF::getImageScale()</a><br> Returns the adjusting factor to convert pixels to user units.</dd>
<dt><b>getInputSequences</b></dt>
<dd>in file pdf417.php, method <a href="com-tecnick-tcpdf/PDF417.html#methodgetInputSequences">PDF417::getInputSequences()</a><br> Create array of sequences from input</dd>
<dt><b>getLastH</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetLastH">TCPDF::getLastH()</a><br> Get the last cell height.</dd>
<dt><b>GetLineWidth</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodGetLineWidth">TCPDF::GetLineWidth()</a><br> Returns the current the line width.</dd>
<dt><b>getMargins</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetMargins">TCPDF::getMargins()</a><br> Returns an array containing current margins:</dd>
<dt><b>getMinimumVersion</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetMinimumVersion">QRcode::getMinimumVersion()</a><br> Return a version number that satisfies the input code length.</dd>
<dt><b>getNextPosition</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetNextPosition">QRcode::getNextPosition()</a><br> Return the next frame position</dd>
<dt><b>getNumberOfColumns</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetNumberOfColumns">TCPDF::getNumberOfColumns()</a><br> Return the current number of columns.</dd>
<dt><b>GetNumChars</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodGetNumChars">TCPDF::GetNumChars()</a><br> Returns the numbero of characters in a string.</dd>
<dt><b>getNumLines</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetNumLines">TCPDF::getNumLines()</a><br> This method return the estimated number of lines for print a simple text string using Multicell() method.</dd>
<dt><b>getNumPages</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetNumPages">TCPDF::getNumPages()</a><br> Get the total number of insered pages.</dd>
<dt><b>getObjFilename</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetObjFilename">TCPDF::getObjFilename()</a><br> Returns a temporary filename for caching object on filesystem.</dd>
<dt><b>getOriginalMargins</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetOriginalMargins">TCPDF::getOriginalMargins()</a><br> Returns an array containing original margins:</dd>
<dt><b>getPage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetPage">TCPDF::getPage()</a><br> Get current document page number.</dd>
<dt><b>getPageBuffer</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetPageBuffer">TCPDF::getPageBuffer()</a><br> Get page buffer content.</dd>
<dt><b>getPageDimensions</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetPageDimensions">TCPDF::getPageDimensions()</a><br> Returns an array of page dimensions:</dd>
<dt><b>getPageGroupAlias</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetPageGroupAlias">TCPDF::getPageGroupAlias()</a><br> Return the alias of the current page group If the current font is unicode type, the returned string is surrounded by additional curly braces.</dd>
<dt><b>getPageHeight</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetPageHeight">TCPDF::getPageHeight()</a><br> Returns the page height in units.</dd>
<dt><b>getPageNumGroupAlias</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetPageNumGroupAlias">TCPDF::getPageNumGroupAlias()</a><br> Return the alias for the page number on the current page group If the current font is unicode type, the returned string is surrounded by additional curly braces.</dd>
<dt><b>getPageRegions</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetPageRegions">TCPDF::getPageRegions()</a><br> Return an array of no-write page regions</dd>
<dt><b>getPageSizeFromFormat</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetPageSizeFromFormat">TCPDF::getPageSizeFromFormat()</a><br> Get page dimensions from format name.</dd>
<dt><b>getPageWidth</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetPageWidth">TCPDF::getPageWidth()</a><br> Returns the page width in units.</dd>
<dt><b>getPathPaintOperator</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetPathPaintOperator">TCPDF::getPathPaintOperator()</a><br> Get the Path-Painting Operators.</dd>
<dt><b>getPDFData</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetPDFData">TCPDF::getPDFData()</a><br> Returns the PDF data.</dd>
<dt><b>getRandomSeed</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetRandomSeed">TCPDF::getRandomSeed()</a><br> Returns a string containing random data to be used as a seed for encryption methods.</dd>
<dt><b>getRawCharWidth</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetRawCharWidth">TCPDF::getRawCharWidth()</a><br> Returns the length of the char in user unit for the current font.</dd>
<dt><b>getRemainder</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetRemainder">QRcode::getRemainder()</a><br> Return the numer of remainder bits.</dd>
<dt><b>getRemainingWidth</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetRemainingWidth">TCPDF::getRemainingWidth()</a><br> Returns the remaining width between the current position and margins.</dd>
<dt><b>getRTL</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetRTL">TCPDF::getRTL()</a><br> Return the RTL status</dd>
<dt><b>getScaleFactor</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetScaleFactor">TCPDF::getScaleFactor()</a><br> Returns the scale factor (number of points in user unit).</dd>
<dt><b>getSpaceString</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetSpaceString">TCPDF::getSpaceString()</a><br> Returns the string used to find spaces</dd>
<dt><b>getStringHeight</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetStringHeight">TCPDF::getStringHeight()</a><br> This method return the estimated needed height for print a simple text string in Multicell() method.</dd>
<dt><b>GetStringWidth</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodGetStringWidth">TCPDF::GetStringWidth()</a><br> Returns the length of a string in user unit. A font must be selected.<br /></dd>
<dt><b>getSVGTransformMatrix</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetSVGTransformMatrix">TCPDF::getSVGTransformMatrix()</a><br> Get the tranformation matrix from SVG transform attribute</dd>
<dt><b>getTagStyleFromCSS</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetTagStyleFromCSS">TCPDF::getTagStyleFromCSS()</a><br> Returns the styles that apply for the selected HTML tag.</dd>
<dt><b>getTransformationMatrixProduct</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetTransformationMatrixProduct">TCPDF::getTransformationMatrixProduct()</a><br> Get the product of two SVG tranformation matrices</dd>
<dt><b>getUserPermissionCode</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetUserPermissionCode">TCPDF::getUserPermissionCode()</a><br> Return the premission code used on encryption (P value).</dd>
<dt><b>getVectorsAngle</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodgetVectorsAngle">TCPDF::getVectorsAngle()</a><br> Returns the angle in radiants between two vectors</dd>
<dt><b>getVersionPattern</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetVersionPattern">QRcode::getVersionPattern()</a><br> Return BCH encoded version information pattern that is used for the symbol of version 7 or greater. Use lower 18 bits.</dd>
<dt><b>getWidth</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodgetWidth">QRcode::getWidth()</a><br> Return the width of the symbol for the version.</dd>
<dt><b>GetX</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodGetX">TCPDF::GetX()</a><br> Returns the relative X value of current position.</dd>
<dt><b>GetY</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodGetY">TCPDF::GetY()</a><br> Returns the ordinate of the current position.</dd>
<dt><b>get_mqr</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodget_mqr">TCPDF::get_mqr()</a><br> Gets the current active configuration setting of magic_quotes_runtime (if the get_magic_quotes_runtime function exist)</dd>
<dt><b>Gradient</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodGradient">TCPDF::Gradient()</a><br> Output gradient.</dd>
<dt><b>ger.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---lang---ger.php.html">ger.php</a></dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="h"></a>
<div>
<h2>h</h2>
<dl>
<dt><b>$h</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$h">TCPDF::$h</a></dd>
<dt><b>$header_font</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$header_font">TCPDF::$header_font</a></dd>
<dt><b>$header_logo</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$header_logo">TCPDF::$header_logo</a></dd>
<dt><b>$header_logo_width</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$header_logo_width">TCPDF::$header_logo_width</a></dd>
<dt><b>$header_margin</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$header_margin">TCPDF::$header_margin</a></dd>
<dt><b>$header_string</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$header_string">TCPDF::$header_string</a></dd>
<dt><b>$header_title</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$header_title">TCPDF::$header_title</a></dd>
<dt><b>$hint</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$hint">QRcode::$hint</a></dd>
<dt><b>$hPt</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$hPt">TCPDF::$hPt</a></dd>
<dt><b>$HREF</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$HREF">TCPDF::$HREF</a></dd>
<dt><b>$htmlLinkColorArray</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$htmlLinkColorArray">TCPDF::$htmlLinkColorArray</a><br> Default color for html links</dd>
<dt><b>$htmlLinkFontStyle</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$htmlLinkFontStyle">TCPDF::$htmlLinkFontStyle</a><br> Default font style to add to html links</dd>
<dt><b>$htmlvspace</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$htmlvspace">TCPDF::$htmlvspace</a><br> Count the latest inserted vertical spaces on HTML</dd>
<dt><b>Header</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodHeader">TCPDF::Header()</a><br> This method is used to render the page header.</dd>
<dt><b>HEAD_MAGNIFICATION</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#defineHEAD_MAGNIFICATION">HEAD_MAGNIFICATION</a><br> magnification factor for titles</dd>
<dt><b>hex_to_dec</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodhex_to_dec">TCPDFBarcode::hex_to_dec()</a><br> Convert large hexadecimal number to decimal representation (string).</dd>
<dt><b>hyphenateText</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodhyphenateText">TCPDF::hyphenateText()</a><br> Returns text with soft hyphens.</dd>
<dt><b>hyphenateWord</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodhyphenateWord">TCPDF::hyphenateWord()</a><br> Returns an array of chars containing soft hyphens.</dd>
<dt><b>htmlcolors.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---htmlcolors.php.html">htmlcolors.php</a></dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="i"></a>
<div>
<h2>i</h2>
<dl>
<dt><b>$imagekeys</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$imagekeys">TCPDF::$imagekeys</a><br> Store the image keys.</dd>
<dt><b>$images</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$images">TCPDF::$images</a></dd>
<dt><b>$imgscale</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$imgscale">TCPDF::$imgscale</a></dd>
<dt><b>$img_rb_x</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$img_rb_x">TCPDF::$img_rb_x</a></dd>
<dt><b>$img_rb_y</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$img_rb_y">TCPDF::$img_rb_y</a></dd>
<dt><b>$InFooter</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$InFooter">TCPDF::$InFooter</a></dd>
<dt><b>$internal_encoding</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$internal_encoding">TCPDF::$internal_encoding</a></dd>
<dt><b>$inthead</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$inthead">TCPDF::$inthead</a><br> True when we are printing the thead section on a new page</dd>
<dt><b>$intmrk</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$intmrk">TCPDF::$intmrk</a><br> Array used to store positions inside the pages buffer.</dd>
<dt><b>$inxobj</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$inxobj">TCPDF::$inxobj</a></dd>
<dt><b>$isunicode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$isunicode">TCPDF::$isunicode</a></dd>
<dt><b>$items</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$items">QRcode::$items</a></dd>
<dt><b>identifyMode</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodidentifyMode">QRcode::identifyMode()</a><br> identifyMode</dd>
<dt><b>Image</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodImage">TCPDF::Image()</a><br> Puts an image in the page.</dd>
<dt><b>ImageEps</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodImageEps">TCPDF::ImageEps()</a><br> Embed vector-based Adobe Illustrator (AI) or AI-compatible EPS files.</dd>
<dt><b>ImagePngAlpha</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodImagePngAlpha">TCPDF::ImagePngAlpha()</a><br> Extract info from a PNG image with alpha channel using the GD library.</dd>
<dt><b>ImageSVG</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodImageSVG">TCPDF::ImageSVG()</a><br> Embedd a Scalable Vector Graphics (SVG) image.</dd>
<dt><b>imb_crc11fcs</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodimb_crc11fcs">TCPDFBarcode::imb_crc11fcs()</a><br> Intelligent Mail Barcode calculation of Frame Check Sequence</dd>
<dt><b>imb_reverse_us</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodimb_reverse_us">TCPDFBarcode::imb_reverse_us()</a><br> Reverse unsigned short value</dd>
<dt><b>imb_tables</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodimb_tables">TCPDFBarcode::imb_tables()</a><br> generate Nof13 tables used for Intelligent Mail Barcode</dd>
<dt><b>IncludeJS</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodIncludeJS">TCPDF::IncludeJS()</a><br> Adds a javascript</dd>
<dt><b>init</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodinit">QRcode::init()</a><br> Initialize code.</dd>
<dt><b>init_rs</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodinit_rs">QRcode::init_rs()</a><br> Initialize a Reed-Solomon codec and add it to existing rsitems</dd>
<dt><b>init_rs_char</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodinit_rs_char">QRcode::init_rs_char()</a><br> Initialize a Reed-Solomon codec and returns an array of values.</dd>
<dt><b>insertStructuredAppendHeader</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodinsertStructuredAppendHeader">QRcode::insertStructuredAppendHeader()</a><br> insertStructuredAppendHeader</dd>
<dt><b>intToRoman</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodintToRoman">TCPDF::intToRoman()</a><br> Returns the Roman representation of an integer number</dd>
<dt><b>isalnumat</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodisalnumat">QRcode::isalnumat()</a><br> Return true if the character at specified position is an alphanumeric character</dd>
<dt><b>isdigitat</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodisdigitat">QRcode::isdigitat()</a><br> Return true if the character at specified position is a number</dd>
<dt><b>isRTLTextDir</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodisRTLTextDir">TCPDF::isRTLTextDir()</a><br> Return the current temporary RTL status</dd>
<dt><b>isUnicodeFont</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodisUnicodeFont">TCPDF::isUnicodeFont()</a><br> Return true if the current font is unicode type.</dd>
<dt><b>isValidCSSSelectorForTag</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodisValidCSSSelectorForTag">TCPDF::isValidCSSSelectorForTag()</a><br> Returns true if the CSS selector is valid for the selected HTML tag</dd>
<dt><b>ita.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---lang---ita.php.html">ita.php</a></dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="j"></a>
<div>
<h2>j</h2>
<dl>
<dt><b>$javascript</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$javascript">TCPDF::$javascript</a><br> javascript code</dd>
<dt><b>$jpeg_quality</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$jpeg_quality">TCPDF::$jpeg_quality</a><br> Set the default JPEG compression quality (1-100)</dd>
<dt><b>$js_objects</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$js_objects">TCPDF::$js_objects</a><br> Javascript objects array</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="k"></a>
<div>
<h2>k</h2>
<dl>
<dt><b>$k</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$k">TCPDF::$k</a></dd>
<dt><b>$keywords</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$keywords">TCPDF::$keywords</a></dd>
<dt><b>K_BLANK_IMAGE</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#defineK_BLANK_IMAGE">K_BLANK_IMAGE</a><br> blank image</dd>
<dt><b>K_CELL_HEIGHT_RATIO</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#defineK_CELL_HEIGHT_RATIO">K_CELL_HEIGHT_RATIO</a><br> height of cell repect font height</dd>
<dt><b>K_PATH_CACHE</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#defineK_PATH_CACHE">K_PATH_CACHE</a><br> cache directory for temporary files (full path)</dd>
<dt><b>K_PATH_FONTS</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#defineK_PATH_FONTS">K_PATH_FONTS</a><br> path for PDF fonts</dd>
<dt><b>K_PATH_IMAGES</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#defineK_PATH_IMAGES">K_PATH_IMAGES</a><br> images directory</dd>
<dt><b>K_PATH_MAIN</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#defineK_PATH_MAIN">K_PATH_MAIN</a><br> Installation path (/var/www/tcpdf/).</dd>
<dt><b>K_PATH_URL</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#defineK_PATH_URL">K_PATH_URL</a><br> URL path to tcpdf installation folder (http://localhost/tcpdf/).</dd>
<dt><b>K_PATH_URL_CACHE</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#defineK_PATH_URL_CACHE">K_PATH_URL_CACHE</a><br> cache directory for temporary files (url path)</dd>
<dt><b>K_SMALL_RATIO</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#defineK_SMALL_RATIO">K_SMALL_RATIO</a><br> reduction factor for small font</dd>
<dt><b>K_TCPDF_CALLS_IN_HTML</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#defineK_TCPDF_CALLS_IN_HTML">K_TCPDF_CALLS_IN_HTML</a><br> if true allows to call TCPDF methods using HTML syntax IMPORTANT: For security reason, disable this feature if you are printing user HTML content.</dd>
<dt><b>K_THAI_TOPCHARS</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#defineK_THAI_TOPCHARS">K_THAI_TOPCHARS</a><br> set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language</dd>
<dt><b>K_TITLE_MAGNIFICATION</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#defineK_TITLE_MAGNIFICATION">K_TITLE_MAGNIFICATION</a><br> title magnification respect main font size</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="l"></a>
<div>
<h2>l</h2>
<dl>
<dt><b>$l</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$l">TCPDF::$l</a></dd>
<dt><b>$lasth</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$lasth">TCPDF::$lasth</a></dd>
<dt><b>$last_enc_key</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$last_enc_key">TCPDF::$last_enc_key</a><br> last RC4 key encrypted (cached for optimisation)</dd>
<dt><b>$last_enc_key_c</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$last_enc_key_c">TCPDF::$last_enc_key_c</a><br> last RC4 computed key</dd>
<dt><b>$LayoutMode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$LayoutMode">TCPDF::$LayoutMode</a></dd>
<dt><b>$lengthTableBits</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$lengthTableBits">QRcode::$lengthTableBits</a></dd>
<dt><b>$level</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$level">QRcode::$level</a></dd>
<dt><b>$linestyleCap</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$linestyleCap">TCPDF::$linestyleCap</a><br> PDF string for last line width</dd>
<dt><b>$linestyleDash</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$linestyleDash">TCPDF::$linestyleDash</a><br> PDF string for last line width</dd>
<dt><b>$linestyleJoin</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$linestyleJoin">TCPDF::$linestyleJoin</a><br> PDF string for last line width</dd>
<dt><b>$linestyleWidth</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$linestyleWidth">TCPDF::$linestyleWidth</a><br> PDF string for last line width</dd>
<dt><b>$linethrough</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$linethrough">TCPDF::$linethrough</a><br> line trough state</dd>
<dt><b>$LineWidth</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$LineWidth">TCPDF::$LineWidth</a></dd>
<dt><b>$links</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$links">TCPDF::$links</a></dd>
<dt><b>$lispacer</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$lispacer">TCPDF::$lispacer</a></dd>
<dt><b>$listcount</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$listcount">TCPDF::$listcount</a></dd>
<dt><b>$listindent</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$listindent">TCPDF::$listindent</a></dd>
<dt><b>$listindentlevel</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$listindentlevel">TCPDF::$listindentlevel</a></dd>
<dt><b>$listnum</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$listnum">TCPDF::$listnum</a></dd>
<dt><b>$listordered</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$listordered">TCPDF::$listordered</a></dd>
<dt><b>$lisymbol</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$lisymbol">TCPDF::$lisymbol</a><br> Symbol used for HTML unordered list items</dd>
<dt><b>$lMargin</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$lMargin">TCPDF::$lMargin</a></dd>
<dt><b>lastPage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodlastPage">TCPDF::lastPage()</a><br> Reset pointer to the last document page.</dd>
<dt><b>lengthIndicator</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodlengthIndicator">QRcode::lengthIndicator()</a><br> Return the size of length indicator for the mode and version.</dd>
<dt><b>lengthOfCode</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodlengthOfCode">QRcode::lengthOfCode()</a><br> lengthOfCode</dd>
<dt><b>Line</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodLine">TCPDF::Line()</a><br> Draws a line between two points.</dd>
<dt><b>LinearGradient</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodLinearGradient">TCPDF::LinearGradient()</a><br> Paints a linear colour gradient.</dd>
<dt><b>Link</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodLink">TCPDF::Link()</a><br> Puts a link on a rectangular area of the page.</dd>
<dt><b>ListBox</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodListBox">TCPDF::ListBox()</a><br> Creates a List-box field</dd>
<dt><b>Ln</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodLn">TCPDF::Ln()</a><br> Performs a line break.</dd>
<dt><b>lookAnTable</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodlookAnTable">QRcode::lookAnTable()</a><br> Look up the alphabet-numeric convesion table (see JIS X0510:2004, pp.19).</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="m"></a>
<div>
<h2>m</h2>
<dl>
<dt><b>$maxselcol</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$maxselcol">TCPDF::$maxselcol</a><br> Maximum page and column selected</dd>
<dt><b>MakeFont</b></dt>
<dd>in file makefont.php, function <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makefont.php.html#functionMakeFont">MakeFont()</a></dd>
<dt><b>MakeFontDescriptor</b></dt>
<dd>in file makefont.php, function <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makefont.php.html#functionMakeFontDescriptor">MakeFontDescriptor()</a></dd>
<dt><b>MakeFontEncoding</b></dt>
<dd>in file makefont.php, function <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makefont.php.html#functionMakeFontEncoding">MakeFontEncoding()</a></dd>
<dt><b>makeMask</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmakeMask">QRcode::makeMask()</a><br> makeMask</dd>
<dt><b>makeMaskNo</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmakeMaskNo">QRcode::makeMaskNo()</a><br> makeMaskNo</dd>
<dt><b>MakeWidthArray</b></dt>
<dd>in file makefont.php, function <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makefont.php.html#functionMakeWidthArray">MakeWidthArray()</a></dd>
<dt><b>mask</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmask">QRcode::mask()</a><br> mask</dd>
<dt><b>mask0</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmask0">QRcode::mask0()</a><br> mask0</dd>
<dt><b>mask1</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmask1">QRcode::mask1()</a><br> mask1</dd>
<dt><b>mask2</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmask2">QRcode::mask2()</a><br> mask2</dd>
<dt><b>mask3</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmask3">QRcode::mask3()</a><br> mask3</dd>
<dt><b>mask4</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmask4">QRcode::mask4()</a><br> mask4</dd>
<dt><b>mask5</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmask5">QRcode::mask5()</a><br> mask5</dd>
<dt><b>mask6</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmask6">QRcode::mask6()</a><br> mask6</dd>
<dt><b>mask7</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmask7">QRcode::mask7()</a><br> mask7</dd>
<dt><b>maximumWords</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmaximumWords">QRcode::maximumWords()</a><br> Return the maximum length for the mode and version.</dd>
<dt><b>MAX_STRUCTURED_SYMBOLS</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineMAX_STRUCTURED_SYMBOLS">MAX_STRUCTURED_SYMBOLS</a><br> Max number of symbols for structured mode</dd>
<dt><b>mergeBitStream</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmergeBitStream">QRcode::mergeBitStream()</a><br> mergeBitStream</dd>
<dt><b>MirrorH</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodMirrorH">TCPDF::MirrorH()</a><br> Horizontal Mirroring.</dd>
<dt><b>MirrorL</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodMirrorL">TCPDF::MirrorL()</a><br> Reflection against a straight line through point (x, y) with the gradient angle (angle).</dd>
<dt><b>MirrorP</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodMirrorP">TCPDF::MirrorP()</a><br> Point reflection mirroring.</dd>
<dt><b>MirrorV</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodMirrorV">TCPDF::MirrorV()</a><br> Verical Mirroring.</dd>
<dt><b>modnn</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodmodnn">QRcode::modnn()</a><br> modnn</dd>
<dt><b>movePage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodmovePage">TCPDF::movePage()</a><br> Move a page to a previous position.</dd>
<dt><b>MultiCell</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodMultiCell">TCPDF::MultiCell()</a><br> This method allows printing text with line breaks.</dd>
<dt><b>makeallttffonts.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makeallttffonts.php.html">makeallttffonts.php</a></dd>
<dt><b>makefont.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makefont.php.html">makefont.php</a></dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="n"></a>
<div>
<h2>n</h2>
<dl>
<dt><b>$n</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$n">TCPDF::$n</a></dd>
<dt><b>$newline</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$newline">TCPDF::$newline</a><br> True if a newline is created.</dd>
<dt><b>$newpagegroup</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$newpagegroup">TCPDF::$newpagegroup</a><br> Array of page numbers were a new page group was started</dd>
<dt><b>$numfonts</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$numfonts">TCPDF::$numfonts</a><br> Counts the number of fonts.</dd>
<dt><b>$numimages</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$numimages">TCPDF::$numimages</a><br> Counts the number of pages.</dd>
<dt><b>$numpages</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$numpages">TCPDF::$numpages</a><br> Counts the number of pages.</dd>
<dt><b>$num_columns</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$num_columns">TCPDF::$num_columns</a><br> Number of colums</dd>
<dt><b>$n_js</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$n_js">TCPDF::$n_js</a><br> javascript counter</dd>
<dt><b>$n_ocg_print</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$n_ocg_print">TCPDF::$n_ocg_print</a><br> Print visibility.</dd>
<dt><b>$n_ocg_view</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$n_ocg_view">TCPDF::$n_ocg_view</a><br> View visibility.</dd>
<dt><b>N1</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineN1">N1</a><br> Down point base value for case 1 mask pattern (concatenation of same color in a line or a column)</dd>
<dt><b>N2</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineN2">N2</a><br> Down point base value for case 2 mask pattern (module block of same color)</dd>
<dt><b>N3</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineN3">N3</a><br> Down point base value for case 3 mask pattern (1:1:3:1:1(dark:bright:dark:bright:dark)pattern in a line or a column)</dd>
<dt><b>N4</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineN4">N4</a><br> Down point base value for case 4 mask pattern (ration of dark modules in whole)</dd>
<dt><b>newFrame</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodnewFrame">QRcode::newFrame()</a><br> Set new frame for the specified version.</dd>
<dt><b>newFromBytes</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodnewFromBytes">QRcode::newFromBytes()</a><br> Return new bitstream from bytes</dd>
<dt><b>newFromNum</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodnewFromNum">QRcode::newFromNum()</a><br> Return new bitstream from number</dd>
<dt><b>newInputItem</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodnewInputItem">QRcode::newInputItem()</a><br> newInputItem</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="o"></a>
<div>
<h2>o</h2>
<dl>
<dt><b>$objcopy</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$objcopy">TCPDF::$objcopy</a><br> Used to store a cloned copy of the current class object</dd>
<dt><b>$offsets</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$offsets">TCPDF::$offsets</a></dd>
<dt><b>$opencell</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$opencell">TCPDF::$opencell</a></dd>
<dt><b>$openMarkedContent</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$openMarkedContent">TCPDF::$openMarkedContent</a><br> True if marked-content sequence is open</dd>
<dt><b>$original_lMargin</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$original_lMargin">TCPDF::$original_lMargin</a></dd>
<dt><b>$original_rMargin</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$original_rMargin">TCPDF::$original_rMargin</a></dd>
<dt><b>$OutlineRoot</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$OutlineRoot">TCPDF::$OutlineRoot</a><br> Outline root for bookmark</dd>
<dt><b>$outlines</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$outlines">TCPDF::$outlines</a><br> Outlines for bookmark</dd>
<dt><b>$overline</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$overline">TCPDF::$overline</a></dd>
<dt><b>objclone</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodobjclone">TCPDF::objclone()</a><br> Creates a copy of a class object</dd>
<dt><b>Open</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodOpen">TCPDF::Open()</a><br> This method begins the generation of the PDF document.</dd>
<dt><b>openHTMLTagHandler</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodopenHTMLTagHandler">TCPDF::openHTMLTagHandler()</a><br> Process opening tags.</dd>
<dt><b>Output</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodOutput">TCPDF::Output()</a><br> Send the document to a given destination: string, local file or browser.</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="p"></a>
<div>
<h2>p</h2>
<dl>
<dt><b>$page</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$page">TCPDF::$page</a></dd>
<dt><b>$PageAnnots</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$PageAnnots">TCPDF::$PageAnnots</a></dd>
<dt><b>$PageBreakTrigger</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$PageBreakTrigger">TCPDF::$PageBreakTrigger</a></dd>
<dt><b>$pagedim</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$pagedim">TCPDF::$pagedim</a></dd>
<dt><b>$pagegroups</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$pagegroups">TCPDF::$pagegroups</a><br> Contains the number of pages of the groups</dd>
<dt><b>$pagelen</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$pagelen">TCPDF::$pagelen</a><br> Array containing page lengths in bytes.</dd>
<dt><b>$PageMode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$PageMode">TCPDF::$PageMode</a><br> A name object specifying how the document should be displayed when opened.</dd>
<dt><b>$pageopen</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$pageopen">TCPDF::$pageopen</a><br> Store the fage status (true when opened, false when closed).</dd>
<dt><b>$pages</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$pages">TCPDF::$pages</a></dd>
<dt><b>$page_obj_id</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$page_obj_id">TCPDF::$page_obj_id</a><br> ID of page objects</dd>
<dt><b>$page_regions</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$page_regions">TCPDF::$page_regions</a></dd>
<dt><b>$pdfunit</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$pdfunit">TCPDF::$pdfunit</a></dd>
<dt><b>$PDFVersion</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$PDFVersion">TCPDF::$PDFVersion</a></dd>
<dt><b>$premode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$premode">TCPDF::$premode</a></dd>
<dt><b>$print_footer</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$print_footer">TCPDF::$print_footer</a></dd>
<dt><b>$print_header</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$print_header">TCPDF::$print_header</a></dd>
<dt><b>PageNo</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodPageNo">TCPDF::PageNo()</a><br> Returns the current page number.</dd>
<dt><b>PageNoFormatted</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodPageNoFormatted">TCPDF::PageNoFormatted()</a><br> Returns the current page number formatted as a string.</dd>
<dt><b>PDF417</b></dt>
<dd>in file pdf417.php, class <a href="com-tecnick-tcpdf/PDF417.html">PDF417</a><br> Class to create PDF417 barcode arrays for TCPDF class.</dd>
<dt><b>PDF417DEFS</b></dt>
<dd>in file pdf417.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---pdf417.php.html#definePDF417DEFS">PDF417DEFS</a><br> Indicate that definitions for this class are set</dd>
<dt><b>PDF_AUTHOR</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_AUTHOR">PDF_AUTHOR</a><br> document author</dd>
<dt><b>PDF_CREATOR</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_CREATOR">PDF_CREATOR</a><br> document creator</dd>
<dt><b>PDF_FONT_MONOSPACED</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_FONT_MONOSPACED">PDF_FONT_MONOSPACED</a><br> default monospaced font name</dd>
<dt><b>PDF_FONT_NAME_DATA</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_FONT_NAME_DATA">PDF_FONT_NAME_DATA</a><br> default data font name</dd>
<dt><b>PDF_FONT_NAME_MAIN</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_FONT_NAME_MAIN">PDF_FONT_NAME_MAIN</a><br> default main font name</dd>
<dt><b>PDF_FONT_SIZE_DATA</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_FONT_SIZE_DATA">PDF_FONT_SIZE_DATA</a><br> default data font size</dd>
<dt><b>PDF_FONT_SIZE_MAIN</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_FONT_SIZE_MAIN">PDF_FONT_SIZE_MAIN</a><br> default main font size</dd>
<dt><b>PDF_HEADER_LOGO</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_HEADER_LOGO">PDF_HEADER_LOGO</a><br> image logo</dd>
<dt><b>PDF_HEADER_LOGO_WIDTH</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_HEADER_LOGO_WIDTH">PDF_HEADER_LOGO_WIDTH</a><br> header logo image width [mm]</dd>
<dt><b>PDF_HEADER_STRING</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_HEADER_STRING">PDF_HEADER_STRING</a><br> header description string</dd>
<dt><b>PDF_HEADER_TITLE</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_HEADER_TITLE">PDF_HEADER_TITLE</a><br> header title</dd>
<dt><b>PDF_IMAGE_SCALE_RATIO</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_IMAGE_SCALE_RATIO">PDF_IMAGE_SCALE_RATIO</a><br> ratio used to adjust the conversion of pixels to user units</dd>
<dt><b>PDF_MARGIN_BOTTOM</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_MARGIN_BOTTOM">PDF_MARGIN_BOTTOM</a><br> bottom margin</dd>
<dt><b>PDF_MARGIN_FOOTER</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_MARGIN_FOOTER">PDF_MARGIN_FOOTER</a><br> footer margin</dd>
<dt><b>PDF_MARGIN_HEADER</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_MARGIN_HEADER">PDF_MARGIN_HEADER</a><br> header margin</dd>
<dt><b>PDF_MARGIN_LEFT</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_MARGIN_LEFT">PDF_MARGIN_LEFT</a><br> left margin</dd>
<dt><b>PDF_MARGIN_RIGHT</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_MARGIN_RIGHT">PDF_MARGIN_RIGHT</a><br> right margin</dd>
<dt><b>PDF_MARGIN_TOP</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_MARGIN_TOP">PDF_MARGIN_TOP</a><br> top margin</dd>
<dt><b>PDF_PAGE_FORMAT</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_PAGE_FORMAT">PDF_PAGE_FORMAT</a><br> page format</dd>
<dt><b>PDF_PAGE_ORIENTATION</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_PAGE_ORIENTATION">PDF_PAGE_ORIENTATION</a><br> page orientation (P=portrait, L=landscape)</dd>
<dt><b>PDF_PRODUCER</b></dt>
<dd>in file tcpdf.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---tcpdf.php.html#definePDF_PRODUCER">PDF_PRODUCER</a><br> define default PDF document producer</dd>
<dt><b>PDF_UNIT</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html#definePDF_UNIT">PDF_UNIT</a><br> document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]</dd>
<dt><b>pdf417.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---pdf417.php.html">pdf417.php</a></dd>
<dt><b>PieSector</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodPieSector">TCPDF::PieSector()</a><br> Draw the sector of a circle.</dd>
<dt><b>PieSectorXY</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodPieSectorXY">TCPDF::PieSectorXY()</a><br> Draw the sector of an ellipse.</dd>
<dt><b>pixelsToUnits</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodpixelsToUnits">TCPDF::pixelsToUnits()</a><br> Converts pixels to User's Units.</dd>
<dt><b>Polycurve</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodPolycurve">TCPDF::Polycurve()</a><br> Draws a poly-Bezier curve.</dd>
<dt><b>Polygon</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodPolygon">TCPDF::Polygon()</a><br> Draws a polygon.</dd>
<dt><b>PolyLine</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodPolyLine">TCPDF::PolyLine()</a><br> Draws a polygonal line</dd>
<dt><b>printTemplate</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodprintTemplate">TCPDF::printTemplate()</a><br> Print an XObject Template.</dd>
<dt><b>putAlignmentMarker</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodputAlignmentMarker">QRcode::putAlignmentMarker()</a><br> Put an alignment marker.</dd>
<dt><b>putAlignmentPattern</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodputAlignmentPattern">QRcode::putAlignmentPattern()</a><br> Put an alignment pattern.</dd>
<dt><b>putFinderPattern</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodputFinderPattern">QRcode::putFinderPattern()</a><br> Put a finder pattern.</dd>
<dt><b>putHtmlListBullet</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodputHtmlListBullet">TCPDF::putHtmlListBullet()</a><br> Output an HTML list bullet or ordered item symbol</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="q"></a>
<div>
<h2>q</h2>
<dl>
<dt><b>qrcode.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html">qrcode.php</a></dd>
<dt><b>QRCAP_EC</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQRCAP_EC">QRCAP_EC</a><br> Matrix index to get error correction level from $capacity array.</dd>
<dt><b>QRCAP_REMINDER</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQRCAP_REMINDER">QRCAP_REMINDER</a><br> Matrix index to get remainder from $capacity array.</dd>
<dt><b>QRCAP_WIDTH</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQRCAP_WIDTH">QRCAP_WIDTH</a><br> Matrix index to get width from $capacity array.</dd>
<dt><b>QRCAP_WORDS</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQRCAP_WORDS">QRCAP_WORDS</a><br> Matrix index to get number of words from $capacity array.</dd>
<dt><b>QRcode</b></dt>
<dd>in file qrcode.php, class <a href="com-tecnick-tcpdf/QRcode.html">QRcode</a><br> Class to create QR-code arrays for TCPDF class.</dd>
<dt><b>QRCODEDEFS</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQRCODEDEFS">QRCODEDEFS</a><br> Indicate that definitions for this class are set</dd>
<dt><b>QRSPEC_VERSION_MAX</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQRSPEC_VERSION_MAX">QRSPEC_VERSION_MAX</a><br> Maximum QR Code version.</dd>
<dt><b>QRSPEC_WIDTH_MAX</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQRSPEC_WIDTH_MAX">QRSPEC_WIDTH_MAX</a><br> Maximum matrix size for maximum version (version 40 is 177*177 matrix).</dd>
<dt><b>qrstrset</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodqrstrset">QRcode::qrstrset()</a><br> Replace a value on the array at the specified position</dd>
<dt><b>QR_DEFAULT_MASK</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQR_DEFAULT_MASK">QR_DEFAULT_MASK</a><br> when QR_FIND_BEST_MASK === false</dd>
<dt><b>QR_ECLEVEL_H</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQR_ECLEVEL_H">QR_ECLEVEL_H</a><br> Error correction level H : About 30% or less errors can be corrected.</dd>
<dt><b>QR_ECLEVEL_L</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQR_ECLEVEL_L">QR_ECLEVEL_L</a><br> Error correction level L : About 7% or less errors can be corrected.</dd>
<dt><b>QR_ECLEVEL_M</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQR_ECLEVEL_M">QR_ECLEVEL_M</a><br> Error correction level M : About 15% or less errors can be corrected.</dd>
<dt><b>QR_ECLEVEL_Q</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQR_ECLEVEL_Q">QR_ECLEVEL_Q</a><br> Error correction level Q : About 25% or less errors can be corrected.</dd>
<dt><b>QR_FIND_BEST_MASK</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQR_FIND_BEST_MASK">QR_FIND_BEST_MASK</a><br> if true, estimates best mask (spec. default, but extremally slow; set to false to significant performance boost but (propably) worst quality code</dd>
<dt><b>QR_FIND_FROM_RANDOM</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQR_FIND_FROM_RANDOM">QR_FIND_FROM_RANDOM</a><br> if false, checks all masks available, otherwise value tells count of masks need to be checked, mask id are got randomly</dd>
<dt><b>QR_MODE_8B</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQR_MODE_8B">QR_MODE_8B</a><br> Encoding mode 8bit byte data. In theory, 2953 characters or less can be stored in a QRcode.</dd>
<dt><b>QR_MODE_AN</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQR_MODE_AN">QR_MODE_AN</a><br> Encoding mode alphanumeric (0-9A-Z $%*+-./:) 45characters. 2 characters are encoded to 11bit length. In theory, 4296 characters or less can be stored in a QRcode.</dd>
<dt><b>QR_MODE_KJ</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQR_MODE_KJ">QR_MODE_KJ</a><br> Encoding mode KANJI. A KANJI character (multibyte character) is encoded to 13bit length. In theory, 1817 characters or less can be stored in a QRcode.</dd>
<dt><b>QR_MODE_NL</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQR_MODE_NL">QR_MODE_NL</a><br> Encoding mode</dd>
<dt><b>QR_MODE_NM</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQR_MODE_NM">QR_MODE_NM</a><br> Encoding mode numeric (0-9). 3 characters are encoded to 10bit length. In theory, 7089 characters or less can be stored in a QRcode.</dd>
<dt><b>QR_MODE_ST</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineQR_MODE_ST">QR_MODE_ST</a><br> Encoding mode STRUCTURED (currently unsupported)</dd>
<dt><b>QUIETH</b></dt>
<dd>in file pdf417.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---pdf417.php.html#defineQUIETH">QUIETH</a><br> Horizontal quiet zone in modules</dd>
<dt><b>QUIETV</b></dt>
<dd>in file pdf417.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---pdf417.php.html#defineQUIETV">QUIETV</a><br> Vertical quiet zone in modules</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="r"></a>
<div>
<h2>r</h2>
<dl>
<dt><b>$radiobutton_groups</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$radiobutton_groups">TCPDF::$radiobutton_groups</a><br> List of radio buttons parent objects.</dd>
<dt><b>$radio_groups</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$radio_groups">TCPDF::$radio_groups</a><br> List of radio group objects IDs</dd>
<dt><b>$rasterize_vector_images</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$rasterize_vector_images">TCPDF::$rasterize_vector_images</a></dd>
<dt><b>$re_space</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$re_space">TCPDF::$re_space</a><br> Array of parts $re_spaces</dd>
<dt><b>$re_spaces</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$re_spaces">TCPDF::$re_spaces</a><br> Regular expression used to find blank characters used for word-wrapping.</dd>
<dt><b>$rMargin</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$rMargin">TCPDF::$rMargin</a></dd>
<dt><b>$rsblocks</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$rsblocks">QRcode::$rsblocks</a></dd>
<dt><b>$rsfactors</b></dt>
<dd>in file pdf417.php, variable <a href="com-tecnick-tcpdf/PDF417.html#var$rsfactors">PDF417::$rsfactors</a></dd>
<dt><b>$rsitems</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$rsitems">QRcode::$rsitems</a></dd>
<dt><b>$rtl</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$rtl">TCPDF::$rtl</a></dd>
<dt><b>$runLength</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$runLength">QRcode::$runLength</a></dd>
<dt><b>RadialGradient</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodRadialGradient">TCPDF::RadialGradient()</a><br> Paints a radial colour gradient.</dd>
<dt><b>RadioButton</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodRadioButton">TCPDF::RadioButton()</a><br> Creates a RadioButton field</dd>
<dt><b>ReadAFM</b></dt>
<dd>in file makefont.php, function <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makefont.php.html#functionReadAFM">ReadAFM()</a><br> Read AFM file</dd>
<dt><b>readDiskCache</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodreadDiskCache">TCPDF::readDiskCache()</a><br> Read data from a temporary file on filesystem.</dd>
<dt><b>ReadLong</b></dt>
<dd>in file makefont.php, function <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makefont.php.html#functionReadLong">ReadLong()</a></dd>
<dt><b>ReadMap</b></dt>
<dd>in file makefont.php, function <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makefont.php.html#functionReadMap">ReadMap()</a><br> Read the specified encoding map.</dd>
<dt><b>ReadShort</b></dt>
<dd>in file makefont.php, function <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makefont.php.html#functionReadShort">ReadShort()</a></dd>
<dt><b>ReadUFM</b></dt>
<dd>in file makefont.php, function <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makefont.php.html#functionReadUFM">ReadUFM()</a><br> Read UFM file</dd>
<dt><b>Rect</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodRect">TCPDF::Rect()</a><br> Draws a rectangle.</dd>
<dt><b>registrationMark</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodregistrationMark">TCPDF::registrationMark()</a><br> Paints a registration mark</dd>
<dt><b>RegularPolygon</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodRegularPolygon">TCPDF::RegularPolygon()</a><br> Draws a regular polygon.</dd>
<dt><b>removePageRegion</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodremovePageRegion">TCPDF::removePageRegion()</a><br> Remove a single no-write region.</dd>
<dt><b>removeSHY</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodremoveSHY">TCPDF::removeSHY()</a><br> Removes SHY characters from text.</dd>
<dt><b>replaceBuffer</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodreplaceBuffer">TCPDF::replaceBuffer()</a><br> Replace the buffer content</dd>
<dt><b>resetLastH</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodresetLastH">TCPDF::resetLastH()</a><br> Reset the last cell height.</dd>
<dt><b>revstrpos</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodrevstrpos">TCPDF::revstrpos()</a><br> Find position of last occurrence of a substring in a string</dd>
<dt><b>rfread</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodrfread">TCPDF::rfread()</a><br> Binary-safe and URL-safe file read.</dd>
<dt><b>rollbackTransaction</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodrollbackTransaction">TCPDF::rollbackTransaction()</a><br> This method allows to undo the latest transaction by returning the latest saved TCPDF object with startTransaction().</dd>
<dt><b>Rotate</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodRotate">TCPDF::Rotate()</a><br> Rotate object.</dd>
<dt><b>RoundedRect</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodRoundedRect">TCPDF::RoundedRect()</a><br> Draws a rounded rectangle.</dd>
<dt><b>RoundedRectXY</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodRoundedRectXY">TCPDF::RoundedRectXY()</a><br> Draws a rounded rectangle.</dd>
<dt><b>ROWHEIGHT</b></dt>
<dd>in file pdf417.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---pdf417.php.html#defineROWHEIGHT">ROWHEIGHT</a><br> Row height respect X dimension of single module</dd>
<dt><b>rsBlockNum</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodrsBlockNum">QRcode::rsBlockNum()</a><br> Return block number 0</dd>
<dt><b>rsBlockNum1</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodrsBlockNum1">QRcode::rsBlockNum1()</a><br> Return block number 1</dd>
<dt><b>rsBlockNum2</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodrsBlockNum2">QRcode::rsBlockNum2()</a><br> Return block number 2</dd>
<dt><b>rsDataCodes1</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodrsDataCodes1">QRcode::rsDataCodes1()</a><br> Return data codes 1</dd>
<dt><b>rsDataCodes2</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodrsDataCodes2">QRcode::rsDataCodes2()</a><br> Return data codes 2</dd>
<dt><b>rsDataLength</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodrsDataLength">QRcode::rsDataLength()</a><br> Return data length</dd>
<dt><b>rsEccCodes1</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodrsEccCodes1">QRcode::rsEccCodes1()</a><br> Return ecc codes 1</dd>
<dt><b>rsEccCodes2</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodrsEccCodes2">QRcode::rsEccCodes2()</a><br> Return ecc codes 2</dd>
<dt><b>rsEccLength</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodrsEccLength">QRcode::rsEccLength()</a><br> Return ecc length</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="s"></a>
<div>
<h2>s</h2>
<dl>
<dt><b>$sign</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$sign">TCPDF::$sign</a><br> If true enables document signing</dd>
<dt><b>$signature_appearance</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$signature_appearance">TCPDF::$signature_appearance</a><br> data for signature appearance</dd>
<dt><b>$signature_data</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$signature_data">TCPDF::$signature_data</a><br> Signature data</dd>
<dt><b>$signature_max_length</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$signature_max_length">TCPDF::$signature_max_length</a><br> Signature max length</dd>
<dt><b>$sig_annot_ref</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$sig_annot_ref">TCPDF::$sig_annot_ref</a><br> Placemark used during signature process.</dd>
<dt><b>$sig_obj_id</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$sig_obj_id">TCPDF::$sig_obj_id</a><br> Signature object ID</dd>
<dt><b>$spot_colors</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$spot_colors">TCPDF::$spot_colors</a><br> Array of Spot colors</dd>
<dt><b>$start_pattern</b></dt>
<dd>in file pdf417.php, variable <a href="com-tecnick-tcpdf/PDF417.html#var$start_pattern">PDF417::$start_pattern</a></dd>
<dt><b>$start_transaction_page</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$start_transaction_page">TCPDF::$start_transaction_page</a><br> Store page number when startTransaction() is called.</dd>
<dt><b>$start_transaction_y</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$start_transaction_y">TCPDF::$start_transaction_y</a><br> Store Y position when startTransaction() is called.</dd>
<dt><b>$state</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$state">TCPDF::$state</a></dd>
<dt><b>$stop_pattern</b></dt>
<dd>in file pdf417.php, variable <a href="com-tecnick-tcpdf/PDF417.html#var$stop_pattern">PDF417::$stop_pattern</a></dd>
<dt><b>$strokecolor</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$strokecolor">TCPDF::$strokecolor</a></dd>
<dt><b>$structured</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$structured">QRcode::$structured</a></dd>
<dt><b>$subject</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$subject">TCPDF::$subject</a></dd>
<dt><b>$svgclipid</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svgclipid">TCPDF::$svgclipid</a></dd>
<dt><b>$svgclipmode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svgclipmode">TCPDF::$svgclipmode</a></dd>
<dt><b>$svgclippaths</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svgclippaths">TCPDF::$svgclippaths</a></dd>
<dt><b>$svgcliptm</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svgcliptm">TCPDF::$svgcliptm</a></dd>
<dt><b>$svgdefs</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svgdefs">TCPDF::$svgdefs</a></dd>
<dt><b>$svgdefsmode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svgdefsmode">TCPDF::$svgdefsmode</a></dd>
<dt><b>$svgdir</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svgdir">TCPDF::$svgdir</a></dd>
<dt><b>$svggradientid</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svggradientid">TCPDF::$svggradientid</a></dd>
<dt><b>$svggradients</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svggradients">TCPDF::$svggradients</a></dd>
<dt><b>$svginheritprop</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svginheritprop">TCPDF::$svginheritprop</a></dd>
<dt><b>$svgstyles</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svgstyles">TCPDF::$svgstyles</a></dd>
<dt><b>$svgtext</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svgtext">TCPDF::$svgtext</a></dd>
<dt><b>$svgtextmode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svgtextmode">TCPDF::$svgtextmode</a></dd>
<dt><b>$svgunit</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$svgunit">TCPDF::$svgunit</a></dd>
<dt><b>SaveToFile</b></dt>
<dd>in file makefont.php, function <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---fonts---utils---makefont.php.html#functionSaveToFile">SaveToFile()</a></dd>
<dt><b>Scale</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodScale">TCPDF::Scale()</a><br> Vertical and horizontal non-proportional Scaling.</dd>
<dt><b>ScaleX</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodScaleX">TCPDF::ScaleX()</a><br> Horizontal Scaling.</dd>
<dt><b>ScaleXY</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodScaleXY">TCPDF::ScaleXY()</a><br> Vertical and horizontal proportional Scaling.</dd>
<dt><b>ScaleY</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodScaleY">TCPDF::ScaleY()</a><br> Vertical Scaling.</dd>
<dt><b>segSVGContentHandler</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsegSVGContentHandler">TCPDF::segSVGContentHandler()</a><br> Sets the character data handler function for the XML parser.</dd>
<dt><b>selectColumn</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodselectColumn">TCPDF::selectColumn()</a><br> Set position at a given column</dd>
<dt><b>serializeTCPDFtagParameters</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodserializeTCPDFtagParameters">TCPDF::serializeTCPDFtagParameters()</a><br> Serialize an array of parameters to be used with TCPDF tag in HTML code.</dd>
<dt><b>setAlpha</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetAlpha">TCPDF::setAlpha()</a><br> Set alpha for stroking (CA) and non-stroking (ca) operations.</dd>
<dt><b>SetAuthor</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetAuthor">TCPDF::SetAuthor()</a><br> Defines the author of the document.</dd>
<dt><b>SetAutoPageBreak</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetAutoPageBreak">TCPDF::SetAutoPageBreak()</a><br> Enables or disables the automatic page breaking mode. When enabling, the second parameter is the distance from the bottom of the page that defines the triggering limit. By default, the mode is on and the margin is 2 cm.</dd>
<dt><b>setBarcode</b></dt>
<dd>in file 2dbarcodes.php, method <a href="com-tecnick-tcpdf/TCPDF2DBarcode.html#methodsetBarcode">TCPDF2DBarcode::setBarcode()</a><br> Set the barcode.</dd>
<dt><b>setBarcode</b></dt>
<dd>in file barcodes.php, method <a href="com-tecnick-tcpdf/TCPDFBarcode.html#methodsetBarcode">TCPDFBarcode::setBarcode()</a><br> Set the barcode.</dd>
<dt><b>setBarcode</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetBarcode">TCPDF::setBarcode()</a><br> Set document barcode.</dd>
<dt><b>SetBooklet</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetBooklet">TCPDF::SetBooklet()</a><br> Set the booklet mode for double-sided pages.</dd>
<dt><b>setBuffer</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetBuffer">TCPDF::setBuffer()</a><br> Set buffer content (always append data).</dd>
<dt><b>setCellHeightRatio</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetCellHeightRatio">TCPDF::setCellHeightRatio()</a><br> Set the height of the cell (line height) respect the font height.</dd>
<dt><b>setCellMargins</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetCellMargins">TCPDF::setCellMargins()</a><br> Set the internal Cell margins.</dd>
<dt><b>SetCellPadding</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetCellPadding">TCPDF::SetCellPadding()</a><br> Set the same internal Cell padding for top, right, bottom, left-</dd>
<dt><b>setCellPaddings</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetCellPaddings">TCPDF::setCellPaddings()</a><br> Set the internal Cell paddings.</dd>
<dt><b>setColumnsArray</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetColumnsArray">TCPDF::setColumnsArray()</a><br> Set columns array.</dd>
<dt><b>SetCompression</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetCompression">TCPDF::SetCompression()</a><br> Activates or deactivates page compression. When activated, the internal representation of each page is compressed, which leads to a compression ratio of about 2 for the resulting document. Compression is on by default.</dd>
<dt><b>setContentMark</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetContentMark">TCPDF::setContentMark()</a><br> Set start-writing mark on selected page.</dd>
<dt><b>SetCreator</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetCreator">TCPDF::SetCreator()</a><br> Defines the creator of the document. This is typically the name of the application that generates the PDF.</dd>
<dt><b>SetDefaultMonospacedFont</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetDefaultMonospacedFont">TCPDF::SetDefaultMonospacedFont()</a><br> Defines the default monospaced font.</dd>
<dt><b>setDefaultTableColumns</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetDefaultTableColumns">TCPDF::setDefaultTableColumns()</a><br> Set the default number of columns in a row for HTML tables.</dd>
<dt><b>SetDisplayMode</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetDisplayMode">TCPDF::SetDisplayMode()</a><br> Defines the way the document is to be displayed by the viewer.</dd>
<dt><b>SetDrawColor</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetDrawColor">TCPDF::SetDrawColor()</a><br> Defines the color used for all drawing operations (lines, rectangles and cell borders). It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.</dd>
<dt><b>SetDrawColorArray</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetDrawColorArray">TCPDF::SetDrawColorArray()</a><br> Defines the color used for all drawing operations (lines, rectangles and cell borders).</dd>
<dt><b>SetDrawSpotColor</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetDrawSpotColor">TCPDF::SetDrawSpotColor()</a><br> Defines the spot color used for all drawing operations (lines, rectangles and cell borders).</dd>
<dt><b>setEqualColumns</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetEqualColumns">TCPDF::setEqualColumns()</a><br> Set multiple columns of the same size</dd>
<dt><b>setExtGState</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetExtGState">TCPDF::setExtGState()</a><br> Add an extgstate</dd>
<dt><b>SetFillColor</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetFillColor">TCPDF::SetFillColor()</a><br> Defines the color used for all filling operations (filled rectangles and cell backgrounds). It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.</dd>
<dt><b>SetFillColorArray</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetFillColorArray">TCPDF::SetFillColorArray()</a><br> Defines the color used for all filling operations (filled rectangles and cell backgrounds).</dd>
<dt><b>SetFillSpotColor</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetFillSpotColor">TCPDF::SetFillSpotColor()</a><br> Defines the spot color used for all filling operations (filled rectangles and cell backgrounds).</dd>
<dt><b>SetFont</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetFont">TCPDF::SetFont()</a><br> Sets the font used to print character strings.</dd>
<dt><b>setFontBuffer</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetFontBuffer">TCPDF::setFontBuffer()</a><br> Set font buffer content.</dd>
<dt><b>SetFontSize</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetFontSize">TCPDF::SetFontSize()</a><br> Defines the size of the current font.</dd>
<dt><b>setFontSpacing</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetFontSpacing">TCPDF::setFontSpacing()</a><br> Set the amount to increase or decrease the space between characters in a text.</dd>
<dt><b>setFontStretching</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetFontStretching">TCPDF::setFontStretching()</a><br> Set the percentage of character stretching.</dd>
<dt><b>setFontSubBuffer</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetFontSubBuffer">TCPDF::setFontSubBuffer()</a><br> Set font buffer content.</dd>
<dt><b>setFontSubsetting</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetFontSubsetting">TCPDF::setFontSubsetting()</a><br> Enable or disable default option for font subsetting.</dd>
<dt><b>setFooter</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetFooter">TCPDF::setFooter()</a><br> This method is used to render the page footer.</dd>
<dt><b>setFooterFont</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetFooterFont">TCPDF::setFooterFont()</a><br> Set footer font.</dd>
<dt><b>setFooterMargin</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetFooterMargin">TCPDF::setFooterMargin()</a><br> Set footer margin.</dd>
<dt><b>setFormDefaultProp</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetFormDefaultProp">TCPDF::setFormDefaultProp()</a><br> Set default properties for form fields.</dd>
<dt><b>setFrameAt</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodsetFrameAt">QRcode::setFrameAt()</a><br> Set frame value at specified position</dd>
<dt><b>setGraphicVars</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetGraphicVars">TCPDF::setGraphicVars()</a><br> Set graphic variables.</dd>
<dt><b>setHeader</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetHeader">TCPDF::setHeader()</a><br> This method is used to render the page header.</dd>
<dt><b>setHeaderData</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetHeaderData">TCPDF::setHeaderData()</a><br> Set header data.</dd>
<dt><b>setHeaderFont</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetHeaderFont">TCPDF::setHeaderFont()</a><br> Set header font.</dd>
<dt><b>setHeaderMargin</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetHeaderMargin">TCPDF::setHeaderMargin()</a><br> Set header margin.</dd>
<dt><b>setHtmlLinksStyle</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetHtmlLinksStyle">TCPDF::setHtmlLinksStyle()</a><br> Set the color and font style for HTML links.</dd>
<dt><b>setHtmlVSpace</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetHtmlVSpace">TCPDF::setHtmlVSpace()</a><br> Set the vertical spaces for HTML tags.</dd>
<dt><b>setImageBuffer</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetImageBuffer">TCPDF::setImageBuffer()</a><br> Set image buffer content.</dd>
<dt><b>setImageScale</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetImageScale">TCPDF::setImageScale()</a><br> Set the adjusting factor to convert pixels to user units.</dd>
<dt><b>setImageSubBuffer</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetImageSubBuffer">TCPDF::setImageSubBuffer()</a><br> Set image buffer content for a specified sub-key.</dd>
<dt><b>setJPEGQuality</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetJPEGQuality">TCPDF::setJPEGQuality()</a><br> Set the default JPEG compression quality (1-100)</dd>
<dt><b>SetKeywords</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetKeywords">TCPDF::SetKeywords()</a><br> Associates keywords with the document, generally in the form 'keyword1 keyword2 ...'.</dd>
<dt><b>setLanguageArray</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetLanguageArray">TCPDF::setLanguageArray()</a><br> Set language array.</dd>
<dt><b>setLastH</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetLastH">TCPDF::setLastH()</a><br> Set the last cell height.</dd>
<dt><b>SetLeftMargin</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetLeftMargin">TCPDF::SetLeftMargin()</a><br> Defines the left margin. The method can be called before creating the first page. If the current abscissa gets out of page, it is brought back to the margin.</dd>
<dt><b>SetLineStyle</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetLineStyle">TCPDF::SetLineStyle()</a><br> Set line style.</dd>
<dt><b>SetLineWidth</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetLineWidth">TCPDF::SetLineWidth()</a><br> Defines the line width. By default, the value equals 0.2 mm. The method can be called before the first page is created and the value is retained from page to page.</dd>
<dt><b>SetLink</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetLink">TCPDF::SetLink()</a><br> Defines the page and position a link points to.</dd>
<dt><b>setListIndentWidth</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetListIndentWidth">TCPDF::setListIndentWidth()</a><br> Set custom width for list indentation.</dd>
<dt><b>setLIsymbol</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetLIsymbol">TCPDF::setLIsymbol()</a><br> Set the default bullet to be used as LI bullet symbol</dd>
<dt><b>SetMargins</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetMargins">TCPDF::SetMargins()</a><br> Defines the left, top and right margins.</dd>
<dt><b>setOpenCell</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetOpenCell">TCPDF::setOpenCell()</a><br> Set the top/bottom cell sides to be open or closed when the cell cross the page.</dd>
<dt><b>setPage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetPage">TCPDF::setPage()</a><br> Move pointer at the specified document page and update page dimensions.</dd>
<dt><b>setPageBoxes</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetPageBoxes">TCPDF::setPageBoxes()</a><br> Set page boundaries.</dd>
<dt><b>setPageBuffer</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetPageBuffer">TCPDF::setPageBuffer()</a><br> Set page buffer content.</dd>
<dt><b>setPageFormat</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetPageFormat">TCPDF::setPageFormat()</a><br> Change the format of the current page</dd>
<dt><b>setPageMark</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetPageMark">TCPDF::setPageMark()</a><br> Set start-writing mark on current page stream used to put borders and fills.</dd>
<dt><b>setPageOrientation</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetPageOrientation">TCPDF::setPageOrientation()</a><br> Set page orientation.</dd>
<dt><b>setPageRegions</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetPageRegions">TCPDF::setPageRegions()</a><br> Set no-write regions on page.</dd>
<dt><b>setPageUnit</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetPageUnit">TCPDF::setPageUnit()</a><br> Set the units of measure for the document.</dd>
<dt><b>setPDFVersion</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetPDFVersion">TCPDF::setPDFVersion()</a><br> Set the PDF version (check PDF reference for valid values).</dd>
<dt><b>setPrintFooter</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetPrintFooter">TCPDF::setPrintFooter()</a><br> Set a flag to print page footer.</dd>
<dt><b>setPrintHeader</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetPrintHeader">TCPDF::setPrintHeader()</a><br> Set a flag to print page header.</dd>
<dt><b>SetProtection</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetProtection">TCPDF::SetProtection()</a><br> Set document protection Remark: the protection against modification is for people who have the full Acrobat product.</dd>
<dt><b>setRasterizeVectorImages</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetRasterizeVectorImages">TCPDF::setRasterizeVectorImages()</a><br> Enable/disable rasterization of vector images using ImageMagick library.</dd>
<dt><b>SetRightMargin</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetRightMargin">TCPDF::SetRightMargin()</a><br> Defines the right margin. The method can be called before creating the first page.</dd>
<dt><b>setRTL</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetRTL">TCPDF::setRTL()</a><br> Enable or disable Right-To-Left language mode</dd>
<dt><b>setSignature</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetSignature">TCPDF::setSignature()</a><br> Enable document signature (requires the OpenSSL Library).</dd>
<dt><b>setSignatureAppearance</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetSignatureAppearance">TCPDF::setSignatureAppearance()</a><br> Set the digital signature appearance (a cliccable rectangle area to get signature properties)</dd>
<dt><b>setSpacesRE</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetSpacesRE">TCPDF::setSpacesRE()</a><br> Set regular expression to detect withespaces or word separators.</dd>
<dt><b>SetSubject</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetSubject">TCPDF::SetSubject()</a><br> Defines the subject of the document.</dd>
<dt><b>setSVGStyles</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetSVGStyles">TCPDF::setSVGStyles()</a><br> Apply the requested SVG styles (*** TO BE COMPLETED ***)</dd>
<dt><b>setTableHeader</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetTableHeader">TCPDF::setTableHeader()</a><br> This method is used to render the table header on new page (if any).</dd>
<dt><b>setTempRTL</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetTempRTL">TCPDF::setTempRTL()</a><br> Force temporary RTL language direction</dd>
<dt><b>SetTextColor</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetTextColor">TCPDF::SetTextColor()</a><br> Defines the color used for text. It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.</dd>
<dt><b>SetTextColorArray</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetTextColorArray">TCPDF::SetTextColorArray()</a><br> Defines the color used for text. It can be expressed in RGB components or gray scale.</dd>
<dt><b>setTextRenderingMode</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetTextRenderingMode">TCPDF::setTextRenderingMode()</a><br> Set Text rendering mode.</dd>
<dt><b>SetTextSpotColor</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetTextSpotColor">TCPDF::SetTextSpotColor()</a><br> Defines the spot color used for text.</dd>
<dt><b>SetTitle</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetTitle">TCPDF::SetTitle()</a><br> Defines the title of the document.</dd>
<dt><b>SetTopMargin</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetTopMargin">TCPDF::SetTopMargin()</a><br> Defines the top margin. The method can be called before creating the first page.</dd>
<dt><b>setUserRights</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetUserRights">TCPDF::setUserRights()</a><br> Set User's Rights for PDF Reader WARNING: This is experimental and currently do not work.</dd>
<dt><b>setViewerPreferences</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetViewerPreferences">TCPDF::setViewerPreferences()</a><br> Set the viewer preferences dictionary controlling the way the document is to be presented on the screen or in print.</dd>
<dt><b>setVisibility</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodsetVisibility">TCPDF::setVisibility()</a><br> Set the visibility of the successive elements.</dd>
<dt><b>SetX</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetX">TCPDF::SetX()</a><br> Defines the abscissa of the current position.</dd>
<dt><b>SetXY</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetXY">TCPDF::SetXY()</a><br> Defines the abscissa and ordinate of the current position.</dd>
<dt><b>SetY</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSetY">TCPDF::SetY()</a><br> Moves the current abscissa back to the left margin and sets the ordinate.</dd>
<dt><b>set_mqr</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodset_mqr">TCPDF::set_mqr()</a><br> Sets the current active configuration setting of magic_quotes_runtime (if the set_magic_quotes_runtime function exist)</dd>
<dt><b>Skew</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSkew">TCPDF::Skew()</a><br> Skew.</dd>
<dt><b>SkewX</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSkewX">TCPDF::SkewX()</a><br> Skew horizontally.</dd>
<dt><b>SkewY</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSkewY">TCPDF::SkewY()</a><br> Skew vertically.</dd>
<dt><b>splitString</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodsplitString">QRcode::splitString()</a><br> splitString</dd>
<dt><b>StarPolygon</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodStarPolygon">TCPDF::StarPolygon()</a><br> Draws a star polygon</dd>
<dt><b>startPage</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodstartPage">TCPDF::startPage()</a><br> Starts a new page to the document. The page must be closed using the endPage() function.</dd>
<dt><b>startPageGroup</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodstartPageGroup">TCPDF::startPageGroup()</a><br> Create a new page group.</dd>
<dt><b>startSVGElementHandler</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodstartSVGElementHandler">TCPDF::startSVGElementHandler()</a><br> Sets the opening SVG element handler function for the XML parser. (*** TO BE COMPLETED ***)</dd>
<dt><b>startTemplate</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodstartTemplate">TCPDF::startTemplate()</a><br> Start a new XObject Template.</dd>
<dt><b>startTransaction</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodstartTransaction">TCPDF::startTransaction()</a><br> Stores a copy of the current TCPDF object used for undo operation.</dd>
<dt><b>StartTransform</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodStartTransform">TCPDF::StartTransform()</a><br> Starts a 2D tranformation saving current graphic state.</dd>
<dt><b>StopTransform</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodStopTransform">TCPDF::StopTransform()</a><br> Stops a 2D tranformation restoring previous graphic state.</dd>
<dt><b>stringLeftTrim</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodstringLeftTrim">TCPDF::stringLeftTrim()</a><br> Left trim the input string</dd>
<dt><b>stringRightTrim</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodstringRightTrim">TCPDF::stringRightTrim()</a><br> Right trim the input string</dd>
<dt><b>stringTrim</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodstringTrim">TCPDF::stringTrim()</a><br> Trim the input string</dd>
<dt><b>STRUCTURE_HEADER_BITS</b></dt>
<dd>in file qrcode.php, constant <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#defineSTRUCTURE_HEADER_BITS">STRUCTURE_HEADER_BITS</a><br> Number of header bits for structured mode</dd>
<dt><b>str_split</b></dt>
<dd>in file qrcode.php, function <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---qrcode.php.html#functionstr_split">str_split()</a><br> Convert a string to an array (needed for PHP4 compatibility)</dd>
<dt><b>SVGPath</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSVGPath">TCPDF::SVGPath()</a><br> Draws an SVG path</dd>
<dt><b>SVGTransform</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodSVGTransform">TCPDF::SVGTransform()</a><br> Apply SVG graphic transformation matrix.</dd>
<dt><b>swapMargins</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodswapMargins">TCPDF::swapMargins()</a><br> Swap the left and right margins.</dd>
<dt><b>swapPageBoxCoordinates</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodswapPageBoxCoordinates">TCPDF::swapPageBoxCoordinates()</a><br> Swap X and Y coordinates of page boxes (change page boxes orientation).</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="t"></a>
<div>
<h2>t</h2>
<dl>
<dt><b>$tagvspaces</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$tagvspaces">TCPDF::$tagvspaces</a><br> Array used for custom vertical spaces for HTML tags</dd>
<dt><b>$tempfontsize</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$tempfontsize">TCPDF::$tempfontsize</a></dd>
<dt><b>$TextColor</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$TextColor">TCPDF::$TextColor</a></dd>
<dt><b>$textindent</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$textindent">TCPDF::$textindent</a><br> Text indentation value (used for text-indent CSS attribute)</dd>
<dt><b>$textlatch</b></dt>
<dd>in file pdf417.php, variable <a href="com-tecnick-tcpdf/PDF417.html#var$textlatch">PDF417::$textlatch</a></dd>
<dt><b>$textrendermode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$textrendermode">TCPDF::$textrendermode</a><br> Text rendering mode: 0 = Fill text; 1 = Stroke text; 2 = Fill, then stroke text; 3 = Neither fill nor stroke text (invisible); 4 = Fill text and add to path for clipping; 5 = Stroke text and add to path for clipping; 6 = Fill, then stroke text and add to path for clipping; 7 = Add text to path for clipping.</dd>
<dt><b>$textstrokewidth</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$textstrokewidth">TCPDF::$textstrokewidth</a><br> Text stroke width in doc units</dd>
<dt><b>$textsubmodes</b></dt>
<dd>in file pdf417.php, variable <a href="com-tecnick-tcpdf/PDF417.html#var$textsubmodes">PDF417::$textsubmodes</a></dd>
<dt><b>$thead</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$thead">TCPDF::$thead</a><br> Table header content to be repeated on each new page</dd>
<dt><b>$theadMargins</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$theadMargins">TCPDF::$theadMargins</a><br> Margins used for table header.</dd>
<dt><b>$title</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$title">TCPDF::$title</a></dd>
<dt><b>$tMargin</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$tMargin">TCPDF::$tMargin</a></dd>
<dt><b>$tmprtl</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$tmprtl">TCPDF::$tmprtl</a></dd>
<dt><b>$tocpage</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$tocpage">TCPDF::$tocpage</a></dd>
<dt><b>$transfmatrix</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$transfmatrix">TCPDF::$transfmatrix</a><br> Array of transformation matrix</dd>
<dt><b>$transfmatrix_key</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$transfmatrix_key">TCPDF::$transfmatrix_key</a><br> Current key for transformation matrix</dd>
<dt><b>$transfmrk</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$transfmrk">TCPDF::$transfmrk</a><br> Array used to store positions of graphics transformation blocks inside the page buffer.</dd>
<dt><b>tcpdf_config.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config.php.html">tcpdf_config.php</a></dd>
<dt><b>tcpdf_config_alt.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---config---tcpdf_config_alt.php.html">tcpdf_config_alt.php</a></dd>
<dt><b>tcpdf.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---tcpdf.php.html">tcpdf.php</a></dd>
<dt><b>TCPDF</b></dt>
<dd>in file tcpdf.php, class <a href="com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br> This is a PHP class for generating PDF documents without requiring external extensions.<br /></dd>
<dt><b>TCPDF2DBarcode</b></dt>
<dd>in file 2dbarcodes.php, class <a href="com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br> PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).<br /></dd>
<dt><b>TCPDFBarcode</b></dt>
<dd>in file barcodes.php, class <a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br> PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).<br /></dd>
<dt><b>TCPDF_UNICODE_DATA</b></dt>
<dd>in file unicode_data.php, class <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br> This is a PHP class containing Unicde data for TCPDF library</dd>
<dt><b>Text</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodText">TCPDF::Text()</a><br> Prints a text cell at the specified position.</dd>
<dt><b>TextField</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodTextField">TCPDF::TextField()</a><br> Creates a text field</dd>
<dt><b>toUpper</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodtoUpper">QRcode::toUpper()</a><br> toUpper</dd>
<dt><b>Transform</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodTransform">TCPDF::Transform()</a><br> Apply graphic transformations.</dd>
<dt><b>Translate</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodTranslate">TCPDF::Translate()</a><br> Translate graphic object horizontally and vertically.</dd>
<dt><b>TranslateX</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodTranslateX">TCPDF::TranslateX()</a><br> Translate graphic object horizontally.</dd>
<dt><b>TranslateY</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodTranslateY">TCPDF::TranslateY()</a><br> Translate graphic object vertically.</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="u"></a>
<div>
<h2>u</h2>
<dl>
<dt><b>$underline</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$underline">TCPDF::$underline</a></dd>
<dt><b>$unicode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$unicode">TCPDF::$unicode</a></dd>
<dt><b>$uni_arabicsubst</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_arabicsubst">TCPDF_UNICODE_DATA::$uni_arabicsubst</a></dd>
<dt><b>$uni_diacritics</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_diacritics">TCPDF_UNICODE_DATA::$uni_diacritics</a></dd>
<dt><b>$uni_laa_array</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_laa_array">TCPDF_UNICODE_DATA::$uni_laa_array</a></dd>
<dt><b>$uni_LRE</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_LRE">TCPDF_UNICODE_DATA::$uni_LRE</a></dd>
<dt><b>$uni_LRM</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_LRM">TCPDF_UNICODE_DATA::$uni_LRM</a></dd>
<dt><b>$uni_LRO</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_LRO">TCPDF_UNICODE_DATA::$uni_LRO</a></dd>
<dt><b>$uni_mirror</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_mirror">TCPDF_UNICODE_DATA::$uni_mirror</a></dd>
<dt><b>$uni_PDF</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_PDF">TCPDF_UNICODE_DATA::$uni_PDF</a></dd>
<dt><b>$uni_RE_PATTERN_ARABIC</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RE_PATTERN_ARABIC">TCPDF_UNICODE_DATA::$uni_RE_PATTERN_ARABIC</a></dd>
<dt><b>$uni_RE_PATTERN_RTL</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RE_PATTERN_RTL">TCPDF_UNICODE_DATA::$uni_RE_PATTERN_RTL</a></dd>
<dt><b>$uni_RLE</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RLE">TCPDF_UNICODE_DATA::$uni_RLE</a></dd>
<dt><b>$uni_RLM</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RLM">TCPDF_UNICODE_DATA::$uni_RLM</a></dd>
<dt><b>$uni_RLO</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RLO">TCPDF_UNICODE_DATA::$uni_RLO</a></dd>
<dt><b>$uni_type</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_type">TCPDF_UNICODE_DATA::$uni_type</a></dd>
<dt><b>$uni_utf8tolatin</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_utf8tolatin">TCPDF_UNICODE_DATA::$uni_utf8tolatin</a></dd>
<dt><b>$ur</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$ur">TCPDF::$ur</a><br> Array with additional document-wide usage rights for the document.</dd>
<dt><b>unicode_data.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---unicode_data.php.html">unicode_data.php</a></dd>
<dt><b>unhtmlentities</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodunhtmlentities">TCPDF::unhtmlentities()</a><br> Reverse function for htmlentities.</dd>
<dt><b>UniArrSubString</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodUniArrSubString">TCPDF::UniArrSubString()</a><br> Extract a slice of the $uniarr array and return it as string.</dd>
<dt><b>unichr</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodunichr">TCPDF::unichr()</a><br> Returns the unicode caracter specified by UTF-8 value</dd>
<dt><b>UTF8ArrayToUniArray</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodUTF8ArrayToUniArray">TCPDF::UTF8ArrayToUniArray()</a><br> Convert an array of UTF8 values to array of unicode characters</dd>
<dt><b>UTF8ArrSubString</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodUTF8ArrSubString">TCPDF::UTF8ArrSubString()</a><br> Extract a slice of the $strarr array and return it as string.</dd>
<dt><b>UTF8ArrToLatin1</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodUTF8ArrToLatin1">TCPDF::UTF8ArrToLatin1()</a><br> Converts UTF-8 characters array to array of Latin1 characters<br /></dd>
<dt><b>utf8Bidi</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodutf8Bidi">TCPDF::utf8Bidi()</a><br> Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).</dd>
<dt><b>utf8StrArrRev</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodutf8StrArrRev">TCPDF::utf8StrArrRev()</a><br> Reverse the RLT substrings array using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).</dd>
<dt><b>UTF8StringToArray</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodUTF8StringToArray">TCPDF::UTF8StringToArray()</a><br> Converts UTF-8 strings to codepoints array.<br /></dd>
<dt><b>utf8StrRev</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodutf8StrRev">TCPDF::utf8StrRev()</a><br> Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).</dd>
<dt><b>UTF8ToLatin1</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodUTF8ToLatin1">TCPDF::UTF8ToLatin1()</a><br> Converts UTF-8 strings to Latin1 when using the standard 14 core fonts.<br /></dd>
<dt><b>UTF8ToUTF16BE</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodUTF8ToUTF16BE">TCPDF::UTF8ToUTF16BE()</a><br> Converts UTF-8 strings to UTF16-BE.<br /></dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="v"></a>
<div>
<h2>v</h2>
<dl>
<dt><b>$version</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$version">QRcode::$version</a></dd>
<dt><b>$versionPattern</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$versionPattern">QRcode::$versionPattern</a></dd>
<dt><b>$viewer_preferences</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$viewer_preferences">TCPDF::$viewer_preferences</a><br> PDF viewer preferences.</dd>
<dt><b>$visibility</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$visibility">TCPDF::$visibility</a><br> Restrict the rendering of some elements to screen or printout.</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="w"></a>
<div>
<h2>w</h2>
<dl>
<dt><b>$w</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$w">TCPDF::$w</a></dd>
<dt><b>$webcolor</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$webcolor">TCPDF::$webcolor</a></dd>
<dt><b>$width</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$width">QRcode::$width</a></dd>
<dt><b>$wPt</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$wPt">TCPDF::$wPt</a></dd>
<dt><b>Write</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodWrite">TCPDF::Write()</a><br> This method prints text from the current position.<br /></dd>
<dt><b>write1DBarcode</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodwrite1DBarcode">TCPDF::write1DBarcode()</a><br> Print a Linear Barcode.</dd>
<dt><b>write2DBarcode</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodwrite2DBarcode">TCPDF::write2DBarcode()</a><br> Print 2D Barcode.</dd>
<dt><b>writeBarcode</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodwriteBarcode">TCPDF::writeBarcode()</a><br> This function is DEPRECATED, please use the new write1DBarcode() function.</dd>
<dt><b>writeDiskCache</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodwriteDiskCache">TCPDF::writeDiskCache()</a><br> Writes data to a temporary file on filesystem.</dd>
<dt><b>writeFormatInformation</b></dt>
<dd>in file qrcode.php, method <a href="com-tecnick-tcpdf/QRcode.html#methodwriteFormatInformation">QRcode::writeFormatInformation()</a><br> Write Format Information on frame and returns the number of black bits</dd>
<dt><b>writeHTML</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodwriteHTML">TCPDF::writeHTML()</a><br> Allows to preserve some HTML formatting (limited support).<br /> IMPORTANT: The HTML must be well formatted - try to clean-up it using an application like HTML-Tidy before submitting.</dd>
<dt><b>writeHTMLCell</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodwriteHTMLCell">TCPDF::writeHTMLCell()</a><br> Prints a cell (rectangular area) with optional borders, background color and html text string.</dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="x"></a>
<div>
<h2>x</h2>
<dl>
<dt><b>$x</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$x">QRcode::$x</a></dd>
<dt><b>$x</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$x">TCPDF::$x</a></dd>
<dt><b>$xobjects</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$xobjects">TCPDF::$xobjects</a></dd>
<dt><b>$xobjid</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$xobjid">TCPDF::$xobjid</a></dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="y"></a>
<div>
<h2>y</h2>
<dl>
<dt><b>$y</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$y">TCPDF::$y</a></dd>
<dt><b>$y</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$y">QRcode::$y</a></dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="z"></a>
<div>
<h2>z</h2>
<dl>
<dt><b>$ZoomMode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$ZoomMode">TCPDF::$ZoomMode</a></dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<hr />
<a name="2"></a>
<div>
<h2>2</h2>
<dl>
<dt><b>2dbarcodes.php</b></dt>
<dd>procedural page <a href="com-tecnick-tcpdf/_PHPExcel---Shared---PDF---2dbarcodes.php.html">2dbarcodes.php</a></dd>
</dl>
</div>
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<div class="credit">
<hr />
Documentation generated on Sun, 27 Feb 2011 16:26:34 -0800 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div>
</td></tr></table>
</td>
</tr>
</table>
</body>
</html>