Ejemplo n.º 1
1
 /**
  * Get PDF-Version
  *
  * And reset the PDF Version used in FPDI if needed
  */
 function getPDFVersion()
 {
     parent::getPDFVersion();
     if (isset($this->fpdi->importVersion) && $this->pdfVersion > $this->fpdi->importVersion) {
         $this->fpdi->importVersion = $this->pdfVersion;
     }
 }
Ejemplo n.º 2
0
 /**
  * Get PDF-Version
  *
  * And reset the PDF Version used in FPDI if needed
  */
 function getPDFVersion()
 {
     parent::getPDFVersion();
     $this->fpdi->PDFVersion = max($this->fpdi->PDFVersion, $this->pdfVersion);
 }
Ejemplo n.º 3
0
 /**
  * Get PDF-Version
  *
  * And reset the PDF Version used in FPDI if needed
  */
 function getPDFVersion()
 {
     parent::getPDFVersion();
     $this->fpdi->setPDFVersion(max($this->fpdi->getPDFVersion(), $this->pdfVersion));
 }