Reputation: 29
How to configure the WkHtmlToPdf in PHP?
I download the file from the below link of the GitHub through composer but I cannot configure in php
Please help me to configure the WkHtmlToPdf in php
This is the library I am using https://github.com/mikehaertl/phpwkhtmltopdf
Upvotes: 1
Views: 892
Reputation: 484
Add variable declaration line in your config.php
:
$path_htmltopdf = 'C:\wkhtmltopdf\bin\wkhtmltopdf.exe';
Upvotes: 2