2016-04-04 60 views
0

我新的laravel目前我有一個基於PDF的任務..要創建PDF添加在合併laravel

像:

Mearge PDF

創建PDF,

轉換PDF等

但問題是,當我在谷歌上搜索比PDF合併,但我不知道如何配置PDF合併或任何其他Github代碼laravel 。

請幫忙。我總是很感激。

感謝

鏈接,我發現了一些代碼:https://github.com/clegginabox/pdf-merger

$pdf = new \Clegginabox\PDFMerger\PDFMerger; 

$pdf->addPDF('samplepdfs/one.pdf', '1, 3, 4'); 
$pdf->addPDF('samplepdfs/two.pdf', '1-2'); 
$pdf->addPDF('samplepdfs/three.pdf', 'all'); 

//You can optionally specify a different orientation for each PDF 
$pdf->addPDF('samplepdfs/one.pdf', '1, 3, 4', 'L'); 
$pdf->addPDF('samplepdfs/two.pdf', '1-2', 'P); 

$pdf->merge('file', 'samplepdfs/TEST2.pdf', 'P'); 

// REPLACE 'file' WITH 'browser', 'download', 'string', or 'file' for output options 
// Last parameter is for orientation (P for protrait, L for Landscape). 
// This will be used for every PDF that doesn't have an orientation specified 

回答

0

如果我理解你的問題的權利,你只需要 「clegginabox/PDF合併」 補充說: 「DEV-大師」 給你composer.json放在您的laravel項目基礎路徑中的「require」部分。而不是從你的控制檯運行作曲家更新。如果你還沒有配置作曲家通過https://getcomposer.org/閱讀並且或者免費收聽https://laracasts.com/series/laravel-5-from-scratch

相關問題