Sharavana Kumar
Sharavana Kumar

Reputation: 29

How to configuration the WkHtmlToPdf in PHP

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

Answers (1)

ChamCham
ChamCham

Reputation: 484

Add variable declaration line in your config.php:

$path_htmltopdf = 'C:\wkhtmltopdf\bin\wkhtmltopdf.exe';

Upvotes: 2

Related Questions