如何在xampp上安装wkhtmltopdf?

发布于 2024-11-05 00:03:49 字数 155 浏览 1 评论 0原文

我想在我的 xampp 系统上安装 wkhtmltopdf 并在 php 下使用它。 任何想法如何做到这一点 - 有任何教程吗? :/ 我已经运行了 wkhtmltox-0.10.0_rc2-installer.exe 但它似乎没有改变我本地 xampp 系统上的任何内容。

谢谢

i'd like to install wkhtmltopdf on my xampp system and use it under php.
any ideas how to do it - is there any tutorial? :/
i've run the wkhtmltox-0.10.0_rc2-installer.exe but it seems like it didn't change anything on my local xampp system.

thanks

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

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

发布评论

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

评论(1

酷到爆炸 2024-11-12 00:03:50

安装程序默认将可执行文件提取到 C:\Program Files\wkhtmltopdf\ 下 - 或您指定的任何位置。

要在 PHP 中使用它,只需提供绝对路径:

exec("c:/programs/wkhtmltopdf/wkhtmltopdf.exe www.site.com pdf.pdf");

或者将 .exe 移至更容易访问的位置。 (你是否应该关心让事情变得更简单。)

The installer extracts the executable under C:\Program Files\wkhtmltopdf\ per default - or whatever you specified.

To use it from within PHP just supply the absolute path:

exec("c:/programs/wkhtmltopdf/wkhtmltopdf.exe www.site.com pdf.pdf");

Or move the .exe where it's easier accessible. (Should you care about making things simpler.)

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