ensepar/html2pdf-bundle
最新稳定版本:v5.0.0
Composer 安装命令:
composer require ensepar/html2pdf-bundle
包简介
Use HTML2PDF as a Symfony Service
README 文档
README
Html2pdf for Symfony as a service.
How to install?
Just add this to your composer.json file:
"require": { ... "ensepar/html2pdf-bundle" : "^5.0" }
or via composer:
$ composer require ensepar/html2pdf-bundle
Enable it in bundles if not already
Ensepar\Html2pdfBundle\EnseparHtml2pdfBundle::class => ['all' => true],
How to use?
Via dependency injection:
class Html2Pdf { /** * @Route("/create") */ public function create(Html2pdfFactory $html2pdfFactory) { $html2pdf = $html2pdfFactory->create(); } }
Via the container:
$html2pdf = $this->get('html2pdf_factory')->create();
You can pass every option you would pass to html2pdf, for instance :
$html2pdf = $this->get('html2pdf_factory')->create('P', 'A4', 'en', true, 'UTF-8', [10, 15, 10, 15]);
If the previous arguments are not provided, the factory uses its own default values.
You can change those default values by adding the bundle configuration to your config file:
ensepar_html2pdf: orientation: 'P' format: 'A4' lang: 'en' unicode: true encoding: 'UTF-8' margin: [10, 15, 10, 15]
Read more on the library Html2pdf here.
How to run the tests?
$ composer install $ php vendor/bin/phpunit
统计信息
- 总下载量: 657.31k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 23
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2012-09-30