diff -r 000000000000 -r 4eba9c11703f web/Zend/Pdf/Resource/Font/Simple/Standard.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/Zend/Pdf/Resource/Font/Simple/Standard.php Mon Dec 13 18:29:26 2010 +0100 @@ -0,0 +1,82 @@ + + *
  • Courier - {@link Zend_Pdf_Resource_Font_Simple_Standard_Courier} + *
  • Courier-Bold - {@link Zend_Pdf_Resource_Font_Simple_Standard_CourierBold} + *
  • Courier-Oblique - {@link Zend_Pdf_Resource_Font_Simple_Standard_CourierOblique} + *
  • Courier-BoldOblique - {@link Zend_Pdf_Resource_Font_Simple_Standard_CourierBoldOblique} + *
  • Helvetica - {@link Zend_Pdf_Resource_Font_Simple_Standard_Helvetica} + *
  • Helvetica-Bold - {@link Zend_Pdf_Resource_Font_Simple_Standard_HelveticaBold} + *
  • Helvetica-Oblique - {@link Zend_Pdf_Resource_Font_Simple_Standard_HelveticaOblique} + *
  • Helvetica-BoldOblique - {@link Zend_Pdf_Resource_Font_Simple_Standard_HelveticaBoldOblique} + *
  • Symbol - {@link Zend_Pdf_Resource_Font_Simple_Standard_Symbol} + *
  • Times - {@link Zend_Pdf_Resource_Font_Simple_Standard_Times} + *
  • Times-Bold - {@link Zend_Pdf_Resource_Font_Simple_Standard_TimesBold} + *
  • Times-Italic - {@link Zend_Pdf_Resource_Font_Simple_Standard_TimesItalic} + *
  • Times-BoldItalic - {@link Zend_Pdf_Resource_Font_Simple_Standard_TimesBoldItalic} + *
  • ZapfDingbats - {@link Zend_Pdf_Resource_Font_Simple_Standard_ZapfDingbats} + * + * + * Font objects should be normally be obtained from the factory methods + * {@link Zend_Pdf_Font::fontWithName} and {@link Zend_Pdf_Font::fontWithPath}. + * + * @package Zend_Pdf + * @subpackage Fonts + * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License + */ +abstract class Zend_Pdf_Resource_Font_Simple_Standard extends Zend_Pdf_Resource_Font_Simple +{ + /**** Public Interface ****/ + + + /* Object Lifecycle */ + + /** + * Object constructor + */ + public function __construct() + { + $this->_fontType = Zend_Pdf_Font::TYPE_STANDARD; + + parent::__construct(); + $this->_resource->Subtype = new Zend_Pdf_Element_Name('Type1'); + } +}