1: <?php
2: /**
3: * Horde_Pdf package
4: *
5: * @license http://www.horde.org/licenses/lgpl21
6: * @category Horde
7: * @package Pdf
8: */
9:
10: /**
11: * Font width definition
12: *
13: * @category Horde
14: * @package Pdf
15: */
16: class Horde_Pdf_Font_Courieri
17: {
18: public function getWidths()
19: {
20: $fontWidths = array();
21: for ($i = 0; $i <= 255; $i++) {
22: $fontWidths['courierI'][chr($i)] = 600;
23: }
24: return $fontWidths;
25: }
26: }
27: