Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@valdiney
Created September 14, 2016 22:23
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 valdiney/2462565addace44c5dfaae045d00238e to your computer and use it in GitHub Desktop.
Save valdiney/2462565addace44c5dfaae045d00238e to your computer and use it in GitHub Desktop.
<?php
# Incluindo a biblioteca
require_once("mpdf/mpdf.php");
# Criando a instancia do Objeto
$pdf = new Mpdf();
$html = "<h2>Usando a biblioteca MPDF.</h2>";
$pdf->SetDisplayMode('fullpage');
$pdf->SetFooter('wifiaqui.com.br');
$pdf->WriteHTML("css/print.css",1);
$pdf->WriteHTML($html);
# Gerando o PDF direto no Navegador
$pdf->Output();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment