コード例 #1
0
ファイル: haru.php プロジェクト: jackalope/jr_cr_demo
 /**
  * Generate and return PDF
  *
  * Return the generated binary PDF content as a string.
  * 
  * @return string
  */
 public function save()
 {
     $this->document->saveToStream();
     return $this->document->readFromStream($this->document->getStreamSize());
 }
コード例 #2
0
ファイル: haru.php プロジェクト: jordanmanning/ezpublish
 /**
  * Generate and return PDF
  *
  * Return the generated binary PDF content as a string.
  *
  * @return string
  */
 public function save()
 {
     $this->renderInternalLinks();
     $this->document->saveToStream();
     return $this->document->readFromStream($this->document->getStreamSize());
 }