PHP code example of longinus / pdf-generator

1. Go to this page and download the library: Download longinus/pdf-generator library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

longinus / pdf-generator example snippets


composer 

$pdf = new PDFGenerator(['margin_left' => 5,   // Margem esquerda em px
            'margin_right' => 5,  // Margem direita em px
            'margin_top' => 5,    // Margem superior em px
            'margin_bottom' => 5, // Margem inferior em px
            'autopagebreak' => true]);
            //Aceitando configurações padrões da biblioteca Mpdf/mpdf
            
//Adição de paginas através de views
$pdf->addPageOnPdfWithView('caminho.da.view.padrão.View.laravel', ['DadosUtilizadosNaView' => $dados], false //Caso queira adicionar uma proxima página passar true); 

$pdf->generatePDFWithView('movimento_bancario') //Baixar PDF;