Skip to content

Instantly share code, notes, and snippets.

@thomascenni
Created October 13, 2020 00:49
Show Gist options
  • Save thomascenni/1f6efc6550df7c7738ea4e9eb502f2dc to your computer and use it in GitHub Desktop.
Save thomascenni/1f6efc6550df7c7738ea4e9eb502f2dc to your computer and use it in GitHub Desktop.
mPDF Example
{
"require": {
"mpdf/mpdf": "^8.0"
}
}
<?php
require_once __DIR__ . '/vendor/autoload.php';
$mpdf = new \Mpdf\Mpdf();
$mpdf->WriteHTML('<h1>Hello world!</h1>');
$mpdf->Output('doc.pdf');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment