我不知道如何使用Laravel編輯現有的pdf文件。Laravel編輯現有pdf
我發現了很多用於創建PDF的插件,但沒有人幫助我解決我的問題。
任何人都可以知道該怎麼做嗎?
非常感謝!
$pdf->AddPage();
$source = $pdf->setSourceFile(asset("assets/images/coupon/source/coupon.pdf"));
$tplIdx = $pdf->importPage(1);
$pdf->useTemplate($tplIdx, 10, 10, 90);
$pdf->SetXY(40, 0); //Doesn't work
$pdf->Write(0, 'This is just a simple text'); //Doesn't work
$pdf->Output(); //Doesn't work
'writeHTMLCell'不是'FPDF'方法。這個方法來自哪裏?此外,我從代碼中看到:您不想編輯PDF - 您只是想創建一個新的PDF?你沒有引用現有的PDF文件,因爲你缺少'$ pdf-> setSourceFile('PATH/TO/SOURCEFILE')' – codedge
這不是我的完全代碼我有SetSourceFile,ImportPage,UseTemplate,但SetXY和寫和輸出doesn不工作... – Nolkyz
好吧,它的工作!來源不是很好!非常感謝 ! – Nolkyz