SetCreator('IcingaWeb'); $this->SetAuthor('IcingaWeb Team'); $this->SetTitle('IcingaWeb Sample PDF - Title'); $this->SetSubject('IcingaWeb Sample PDF - Subject'); $this->SetKeywords('IcingaWeb, Monitoring'); // set default header data // $pdf->SetHeaderData('tcpdf_logo.jpg', 30, 'Header title', // 'Header string', array(0,64,255), array(0,64,128)); // $pdf->setFooterData($tc=array(0,64,0), $lc=array(0,64,128)); $this->setHeaderFont(array('helvetica', '', 10)); $this->setFooterFont(array('helvetica', '', 8)); $this->SetDefaultMonospacedFont('courier'); $this->SetMargins(15, 27, 15); // left, top, right $this->SetHeaderMargin(5); $this->SetFooterMargin(10); $this->SetAutoPageBreak(true, 25); // margin bottom $this->setImageScale(1.75); $lang = array( 'a_meta_charset' => 'UTF-8', 'a_meta_dir' => 'ltr', 'a_meta_language' => 'de', 'w_page' => 'Seite', ); $this->setLanguageArray($lang); $this->setFontSubsetting(true); $this->SetFont('dejavusans', '', 16, '', true); } }