我正在尝试使用 dompdf 和 phpdocx 将 .docx 文件转换为 .pdf 文件。但我收到错误 -
file_put_contents(output_files/img6203609b73e9bc858.png): failed to open stream: No such file or directory {"exception":"[object] (ErrorException(code: 0): file_put_contents(output_files/img6203609b73e9bc858.png): failed to open stream: No such file or directory at C:\\xampp\\htdocs\\customer-api-2.0.1\\vendor\\phpdocx\\Classes\\Phpdocx\\Transform\\TransformDocAdvDOMPDF.php:478)
这是我的代码 -
require_once '../vendor/dompdf/dompdf/autoload.inc.php';
$docx = new \Phpdocx\Create\CreateDocx();
$path = storage_path('app');
$dompdf = new \Dompdf\Dompdf();
$transform = new \Phpdocx\Transform\TransformDocAdvDOMPDF($path.'\document.docx');
$transform->setDOMPDF($dompdf);
$transform->transform($path.'\document.pdf');
我被严重困在这里。谁能帮我解决这个错误或建议我任何其他替代方案来实现我的目标