Laravel FPDI包,但未定义输出方法

bt1cpqcv  于 2023-01-10  发布在  其他
关注(0)|答案(1)|浏览(127)

我现在已经知道如何将https://manuals.setasign.com/fpdi-manual/v2/中的FPDI类实现到我的laravel项目中。现在我想我可以执行其中的一些方法,但是目前最重要的一个方法还没有定义:

$pdf2 = new Fpdi();
    $path2 = public_path() . '/storage/Template/testpdf3.pdf';
    $pdf2->setSourceFile($path2);
    $tplIdx = $pdf2->importPage(1);
    $pdf2->useTemplate($tplIdx, 10, 10, 100);
    $pdf2->Output(); -> this one getting undefined Method.

其他方法都可以。你有什么想法吗?谢谢!

oaxa6hgo

oaxa6hgo1#

谢谢你在vscode上使用的是哪个插件?另外,你可以安装laravel-ide-helper(github. com/barryvdh/laravel-ide-helper)并运行php artisan ide-helper:generate吗

相关问题