Skip to content

Instantly share code, notes, and snippets.

@theredstapler
Created July 11, 2016 14:50
Show Gist options
  • Save theredstapler/af1efca7bf86c1fa3ee7705f5498ff89 to your computer and use it in GitHub Desktop.
Save theredstapler/af1efca7bf86c1fa3ee7705f5498ff89 to your computer and use it in GitHub Desktop.
<?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