Exemple #1
0
 /**
  * Set the style to use for future drawing operations on this page
  *
  * @param Zend_Pdf_Style $style
  * @return Zend_Pdf_Page
  */
 public function setStyle(Zend_Pdf_Style $style)
 {
     $this->_style = $style;
     $this->_addProcSet('Text');
     $this->_addProcSet('PDF');
     if ($style->getFont() !== null) {
         $this->setFont($style->getFont(), $style->getFontSize());
     }
     $this->_contents .= $style->instructions($this->_pageDictionary->Resources);
     return $this;
 }