gpt4 book ai didi

php - 使用 PHPWord 将 DOCX 转换为 PDF 时没有样式

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:43:15 26 4
gpt4 key购买 nike

我正在尝试使用 PHPWord 将 DOCX 文件转换为 PDF。当我执行脚本时,看起来有些样式元素没有被转换。在 DOCX 文件中,我有一张图片、两张带有 1px 边框和隐藏边框的表格,我正在使用 Tabs。

当我执行脚本时,我得到一个没有图像的 PDF 文件,所有的 Tab 都被空格替换,所有的表格都有一个 3px 的边框。

有人知道为什么我缺少这些样式吗?

这是我的脚本:

while ($data2 = mysql_fetch_array($rsSql)){
$countLines=$countLines+1;
$templateProcessor->setValue('quantity#'.$countLines, $data2['quantity']);
$templateProcessor->setValue('name#'.$countLines, $data2['name']);
$templateProcessor->setValue('price#'.$countLines, "€ " .$data2['price'] ."");
}

\PhpOffice\PhpWord\Settings::setPdfRenderer('./dompdf');
\PhpOffice\PhpWord\Settings::setPdfRendererPath('./dompdf');
\PhpOffice\PhpWord\Settings::setPdfRendererName('DOMPDF');

$temp_file = tempnam(sys_get_temp_dir(), 'Word');
\$templateProcessor->saveAS($temp_file);

$phpWord = \PhpOffice\PhpWord\IOFactory::load($temp_file);

$xmlWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord , 'PDF');
$xmlWriter->save('result.pdf');

header("Content-type:application/pdf");
header("Content-Disposition:attachment;filename='result.pdf'");
readfile("result.pdf");

最佳答案

查看源代码后,似乎 PHPWord 之前将文档转换为 HTML 表示形式 before 让它被保存通过另一个转换器 dompdf 转换成 PDF

这就是打开的issue #1139确认,而且它处理丢失的样式:

The PDF writers being used are taking in the HTML output, which also lacks the styling. The classes are being defined in the <style> tag, but they are just not being used.

还有 last message添加:

This still seems to be an issue. html and pdf outputs do not replicate the some styles in docx (header / footers).

关于你的边界问题,另一个SO question在转换 HTML -> PDF 中显示了类似的问题。 solution是编辑 CSS 样式,这显然不能在您的示例代码中执行,除非您继续预转换为 HTML。

总而言之,您可能无法在短期内解决您的问题。如果您不是开发团队的一员,您可以向他们提交错误报告(而不是向 dompdf,因为它是一个 HTML 到 PDF 的转换器,它们不在我们的范围之内)。 Github 允许您将 DOCX 文件添加到问题报告中。

备选方案

你可以查看一个 SO 问题 204860关于服务器端 PDF 编辑。下面有两种选择,一种是免费软件,另一种是闭源收费软件。

自由办公室

另一种方法是在headless 模式(没有界面的命令行执行)下使用LibreOffice:

libreoffice --headless --convert-to pdf <filename_to_convert>

LibreOffice 的 PHP 包装器 Office Converter 如果您不想通过 exec() 费心使用 libreoffice,也可以在这里使用.

检查 LibreOffice 转换是否适合您的需求(它可能无法涵盖所有​​情况,但会满足您的范围)。

提出

我在工作中用过的最好的转换器是 Aspose,它是一个涵盖 Documents with Aspose.Words 包、Worksheets with Aspose.Cells、Presentations with Aspose.Slides 等的 API。但它是封闭源代码和 pretty expensive (如果您在许可证到期后需要它们,您将 pay for updates)。

有一种方法可以通过 Java(Aspose。Words 和 Aspose。Cells)或 .NET(Aspose。Words Aspose。Cells)在 PHP 中使用它。

关于php - 使用 PHPWord 将 DOCX 转换为 PDF 时没有样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54616086/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com