Skip to content

Instantly share code, notes, and snippets.

@theredstapler
Created July 11, 2016 15:43
Show Gist options
  • Save theredstapler/9f3c5ae3760be50dae9e6f35ac63ad1e to your computer and use it in GitHub Desktop.
Save theredstapler/9f3c5ae3760be50dae9e6f35ac63ad1e 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(file_get_contents('sample.html'));
// (Optional) Setup the paper size and orientation
$dompdf->setPaper(array(0,0,850,1600), 'landscape');
// Render the HTML as PDF
$dompdf->render();
// Output the generated PDF to Browser
$dompdf->stream("samplepdf1");
?>
@eliesha
Copy link

eliesha commented Apr 8, 2019

This shows that it can only generate pdf of the file that exists inside the directory. It is possible to get the pdf by entering any URL?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment