Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 1.03 KB

File metadata and controls

35 lines (24 loc) · 1.03 KB

PHP WkHtmlToPdf - interface to wkhtmltopdf command

Packagist License

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.

Installation

Install the latest package version through Composer:

composer require mediatech/php-wkhtmltopdf:dev-master

or

"require": {
    "mediatech/php-wkhtmltopdf": "dev-master"
},

Using example

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);