Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 22, 2020 14:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/ccea641675a64fe428c1f7d7e1c0c5f2 to your computer and use it in GitHub Desktop.
Save parzibyte/ccea641675a64fe428c1f7d7e1c0c5f2 to your computer and use it in GitHub Desktop.
<?php
include_once "./vendor/autoload.php";
use Dompdf\Dompdf;
$dompdf = new Dompdf();
$dompdf->setPaper('b7', 'portrait');
ob_start();
include "./generar_ticket.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