ensepar / html2pdf-bundle
Use HTML2PDF as a Symfony Service
Installs: 600 310
Dependents: 2
Suggesters: 0
Security: 0
Stars: 22
Watchers: 5
Forks: 22
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.2.5
- spipu/html2pdf: ~5.2
- symfony/dependency-injection: ^5.0|^6.0
- symfony/http-kernel: ^5.0|^6.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.4
- phpunit/phpunit: ^7.2|^8.5|^9.5
- symfony/framework-bundle: ^5.0|^6.0
- symfony/yaml: ^5.0|^6.0
This package is auto-updated.
Last update: 2024-10-29 03:52:45 UTC
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