예제 #1
0
 /**
  * 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
 /**
  * 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());
 }