无法将“ wkhtmltopdf.exe”识别为内部或外部命令,可运行程序或批处理文件

时间:2019-03-01 22:08:12

标签: php wkhtmltopdf

尝试使用此代码通过html生成wkhtmltopdf。但是给了我这个错误。

 require_once("wkhtmltopdf.php")
 $html=file_get_contents("http://www.facebook.com");
 $pdf = new WKPDF();
 $pdf->set_url($html);
 $pdf->render();
 $pdf->output(WKPDF::$PDF_EMBEDDED,‘sample.pdf’);

WKPDF程序错误。 结果:1   STDERR:无法将“ wkhtmltopdf.exe”识别为内部或外部命令,可操作程序或批处理文件。  标准输出

0 个答案:

没有答案