Created
April 11, 2016 11:58
-
-
Save Kcko/33f70acc66acf08833c7ef7ac061d0c7 to your computer and use it in GitHub Desktop.
MPDF , Nette , Latte, šablona do MPDF
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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