예제 #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
 /**
  * Generate and return PDF
  *
  * Return the generated binary PDF content as a string.
  * 
  * @return string
  */
 public function save()
 {
     return $this->document->Output('ignored', 'S');
 }