Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created April 11, 2016 11:58
Show Gist options
  • Save Kcko/33f70acc66acf08833c7ef7ac061d0c7 to your computer and use it in GitHub Desktop.
Save Kcko/33f70acc66acf08833c7ef7ac061d0c7 to your computer and use it in GitHub Desktop.
MPDF , Nette , Latte, šablona do MPDF
<?php
$mpdf = new \mPDF('utf-8','A4','','',12,12,2,2,10,10, 'P');
$mpdf->useOnlyCoreFonts = true;
$mpdf->SetDisplayMode('fullpage');
$this->template->setFile(INDEX_DIR . '/app/FrontModule/templates/ConfigIt/pdf.latte');
$mpdf->WriteHTML((string) $this->template);
$mpdf->Output($name, 'd');
$this->terminate();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment