*
  • Courier - {@link Zend_Pdf_Resource_Font_Standard_Courier} *
  • Courier-Bold - {@link Zend_Pdf_Resource_Font_Standard_CourierBold} *
  • Courier-Oblique - {@link Zend_Pdf_Resource_Font_Standard_CourierOblique} *
  • Courier-BoldOblique - {@link Zend_Pdf_Resource_Font_Standard_CourierBoldOblique} *
  • Helvetica - {@link Zend_Pdf_Resource_Font_Standard_Helvetica} *
  • Helvetica-Bold - {@link Zend_Pdf_Resource_Font_Standard_HelveticaBold} *
  • Helvetica-Oblique - {@link Zend_Pdf_Resource_Font_Standard_HelveticaOblique} *
  • Helvetica-BoldOblique - {@link Zend_Pdf_Resource_Font_Standard_HelveticaBoldOblique} *
  • Symbol - {@link Zend_Pdf_Resource_Font_Standard_Symbol} *
  • Times - {@link Zend_Pdf_Resource_Font_Standard_Times} *
  • Times-Bold - {@link Zend_Pdf_Resource_Font_Standard_TimesBold} *
  • Times-Italic - {@link Zend_Pdf_Resource_Font_Standard_TimesItalic} *
  • Times-BoldItalic - {@link Zend_Pdf_Resource_Font_Standard_TimesBoldItalic} *
  • ZapfDingbats - {@link Zend_Pdf_Resource_Font_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-2007 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_Standard extends Zend_Pdf_Resource_Font { /**** Public Interface ****/ /* Object Lifecycle */ /** * Object constructor */ public function __construct() { parent::__construct(); $this->_resource->Subtype = new Zend_Pdf_Element_Name('Type1'); } }