wkhtmltopdf 代码点火器

发布于 2024-09-14 08:08:42 字数 212 浏览 3 评论 0原文

wkhtmltopdf 听起来像是一个很好的解决方案...问题是 exec

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

我做错了什么吗?

wkhtmltopdf sounds like an excellent solution...the problem is nothing happens on the exec

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

Am i doing anything wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

贪恋 2024-09-21 08:08:42

可以使用“官方”课程吗?

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');

编辑:

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

Can you use the "official" class?

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

If not, perhaps peeking into how they did things will help you out with your implementation.

// 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');

Edit:

New link, from the Githubs - https://github.com/mikehaertl/phpwkhtmltopdf

在巴黎塔顶看东京樱花 2024-09-21 08:08:42

shell_exec() 仅采用一个参数,但您给了它两个参数。试试这个:

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

我想这样就可以了。您还可以考虑使用 exec() 函数。

shell_exec() only takes one parameter, but you have given it two. Try this instead:

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

I think that will do it. You might also consider using the exec() function.

像极了他 2024-09-21 08:08:42

添加 wkhtmltopdf.exe CLASS_PATH 变量的路径
并在您的 php 脚本中使用以下代码

passthru("wkhtmltopdf www.gmail.com output.pdf",$err);

// 我们将输出 PDF
header('内容类型:应用程序/pdf');

// 它将被称为downloaded.pdf
header('内容处置:附件;文件名=“output.pdf”');

// PDF源在original.pdf中
readfile('输出.pdf');

我希望这会起作用...

add path to wkhtmltopdf.exe CLASS_PATH variable
and in your php script use bellow code

passthru("wkhtmltopdf www.gmail.com output.pdf",$err);

// We'll be outputting a PDF
header('Content-type: application/pdf');

// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="output.pdf"');

// The PDF source is in original.pdf
readfile('output.pdf');

i hope this will work...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文