gmi/toolkit-pdftk
Composer 安装命令:
composer require gmi/toolkit-pdftk
包简介
PDFtk wrapper
README 文档
README
This library provides an object-oriented, simple interface for the most important PDFtk features.
The current build status and code analysis can be found here:
Requirements
- PHP 7.1.0 or higher
- mbstring extension
- pdftk
Installation
The recommended way to install toolkit-pdftk is via composer.
"require": { "gmi/toolkit-pdftk": "3.0.*" }
Usage examples
use Gmi\Toolkit\Pdftk\Bookmark; use Gmi\Toolkit\Pdftk\Pdftk; $source = '/path/to/source.pdf'; $target = '/path/to/target.pdf'; $pdftk = new Pdftk(); // import a source PDF (metadata, page information, bookmarks) $pdftk->import($source); // create an additional bookmark $exampleBookmark = new Bookmark(); $exampleBookmark ->setPageNumber(1) ->setLevel(2) ->setTitle('Section 3') ; // add the bookmark to the PDF $pdftk->bookmarks()->add($exampleBookmark); // set metadata entry for the PDF $pdftk->metadata()->set('Author', 'Jane Doe'); // apply bookmarks and metadata to the source PDF using a specified target PDF $pdftk->apply($source, $target);
Tests
The test suite can be run with vendor/bin/phpunit tests.
统计信息
- 总下载量: 142
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0-only
- 更新时间: 2018-12-05