Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active July 24, 2021 22:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/455033d09a55dd235c5138fe72d1cae0 to your computer and use it in GitHub Desktop.
Save parzibyte/455033d09a55dd235c5138fe72d1cae0 to your computer and use it in GitHub Desktop.
<?php
include_once "./vendor/autoload.php";
use Dompdf\Dompdf;
$dompdf = new Dompdf();
ob_start();
include "./imagen.php";
$html = ob_get_clean();
$dompdf->loadHtml($html);
$dompdf->render();
header("Content-type: application/pdf");
header("Content-Disposition: inline; filename=documento.pdf");
echo $dompdf->output();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment