BeCastWebEngine/thirdparty/tcpdf/mypdf.php
2025-06-20 19:10:23 +02:00

25 lines
822 B
PHP

<?php
require_once('config/lang/eng.php');
require_once('tcpdf.php');
// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends TCPDF {
//Page header
public function Header() {
// get the current page break margin
$bMargin = $this->getBreakMargin();
// get current auto-page-break mode
$auto_page_break = $this->AutoPageBreak;
// disable auto-page-break
$this->SetAutoPageBreak(false, 0);
// set bacground image
$this->Rect(0,0,210,297,'F','',$fill_color = array(18, 18, 15));
// restore auto-page-break status
$this->SetAutoPageBreak($auto_page_break, $bMargin);
// set the starting point for the page content
$this->setPageMark();
$this->SetTextColorArray(array(255, 255, 255));
}
}
?>