dompdf_font_family_cache.dist.php
3.8 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
<?php return array (
'sans-serif' =>
array (
'normal' => DOMPDF_FONT_DIR . 'Helvetica',
'bold' => DOMPDF_FONT_DIR . 'Helvetica-Bold',
'italic' => DOMPDF_FONT_DIR . 'Helvetica-Oblique',
'bold_italic' => DOMPDF_FONT_DIR . 'Helvetica-BoldOblique',
),
'times' =>
array (
'normal' => DOMPDF_FONT_DIR . 'Times-Roman',
'bold' => DOMPDF_FONT_DIR . 'Times-Bold',
'italic' => DOMPDF_FONT_DIR . 'Times-Italic',
'bold_italic' => DOMPDF_FONT_DIR . 'Times-BoldItalic',
),
'times-roman' =>
array (
'normal' => DOMPDF_FONT_DIR . 'Times-Roman',
'bold' => DOMPDF_FONT_DIR . 'Times-Bold',
'italic' => DOMPDF_FONT_DIR . 'Times-Italic',
'bold_italic' => DOMPDF_FONT_DIR . 'Times-BoldItalic',
),
'courier' =>
array (
'normal' => DOMPDF_FONT_DIR . 'Courier',
'bold' => DOMPDF_FONT_DIR . 'Courier-Bold',
'italic' => DOMPDF_FONT_DIR . 'Courier-Oblique',
'bold_italic' => DOMPDF_FONT_DIR . 'Courier-BoldOblique',
),
'helvetica' =>
array (
'normal' => DOMPDF_FONT_DIR . 'Helvetica',
'bold' => DOMPDF_FONT_DIR . 'Helvetica-Bold',
'italic' => DOMPDF_FONT_DIR . 'Helvetica-Oblique',
'bold_italic' => DOMPDF_FONT_DIR . 'Helvetica-BoldOblique',
),
'zapfdingbats' =>
array (
'normal' => DOMPDF_FONT_DIR . 'ZapfDingbats',
'bold' => DOMPDF_FONT_DIR . 'ZapfDingbats',
'italic' => DOMPDF_FONT_DIR . 'ZapfDingbats',
'bold_italic' => DOMPDF_FONT_DIR . 'ZapfDingbats',
),
'symbol' =>
array (
'normal' => DOMPDF_FONT_DIR . 'Symbol',
'bold' => DOMPDF_FONT_DIR . 'Symbol',
'italic' => DOMPDF_FONT_DIR . 'Symbol',
'bold_italic' => DOMPDF_FONT_DIR . 'Symbol',
),
'serif' =>
array (
'normal' => DOMPDF_FONT_DIR . 'Times-Roman',
'bold' => DOMPDF_FONT_DIR . 'Times-Bold',
'italic' => DOMPDF_FONT_DIR . 'Times-Italic',
'bold_italic' => DOMPDF_FONT_DIR . 'Times-BoldItalic',
),
'monospace' =>
array (
'normal' => DOMPDF_FONT_DIR . 'Courier',
'bold' => DOMPDF_FONT_DIR . 'Courier-Bold',
'italic' => DOMPDF_FONT_DIR . 'Courier-Oblique',
'bold_italic' => DOMPDF_FONT_DIR . 'Courier-BoldOblique',
),
'fixed' =>
array (
'normal' => DOMPDF_FONT_DIR . 'Courier',
'bold' => DOMPDF_FONT_DIR . 'Courier-Bold',
'italic' => DOMPDF_FONT_DIR . 'Courier-Oblique',
'bold_italic' => DOMPDF_FONT_DIR . 'Courier-BoldOblique',
),
'dejavu sans' =>
array (
'bold' => DOMPDF_FONT_DIR . 'DejaVuSans-Bold',
'bold_italic' => DOMPDF_FONT_DIR . 'DejaVuSans-BoldOblique',
'italic' => DOMPDF_FONT_DIR . 'DejaVuSans-Oblique',
'normal' => DOMPDF_FONT_DIR . 'DejaVuSans',
),
'dejavu sans light' =>
array (
'normal' => DOMPDF_FONT_DIR . 'DejaVuSans-ExtraLight',
),
'dejavu sans condensed' =>
array (
'bold' => DOMPDF_FONT_DIR . 'DejaVuSansCondensed-Bold',
'bold_italic' => DOMPDF_FONT_DIR . 'DejaVuSansCondensed-BoldOblique',
'italic' => DOMPDF_FONT_DIR . 'DejaVuSansCondensed-Oblique',
'normal' => DOMPDF_FONT_DIR . 'DejaVuSansCondensed',
),
'dejavu sans mono' =>
array (
'bold' => DOMPDF_FONT_DIR . 'DejaVuSansMono-Bold',
'bold_italic' => DOMPDF_FONT_DIR . 'DejaVuSansMono-BoldOblique',
'italic' => DOMPDF_FONT_DIR . 'DejaVuSansMono-Oblique',
'normal' => DOMPDF_FONT_DIR . 'DejaVuSansMono',
),
'dejavu serif' =>
array (
'bold' => DOMPDF_FONT_DIR . 'DejaVuSerif-Bold',
'bold_italic' => DOMPDF_FONT_DIR . 'DejaVuSerif-BoldItalic',
'italic' => DOMPDF_FONT_DIR . 'DejaVuSerif-Italic',
'normal' => DOMPDF_FONT_DIR . 'DejaVuSerif',
),
'dejavu serif condensed' =>
array (
'bold' => DOMPDF_FONT_DIR . 'DejaVuSerifCondensed-Bold',
'bold_italic' => DOMPDF_FONT_DIR . 'DejaVuSerifCondensed-BoldItalic',
'italic' => DOMPDF_FONT_DIR . 'DejaVuSerifCondensed-Italic',
'normal' => DOMPDF_FONT_DIR . 'DejaVuSerifCondensed',
),
) ?>