wkhtmltopdf codeigniter

ASD*_*ASD 2 codeigniter wkhtmltopdf

wkhtmltopdf听起来像一个很好的解决方案......问题是在exec上没有任何反应

shell_exec("c:\ wkhtmltopdf.exe"," http://www.google.com google.pdf");

我做错了吗?

Bar*_*art 6

你能用"官方"课程吗?

http://code.google.com/p/wkhtmltopdf/wiki/IntegrationWithPhp

如果没有,或许窥视他们如何做事将帮助您实施.

// Include WKPDF class.
require_once('wkhtmltopdf/wkhtmltopdf.php');

// Create PDF object.
$pdf = new WKPDF();
// Set PDF's HTML
$pdf->set_html('Hello <b>Mars<.b>!');
// Convert HTML to PDF
$pdf->render();
// Output PDF. The file name is suggested to the browser.
$pdf->output(WKPDF::$PDF_EMBEDDED, 'sample.pdf');
Run Code Online (Sandbox Code Playgroud)

编辑:

来自Githubs的新链接 - https://github.com/mikehaertl/phpwkhtmltopdf