ensepar/html2pdf-bundle

Use HTML2PDF as a Symfony Service

Installs: 574 422

Dependents: 2

Suggesters: 0

Security: 0

Stars: 22

Watchers: 5

Forks: 22

Open Issues: 0

Type:symfony-bundle

v5.0.0-rc1 2022-01-03 11:51 UTC

This package is auto-updated.

Last update: 2024-02-29 02:08:11 UTC


README

Build Status

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