我是laravel的新手,目前我的任务基于PDF ..
喜欢:
Mearge PDF
创建PDF,
转换PDF等
但问题是,当我在谷歌上搜索而不是PDF合并但我不知道如何在laravel中配置PDF合并或任何其他Github代码。
请帮忙。我总是很感激。
谢谢
我找到一些代码的链接: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 :(得分:0)
如果我理解你的问题,你只需要添加" clegginabox / pdf-merger":" dev-master"你的composer.json在"要求"在laravel项目基本路径中找到的部分。而不是从您的控制台运行composer更新。如果您还没有配置作曲家通过https://getcomposer.org/阅读和/或听取https://laracasts.com/series/laravel-5-from-scratch免费。
答案 1 :(得分:0)