interactively/pdfmerger
最新稳定版本:v1.0
Composer 安装命令:
composer require interactively/pdfmerger
包简介
PDFMerger for PHP (version 5.3 to 7.2)
关键字:
README 文档
README
PDFMerger forked from myokyawhtun/PDFMerger
New features:
- PSR-4 support
- Namespaces support
- Possibility to print header and/or footer on the merged pdf
PHP 7 Compatible
I tested with PHP 7.2.3 on my develpment machine and it works well.
Support of PDF 1.5 and PDF 1.6
FPDF and FPDI libraries replaced by TCPDF with TCPDI extension and parser.
Example Usage
$loader = require __DIR__ . '/../vendor/autoload.php'; $pdf = new andreaventuri\PdfMerger\PdfMerger; $pdf->addPDF('samplepdfs/one.pdf', '1, 3, 4'); $pdf->addPDF('samplepdfs/two.pdf', '1-2'); $pdf->addPDF('samplepdfs/three.pdf'); $pdf->merge('file', 'samplepdfs/TEST2.pdf'); // generate the file $pdf->merge('download', 'samplepdfs/test.pdf'); // force download // REPLACE 'file' WITH 'browser', 'download', 'string', or 'file' for output options
统计信息
- 总下载量: 22.17k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-01-06