PHP WkHtmlToPdf provides OOP interface to ease PDF creation from HTML contents using wkhtmltopdf command tool.
The wkhtmltopdf command tool must be installed previously on your server.
Install the latest package version through Composer:
composer require mediatech/php-wkhtmltopdf:dev-master
or
"require": {
"mediatech/php-wkhtmltopdf": "dev-master"
},
Load HTML from string and save contents to PDF specified file.
use MediaTech\Pdf;
$pdf = new Pdf();
$pdf->loadHtml('<div>test</div>')
->save(/path/to/file.pdf);