如何通过PHP执行WKHTMLTOPDF?

时间:2011-04-14 13:14:55

标签: php wkhtmltopdf

之前有人问过这个问题,但没有解决方案或接受的答案,我想在我的问题中尝试更全面,所以:

我正在尝试通过PHP在共享服务器上运行WKHTMLTOPDF(在这种情况下,它是MediaTemple(gs))。根据主机的说法,没有理由这不起作用,实际上它是通过SSH工作的。所以......

我尝试了各种各样的东西,最基本的东西什么也没做,只是默默地失败了:

exec("/path/to/binary/wkhtmltopdf http://www.google.com pdf1.pdf");

- Source: Question on Stack Overflow

完整的PHP绑定以及以下内容给了我错误,尽管我最好用谷歌搜索我无法弄清楚:

呼叫:

$html = file_get_contents("http://www.google.com");
$pdf = new WKPDF();
$pdf->set_html($html);
$pdf->render();
$pdf->output(WKPDF::$PDF_EMBEDDED,'sample.pdf');

- Source: WKHTMLTOPDF on Google Code

错误:

Fatal error: Uncaught exception 'Exception' with message 'WKPDF didn't return
any data. <pre>Loading pages (1/6) [> ] 0% [======> ] 10% terminate called
after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc </pre>'
in /path/to/wkhtmltopdf.php:206 Stack trace: #0 /path/to/index.php(8):
WKPDF->render() #1 {main} thrown in /path/to/wkhtmltopdf.php on line 206

一旦我得到了这个(下面是一个摘录,因为我现在无法重现它):

Qt Concurrent has caught an exception thrown from a worker thread. This is not
supported, exceptions thrown in worker threads must be caught before
control returns to Qt Concurrent.

我也尝试过其他一些选项但结果相同;没有PDF。那我现在该怎么办,怎么弄清楚出了什么问题呢?我的PHP水平是基本的,但我会尽我所能。

7 个答案:

答案 0 :(得分:36)

你也可以在这里试试我的项目。它为命令行实用程序提供了一个干净的OO接口:

https://github.com/mikehaertl/phpwkhtmltopdf

用法非常简单:

<?php
use mikehaertl\wkhtmlto\Pdf; 

$pdf = new Pdf;

// Add a HTML file, a HTML string or a page from a URL
$pdf->addPage('/home/joe/page.html');
$pdf->addPage('<html>....</html>');
$pdf->addPage('http://google.com');

// Add a cover (same sources as above are possible)
$pdf->addCover('mycover.html');

// Add a Table of contents
$pdf->addToc();

// Save the PDF
$pdf->saveAs('/tmp/new.pdf');

// ... or send to client for inline display
$pdf->send();

答案 1 :(得分:14)

查看snappy,这是一个PHP5库,允许从网址或html页面生成缩略图,快照或PDF。它是wkhtmltopdf / wkhtmltoimage的包装。

答案 2 :(得分:9)

您可能需要设置正确的标题并将其设置为application / pdf,并将其设置为内联,以便人们可以在浏览器中看到它(几乎每个最近的浏览器都支持此功能)并在需要时保存它。这是我正在使用的代码:

exec("/usr/local/bin/wkhtmltopdf ../uploads/test.pdf");
$file = "../uploads/test.pdf";
$pdf = file_get_contents("../uploads/test.pdf");

header('Content-Type: application/pdf');
header('Cache-Control: public, must-revalidate, max-age=0'); // HTTP/1.1
header('Pragma: public');
header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
header('Content-Length: '.strlen($pdf));
header('Content-Disposition: inline; filename="'.basename($file).'";');
ob_clean(); 
flush(); 
echo $pdf;
?>

答案 3 :(得分:8)

对于Linux:

exec('wkhtmltopdf http://somesite.com /home/user/file.pdf 2>&1');

适用于Windows:

<?php
exec('C://abc//wkhtmltopdf http://google.html form1.pdf');

echo "PDF Created Successfully";
?>

答案 4 :(得分:4)

要从php(在Linux上)创建pdf,您必须使用包装器。

$cmd = '/usr/bin/xvfb-run --server-args="-screen 0, 1920x1080x24" /usr/bin/wkhtmltopdf http://google.com /tmp/google.pdf';

exec($cmd);

答案 5 :(得分:2)

当你跑步时会发生什么:

$out = array();
exec("/path/to/binary/wkhtmltopdf http://www.google.com pdf1.pdf", $out);
print_r($out);

我的猜测是,由于您没有为文件指定任何文件夹,它会尝试将其写入当前工作目录。可能是(很可能是这种情况)webuser对该文件夹没有写权限。因此,您应该通过提供可由webuser写入的文件夹的完整路径来解决此问题。

exec("/path/to/binary/wkhtmltopdf http://www.google.com /path/to/pdf1.pdf");

除此之外,我不太确定wkhtmltopdf可以无头工作,可能需要运行X服务器(在不运行X的服务器上,你可以通过安装Xvfb并使用 xvfb-run来解决这个问题) 运行wkhtmltopdf)。

答案 6 :(得分:2)

这对我来说是一种预先生成PDF报告的方法,然后使用唯一的会话ID从(同一会话的)请求页面中获取它。

$cmd = "/usr/local/bin/wkhtmltopdf 'http://127.0.0.1/myApp/pdfReport.php?key=something' tmp_reports/report_".$_POST['sessionid'].".pdf";
exec($cmd);