Exemplo n.º 1
0
 protected function _setFontRegular($object, $size = 7)
 {
     if (!$this->getUseFont()) {
         return parent::_setFontRegular($object, $size);
     }
     $font = Zend_Pdf_Font::fontWithName(constant('Zend_Pdf_Font::FONT_' . $this->getUseFont()));
     $object->setFont($font, $size);
     return $font;
 }