Created
September 14, 2016 22:23
-
-
Save valdiney/2462565addace44c5dfaae045d00238e to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
# 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