将DomPDF作为phpWord的pdf编写器

时间:2014-08-29 07:50:29

标签: php composer-php dompdf phpword

我在我的应用程序中使用了laravel,并且在:

中找到了dompdf
  

../供应商/ DOMPDF / DOMPDF

我想要实现的是将我的.docx文件(Microsoft Word)转换为.pdf文件。 docx文件是由phpWord通过加载模板文件并替换值生成的。

以下是片段:

 // Get the absolute path of the template file
 $wordTemplatePath = $this->getDocumentTemplatePath('resignation.docx');

 // Load the template file
  $document = $this->phpWord->loadTemplate($wordTemplatePath);

// This will be filled with data
 $wordData = []

.... Process to fill the data .....

// Replace value to actual word document
  $this->setTemplateValues($wordData, $document);


// Generate its filename
  $file = $this->generateFileName('Retirement-Certificate.docx', $id);

        // Fetch the absolute path to save the document
        $filepath = $this->getSavePath($file);

        // Save the word document
        $document->saveAs( $filepath );

之后,将生成.docx文件。我也想制作一个PDF版本。所以我搜索并找到了这段代码片段并添加到我的代码中:

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

//Load temp file
$phpWord = \PhpOffice\PhpWord\IOFactory::load($filepath); 

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

但我收到了这个错误:

    {"error":
{"type":"PhpOffice\\PhpWord\\Exception\\Exception","message":"PDF rendering library or library path has not been defined.",
"file":"C:\\xampp\\htdocs\\vagrant\\vendor\\phpoffice\\phpword\\src\\PhpWord\\Writer\\PDF.php",
"line":49}}

如何将DomPDF作为PHPWord的pdf编写器?我找不到任何其他选项,所以我在这里问。我希望你能帮助我。谢谢!

2 个答案:

答案 0 :(得分:6)

您必须将其设置为绝对路径。 把它放到你的bootstrap.php文件中。

define('PHPWORD_BASE_DIR', realpath(__DIR__));

这是你的电话:

$domPdfPath = realpath(PHPWORD_BASE_DIR . '/../vendor/dompdf/dompdf');
\PhpOffice\PhpWord\Settings::setPdfRendererPath($domPdfPath);
\PhpOffice\PhpWord\Settings::setPdfRendererName('DomPDF');

//Load temp file
$phpWord = \PhpOffice\PhpWord\IOFactory::load($filepath); 

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

答案 1 :(得分:4)

我认为@Franz Holzingers的答案是正确的,除了我今天安装的PHP字版本要求渲染器名称为DomPDF。如果全部大写如图所示,则该方法失败。我今天安装的版本也使用配置文件,因此当显式调用工作时,如果在加载配置文件后放置它们,如果在配置加载之前放置它们,它们将被覆盖。我建议一个更简单的答案是找到文件" phpword.ini.dist"位于上面的目录" src"在phpword安装目录中;编辑DomPDF目录的行以显示您安装DomPDF的位置,然后将文件保存在同一目录中,但名称为phpword.ini。现在,配置加载程序将执行Frank为您记录的调用。如果您错误地输入了DomPDF的路径,则不会收到警告,但您可以使用方法\ PhpOffice \ PhpWord \ Settings :: getPdfRendererPath(domPdfPath)测试它是否正确安装;如果该方法的返回为空,则表示您在配置文件中指定的路径名​​不存在。请注意,加载程序不检查路径是否包含DomPDF,只检查路径是否存在。

值得注意的是,目前,phpword支持三种PDF渲染引擎。通过提供安装路径并将PDF渲染器的名称设置为以下值之一(区分大小写):DomPDF,TCPDF或MPDF,可以在上述ini文件中配置三者中的任何一个。建议使用DomPDF和默认设置,但代码中会显示如果您有投资或偏好其他人,则可以将其与phpword一起使用。