PHP code example of alberon / htmltopdf

1. Go to this page and download the library: Download alberon/htmltopdf 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/ */

    

alberon / htmltopdf example snippets


    // Require the PDF class at the top of the file
    ffer to capture all the following html
    ob_start();
    // HTML CODE
    // Close the ob buffer and get the html into a variable
    $html = ob_get_clean();

    // Setup the PDF class with the generated html
    $pdf = new PDF($html);

    // Set wkhtmltopdf version
    $pdf->setVersion('amd64');

    // Set whether to 
bash
    curl -s https://getcomposer.org/installer | php