Created
July 11, 2016 14:50
-
-
Save theredstapler/af1efca7bf86c1fa3ee7705f5498ff89 to your computer and use it in GitHub Desktop.
This file contains 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 | |
require_once 'dompdf/autoload.inc.php'; | |
// reference the Dompdf namespace | |
use Dompdf\Dompdf; | |
// instantiate and use the dompdf class | |
$dompdf = new Dompdf(); | |
$dompdf->loadHtml('hello world'); | |
// (Optional) Setup the paper size and orientation | |
$dompdf->setPaper('A4', 'landscape'); | |
// Render the HTML as PDF | |
$dompdf->render(); | |
// Output the generated PDF to Browser | |
$dompdf->stream("samplepdf1"); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment