web/lib/Zend/Pdf/Canvas/Abstract.php
changeset 807 877f952ae2bd
parent 207 621fa6caec0c
child 1230 68c69c656a2c
equal deleted inserted replaced
805:5e7a0fedabdf 807:877f952ae2bd
    12  * obtain it through the world-wide-web, please send an email
    12  * obtain it through the world-wide-web, please send an email
    13  * to license@zend.com so we can send you a copy immediately.
    13  * to license@zend.com so we can send you a copy immediately.
    14  *
    14  *
    15  * @category   Zend
    15  * @category   Zend
    16  * @package    Zend_Pdf
    16  * @package    Zend_Pdf
    17  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    17  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    18  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    18  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    19  * @version    $Id: Style.php 20096 2010-01-06 02:05:09Z bkarwin $
    19  * @version    $Id: Style.php 20096 2010-01-06 02:05:09Z bkarwin $
    20  */
    20  */
    21 
    21 
    22 require_once 'Zend/Pdf/Canvas/Interface.php';
    22 require_once 'Zend/Pdf/Canvas/Interface.php';
    29 require_once 'Zend/Pdf/Element/Dictionary.php';
    29 require_once 'Zend/Pdf/Element/Dictionary.php';
    30 require_once 'Zend/Pdf/Element/Name.php';
    30 require_once 'Zend/Pdf/Element/Name.php';
    31 require_once 'Zend/Pdf/Element/Null.php';
    31 require_once 'Zend/Pdf/Element/Null.php';
    32 require_once 'Zend/Pdf/Element/Numeric.php';
    32 require_once 'Zend/Pdf/Element/Numeric.php';
    33 require_once 'Zend/Pdf/Element/String.php';
    33 require_once 'Zend/Pdf/Element/String.php';
       
    34 require_once 'Zend/Pdf/Resource/GraphicsState.php';
       
    35 require_once 'Zend/Pdf/Resource/Font.php';
       
    36 require_once 'Zend/Pdf/Resource/Image.php';
    34 
    37 
    35 
    38 
    36 /**
    39 /**
    37  * Canvas is an abstract rectangle drawing area which can be dropped into
    40  * Canvas is an abstract rectangle drawing area which can be dropped into
    38  * page object at specified place.
    41  * page object at specified place.
    39  *
    42  *
    40  * @package    Zend_Pdf
    43  * @package    Zend_Pdf
    41  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    44  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    42  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    45  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    43  */
    46  */
    44 abstract class Zend_Pdf_Canvas_Abstract implements Zend_Pdf_Canvas_Interface
    47 abstract class Zend_Pdf_Canvas_Abstract implements Zend_Pdf_Canvas_Interface
    45 {
    48 {
    46     /**
    49     /**