private function init() {
     $this->setInitInfo();
     $this->setHeaderAndFooter();
     
 	$this->pdf->SetCreator($this->creator);
     $this->pdf->SetAuthor($this->author);
     $this->pdf->SetTitle($this->title);
     $this->pdf->SetSubject($this->subject);
     $this->pdf->SetKeywords($this->keywords);
     $this->pdf->SetFont($this->fontInfo["font"], $this->fontInfo["style"], $this->fontInfo["size"]);
     
     $this->pdf->AliasNbPages();
 }