Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $this->mpdf = new Mpdf();
  2.  
  3. $this->mpdf->SetDisplayMode('fullpage');
  4. $this->mpdf->SetCompression(false);
  5. $this->mpdf->SetSourceFile(APP . 'Template' . DS . 'Pdf' . DS . 'sample.pdf');
  6. $tpl = $this->mpdf->ImportPage(1);
  7. $this->mpdf->AddPage();
  8. $this->mpdf->useTemplate($tpl);
  9.  
  10. $this->mpdf->Output(TMP . 'test.pdf');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement