Created
July 11, 2016 15:43
-
-
Save theredstapler/9f3c5ae3760be50dae9e6f35ac63ad1e 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(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"); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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?