source: trunk/filemanager/tp/dompdf/lib/fonts/dompdf_font_family_cache @ 2000

Revision 2000, 4.6 KB checked in by amuller, 14 years ago (diff)

Ticket #597 - Implementação do módulo gerenciador de arquivos

Line 
1array (
2  'sans-serif' =>
3  array (
4    'normal' => DOMPDF_FONT_DIR . 'Helvetica',
5    'bold' => DOMPDF_FONT_DIR . 'Helvetica-Bold',
6    'italic' => DOMPDF_FONT_DIR . 'Helvetica-BoldOblique',
7    'bold_italic' => DOMPDF_FONT_DIR . 'Helvetica-BoldOblique',   
8  ),
9  'times' =>
10  array (
11    'normal' => DOMPDF_FONT_DIR . 'Times-Roman',
12    'bold' => DOMPDF_FONT_DIR . 'Times-Bold',
13    'italic' => DOMPDF_FONT_DIR . 'Times-BoldItalic',
14    'bold_italic' => DOMPDF_FONT_DIR . 'Times-BoldItalic',
15  ),
16  'times-roman' =>
17  array (
18    'normal' => DOMPDF_FONT_DIR . 'Times-Roman',
19    'bold' => DOMPDF_FONT_DIR . 'Times-Bold',
20    'italic' => DOMPDF_FONT_DIR . 'Times-BoldItalic',
21    'bold_italic' => DOMPDF_FONT_DIR . 'Times-BoldItalic',
22  ),
23  'courier' =>
24  array (
25    'normal' => DOMPDF_FONT_DIR . 'Courier',
26    'bold' => DOMPDF_FONT_DIR . 'Courier-Bold',
27    'italic' => DOMPDF_FONT_DIR . 'Courier-BoldOblique',
28    'bold_italic' => DOMPDF_FONT_DIR . 'Courier-BoldOblique',
29  ),
30  'helvetica' =>
31  array (
32    'normal' => DOMPDF_FONT_DIR . 'Helvetica',
33    'bold' => DOMPDF_FONT_DIR . 'Helvetica-Bold',
34    'italic' => DOMPDF_FONT_DIR . 'Helvetica-BoldOblique',
35    'bold_italic' => DOMPDF_FONT_DIR . 'Helvetica-BoldOblique',   
36  ),
37  'zapfdingbats' =>
38  array (
39    'normal' => DOMPDF_FONT_DIR . 'ZapfDingbats',
40    'bold' => DOMPDF_FONT_DIR . 'ZapfDingbats',
41    'italic' => DOMPDF_FONT_DIR . 'ZapfDingbats',
42    'bold_italic' => DOMPDF_FONT_DIR . 'ZapfDingbats',   
43  ),
44  'serif' =>
45  array (
46    'normal' => DOMPDF_FONT_DIR . 'Times-Roman',
47    'bold' => DOMPDF_FONT_DIR . 'Times-Bold',
48    'italic' => DOMPDF_FONT_DIR . 'Times-Italic',
49    'bold_italic' => DOMPDF_FONT_DIR . 'Times-BoldItalic',
50  ),
51  'monospace' =>
52  array (
53    'normal' => DOMPDF_FONT_DIR . 'Courier',
54    'bold' => DOMPDF_FONT_DIR . 'Courier-Bold',
55    'italic' => DOMPDF_FONT_DIR . 'Courier-BoldOblique',
56    'bold_italic' => DOMPDF_FONT_DIR . 'Courier-BoldOblique',
57  ),
58  'fixed' =>
59  array (
60    'normal' => DOMPDF_FONT_DIR . 'Courier',
61    'bold' => DOMPDF_FONT_DIR . 'Courier-Bold',
62    'italic' => DOMPDF_FONT_DIR . 'Courier-BoldOblique',
63    'bold_italic' => DOMPDF_FONT_DIR . 'Courier-BoldOblique',
64  ),
65//  'arial' =>
66//  array (
67//    'normal' => DOMPDF_FONT_DIR . 'Arial',
68//    'bold' => DOMPDF_FONT_DIR . 'Arial_Bold',
69//    'italic' => DOMPDF_FONT_DIR . 'Arial_Italic',
70//    'bold_italic' => DOMPDF_FONT_DIR . 'Arial_Bold_Italic',
71//  ),
72//  'comic sans' =>
73//  array (
74//    'normal' => DOMPDF_FONT_DIR . 'Comic_Sans_MS.ttf',
75//    'bold' => DOMPDF_FONT_DIR . 'Comic_Sans_MS_Bold.ttf',
76//    'italic' => DOMPDF_FONT_DIR . 'Comic_Sans_MS.ttf',
77//    'bold_italic' => DOMPDF_FONT_DIR . 'Comic_Sans_MS.ttf',
78//  ),
79//  'georgia' =>
80//  array (
81//    'normal' => DOMPDF_FONT_DIR . 'Georgia',
82//    'bold' => DOMPDF_FONT_DIR . 'Georgia_Bold',
83//    'italic' => DOMPDF_FONT_DIR . 'Georgia_Italic',
84//    'bold_italic' => DOMPDF_FONT_DIR . 'Georgia_Bold_Italic',
85//  ),
86//  'lucida console' =>
87//  array (
88//    'normal' => DOMPDF_FONT_DIR . 'lucon',
89//    'bold' => DOMPDF_FONT_DIR . 'lucon',
90//    'italic' => DOMPDF_FONT_DIR . 'lucon',
91//    'bold_italic' => DOMPDF_FONT_DIR . 'lucon',
92//  ),
93//  'times new roman' =>
94//  array (
95//    'normal' => DOMPDF_FONT_DIR . 'Times_New_Roman',
96//    'bold' => DOMPDF_FONT_DIR . 'Times_New_Roman_Bold',
97//    'italic' => DOMPDF_FONT_DIR . 'Times_New_Roman_Italic',
98//    'bold_italic' => DOMPDF_FONT_DIR . 'Times_New_Roman_Bold_Italic',
99//  ),
100//  'trebuchet' =>
101//  array (
102//    'normal' => DOMPDF_FONT_DIR . 'Trebuchet_MS',
103//    'bold' => DOMPDF_FONT_DIR . 'Trebuchet_MS_Bold',
104//    'italic' => DOMPDF_FONT_DIR . 'Trebuchet_MS_Italic',
105//    'bold_italic' => DOMPDF_FONT_DIR . 'Trebuchet_MS_Bold_Italic',
106//  ),
107//  'trebuchet ms' =>
108//  array (
109//    'normal' => DOMPDF_FONT_DIR . 'Trebuchet_MS',
110//    'bold' => DOMPDF_FONT_DIR . 'Trebuchet_MS_Bold',
111//    'italic' => DOMPDF_FONT_DIR . 'Trebuchet_MS_Italic',
112//    'bold_italic' => DOMPDF_FONT_DIR . 'Trebuchet_MS_Bold_Italic',
113//  ),
114//  'silkscreen' =>
115//  array (
116//    'normal' => DOMPDF_FONT_DIR . 'slkscr',
117//    'bold' => DOMPDF_FONT_DIR . 'slkscrb',
118//    'italic' => DOMPDF_FONT_DIR . 'slkscr',
119//    'bold_italic' => DOMPDF_FONT_DIR . 'slkscr',
120//  ),
121//  'silkscreen expanded' =>
122//  array (
123//    'normal' => DOMPDF_FONT_DIR . 'slkscre',
124//    'bold' => DOMPDF_FONT_DIR . 'slkscreb',
125//    'italic' => DOMPDF_FONT_DIR . 'slkscre',
126//    'bold_italic' => DOMPDF_FONT_DIR . 'slkscre',
127//  ),
128//  'verdana' =>
129//  array (
130//    'normal' => DOMPDF_FONT_DIR . 'Verdana',
131//    'bold' => DOMPDF_FONT_DIR . 'Verdana_Bold',
132//    'italic' => DOMPDF_FONT_DIR . 'Verdana_Italic',
133//    'bold_italic' => DOMPDF_FONT_DIR . 'Verdana_Bold_Italic',
134//  ),
135)
Note: See TracBrowser for help on using the repository browser.