PHP code example of nuzkito / chrome-html-to-pdf
1. Go to this page and download the library: Download nuzkito/chrome-html-to-pdf 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/ */
nuzkito / chrome-html-to-pdf example snippets
use Nuzkito\ChromePdf\ChromePdf;
// By default it will search for Chrome in the default path in each OS,
$pdf = new ChromePdf();
// but you need it, you can specify the route to the binary.
$pdf = new ChromePdf('/path/to/google-chrome');
// Route when PDF will be saved.
$pdf->output('/path/to/result.pdf');
// You can generate a PDF from a url
$pdf->generateFromUrl('http://google.es');
// ... from a HTML file
$pdf->generateFromFile('/path/to/html/document.html');
// ... or pass a string containing the HTML.
$pdf->generateFromHtml('<h1>Hello world!</h1>');
$_ENV['chrome-executable'] = '/path/to/google-chrome';