Exemple #1
0
 /**
  * Saves the pdf to the filesystem
  *
  * @param string $strFilename
  * @return void
  */
 public function savePdf($strFilename)
 {
     mb_internal_encoding('ASCII');
     $this->objPdf->Output(_realpath_ . $strFilename, "F");
     mb_internal_encoding('UTF-8');
 }