PHP code example of xmarcos / php-weasyprint

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

    

xmarcos / php-weasyprint example snippets




marcos\PhpWeasyPrint\Pdf;

$pdf = new Pdf('/usr/bin/weasyprint');

$pdf = new Pdf('/usr/bin/weasyprint');
header('Content-Type: application/pdf');
echo $pdf->getOutput('http://www.github.com');

$pdf = new Pdf('/usr/bin/weasyprint');
header('Content-Type: application/pdf');
header('Content-Disposition: attachment; filename="file.pdf"');
echo $pdf->getOutput('http://www.github.com');

$pdf = new Pdf('/usr/bin/weasyprint');
$pdf->generateFromHtml('<h1>Bill</h1><p>You owe me money, dude.</p>', '/tmp/bill-123.pdf');

$pdf = new Pdf('/usr/bin/weasyprint');
$pdf->generate('http://www.github.com', '/local/path-to.pdf');

// Type weasyprint -h to see the list of options
$pdf = new Pdf('/usr/bin/weasyprint');
$pdf->setOption('encoding', 'utf8');
$pdf->setOption('media-type', 'screen');
$pdf->setOption('presentational-hints');
$pdf->setOption('optimize-size', 'all');
$pdf->setOption('stylesheet', ['/path/to/first-style.css', '/path/to/second-style.css']);
$pdf->setOption('attachment', ['/path/to/image.png', '/path/to/logo.jpg']);

$pdf = new Pdf('/usr/bin/weasyprint');
// Set some options
$pdf->setOption('media-type', 'screen');
// ..
// Reset options
$pdf->resetOptions();
bash
composer