1

我一直在尝试从 php 编译乳胶。我从本教程中得到了帮助。但是,我不断收到此错误。

错误:无效的外部参照流标头错误:无效的外部参照流标头 pdf.worker.js:232:5 XRef_readXRef@resource://pdf.js/build/pdf.worker.js:3708:13 XRef_parse@resource://pdf。 js/build/pdf.worker.js:3296:23 PDFDocument_setup@resource://pdf.js/build/pdf.worker.js:2469:7 PDFDocument_parse@resource://pdf.js/build/pdf.worker。 js:2350:7 ensureHelper@resource://pdf.js/build/pdf.worker.js:1971:22 NetworkPdfManager_ensure/<@resource://pdf.js/build/pdf.worker.js:1985:7 NetworkPdfManager_ensure @resource://pdf.js/build/pdf.worker.js:1965:1 BasePdfManager_ensureDoc@resource://pdf.js/build/pdf.worker.js:1832:14 loadDocument/

注意:我已经在 ubuntu 中安装了 texlive,所以我可以使用 pdftex。还安装了 xelatex。

Web 服务器内容:包含“latex_template.php” 的小乳胶文件, index.php包含以下 php 脚本。

   ob_start();
 include 'latex_template.php';
 $outputData .=ob_get_contents();
 ob_end_clean();

 $texFile = tempnam(sys_get_temp_dir(), 'test');

 $base = basename($texFile);

 rename($texFile, $texFile.".tex");
 $texFile .= ".tex";
 file_put_contents($texFile,  $outputData);
 chdir(dirname(realpath($texFile)));

 $console = shell_exec("xelatex {$base}" );
 //$console = system("xelatex {$base}" );

header('Content-Type: application/pdf');
$pdf = dirname(realpath($console)).DIRECTORY_SEPARATOR.$base.".pdf";

readfile($pdf);

注意:手动执行 xelatex: 日志文件: 在此处输入图像描述

4

0 回答 0