コード例 #1
0
ファイル: tcpdf.php プロジェクト: bmdevel/ezc
 /**
  * Generate and return PDF
  *
  * Return the generated binary PDF content as a string.
  *
  * @return string
  */
 public function save()
 {
     $this->renderInternalLinks();
     return $this->document->Output('ignored', 'S');
 }
コード例 #2
0
ファイル: tcpdf.php プロジェクト: jackalope/jr_cr_demo
 /**
  * Generate and return PDF
  *
  * Return the generated binary PDF content as a string.
  * 
  * @return string
  */
 public function save()
 {
     return $this->document->Output('ignored', 'S');
 }