Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 344 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 344 Bytes

wkhtmltopdf-online-client

PHP library for wkhtmltopdf-online

Usage example

require_once '/WkHtmlToPdf/WkHtmlToPdf/Converter.php';

$pdfGenerator = new WkHtmlToPdf_Converter();
$pdfContent = $pdfGenerator->convert( '<h1>HTML example</h1>' );
file_put_contents('example.pdf', $pdfContent);