web_interface/astpp/system/libraries/font/courier.php 1 location
|
@@ 6-7 (lines=2) @@
|
3 |
|
$name = 'Courier';
|
4 |
|
$up = -100;
|
5 |
|
$ut = 50;
|
6 |
|
for ($i = 0; $i <= 255; $i++)
|
7 |
|
$cw[chr($i)] = 600;
|
8 |
|
?>
|
9 |
|
|
web_interface/astpp/system/libraries/font/courierb.php 1 location
|
@@ 6-7 (lines=2) @@
|
3 |
|
$name = 'Courier-Bold';
|
4 |
|
$up = -100;
|
5 |
|
$ut = 50;
|
6 |
|
for ($i = 0; $i <= 255; $i++)
|
7 |
|
$cw[chr($i)] = 600;
|
8 |
|
?>
|
9 |
|
|
web_interface/astpp/system/libraries/font/courierbi.php 1 location
|
@@ 6-7 (lines=2) @@
|
3 |
|
$name = 'Courier-BoldOblique';
|
4 |
|
$up = -100;
|
5 |
|
$ut = 50;
|
6 |
|
for ($i = 0; $i <= 255; $i++)
|
7 |
|
$cw[chr($i)] = 600;
|
8 |
|
?>
|
9 |
|
|
web_interface/astpp/system/libraries/font/courieri.php 1 location
|
@@ 6-7 (lines=2) @@
|
3 |
|
$name = 'Courier-Oblique';
|
4 |
|
$up = -100;
|
5 |
|
$ut = 50;
|
6 |
|
for ($i = 0; $i <= 255; $i++)
|
7 |
|
$cw[chr($i)] = 600;
|
8 |
|
?>
|
9 |
|
|
web_interface/astpp/system/libraries/Fpdf.php 1 location
|
@@ 1668-1669 (lines=2) @@
|
1665 |
|
$this->_newobj();
|
1666 |
|
$cw = &$font['cw'];
|
1667 |
|
$s = '[';
|
1668 |
|
for ($i = 32; $i <= 255; $i++)
|
1669 |
|
$s .= $cw[chr($i)].' ';
|
1670 |
|
$this->_out($s.']');
|
1671 |
|
$this->_out('endobj');
|
1672 |
|
// Descriptor
|