summaryrefslogtreecommitdiffstats
path: root/src/exceptions/invalid_font.php
blob: 4cf9c4b55a162b4a74169cca4d81d54f0663c04d (plain)
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
<?php
/**
 * File containing the ezcGraphInvalidFontTypeException class
 *
 * @package Graph
 * @version //autogen//
 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
 * @license http://ez.no/licenses/new_bsd New BSD License
 */
/**
 * Exception thrown if font type cannot be rendered with one driver.
 *
 * @package Graph
 * @version //autogen//
 */
class ezcGraphInvalidFontTypeException extends ezcGraphException
{
    public function __construct( $type, $driver )
    {
        $fontNames = array(
            ezcGraph::TTF_FONT => 'True Type Font',
            ezcGraph::PS_FONT => 'Postscript Type 1 font',
            ezcGraph::PALM_FONT => 'Palm Font',
        );

        $fontName = ( isset( $fontNames[$type] )
            ? $fontName = $fontNames[$type]
            : 'Unknown'
        );

        parent::__construct( "Font type '{$fontName}' cannot be used with '{$driver}'." );
    }
}

?>
OpenPOWER on IntegriCloud