2017 © Pedro Peláez
 

library laravel-dompdf

A DOMPDF Wrapper for Laravel forks barryvdh/laravel-dompdf package

image

seguce92/laravel-dompdf

A DOMPDF Wrapper for Laravel forks barryvdh/laravel-dompdf package

  • Sunday, April 29, 2018
  • by seguce92
  • Repository
  • 1 Watchers
  • 1 Stars
  • 180 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 15 Versions
  • 16 % Grown

The README.md

DOMPDF Wrapper for Laravel 5.*

Installation

Laravel 5.x:

You can install the package for your Laravel 5 project through Composer., (*1)

$ composer require seguce92/laravel-dompdf

Register the service provider array in app/config/app.php., (*2)

Seguce92\DomPDF\ServiceProvider::class,

You can optionally use the facade for shorter code. Add this to your facades:, (*3)

'PDF' => Seguce92\DomPDF\Facade::class,

Lumen:

After updating composer add the following lines to register provider in bootstrap/app.php, (*4)

php $app->register(\Seguce92\DomPDF\ServiceProvider::class);, (*5)

To change the configuration, copy the config file to your config folder and enable it in bootstrap/app.php:, (*6)

php $app->configure('dompdf');, (*7)

Using

You can create a new DOMPDF instance and load a HTML string, file or view name. You can save it to a file, or stream (show in browser) or download., (*8)

$pdf = App::make('dompdf.wrapper');
$pdf->loadHTML('<h1>Test</h1>');
return $pdf->stream();

Or use the facade:, (*9)

$pdf = PDF::loadView('pdf.invoice', $data);
return $pdf->download('invoice.pdf');

You can chain the methods:, (*10)

return PDF::loadFile(public_path().'/myfile.html')->save('/path-to/my_stored_file.pdf')->stream('download.pdf');

You can change the orientation and paper size, and hide or show errors (by default, errors are shown when debug is on), (*11)

PDF::loadHTML($html)->setPaper('a4')->setOrientation('landscape')->setWarnings(false)->save('myfile.pdf')

You can add watermarks of type image and text, (*12)

```php
$pdf = App::make('dompdf.wrapper');
$pdf->setWatermarkImage('path/to/image.png');
$pdf->loadHTML('<h1>Test</h1>');
return $pdf->stream();
```

NOTE: enable "DOMPDF_ENABLE_FONTSUBSETTING" => true, in app/config/dompdf.php for correct operation of setWatermarkText [size change], (*13)

```php
$pdf = App::make('dompdf.wrapper');
$pdf->setWatermarkText('example', '150px');
$pdf->loadHTML('<html><head><title>Hello world</title><body><h1>example</h1></body></html>');
return $pdf->stream();
```

Methods property - setWatermarkImage, (*14)

```php
$pdf->setWatermarkImage($image, $opacity = 0.6, $top = '30%', $width = '100%', $height = '100%');
```

```php
$image = path to image file *.png, *.jpeg, ect
$opacity = values accept 1.0 - 0.11111
$top = margin respect to top page
$with = size image width
$height = size image height
  • setWatermarkText, (*15)

    $pdf->setWatermarkText($text, $size = '100px', $opacity = 0.6, $rotate = '10deg', $top = '30%')
    
    $text = text a view with watermark
    $size = font size
    $opacity = values accept 1.0 - 0.11111
    $rotate = rotation text in deg values  (css transform-rotate
    $top = margin respect to top page
    

If you need the output as a string, you can get the rendered PDF with the output() function, so you can save/output it yourself., (*16)

Use php artisan vendor:publish to create a config file located at config/dompdf.php which will allow you to define local configurations to change some settings (default paper etc). You can also use your ConfigProvider to set certain keys., (*17)

Tip: UTF-8 support

In your templates, set the UTF-8 Metatag:, (*18)

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

Tip: Page breaks

You can use the CSS page-break-before/page-break-after properties to create a new page., (*19)

<style>
.page-break {
    page-break-after: always;
}
</style>
<h1>Page 1</h1>
<div class="page-break"></div>
<h1>Page 2</h1>

Original Package

This DOMPDF Wrapper for Laravel is open-sourced software licensed under the barryvdh/laravel-dompdf Repository, (*20)

The Versions

29/04 2018

dev-master

9999999-dev

A DOMPDF Wrapper for Laravel forks barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

29/04 2018

v2.1.0

2.1.0.0

A DOMPDF Wrapper for Laravel forks barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

06/11 2017

v2.0

2.0.0.0

A DOMPDF Wrapper for Laravel forks barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

07/09 2017

v1.5.1

1.5.1.0

A DOMPDF Wrapper for Laravel forks barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

07/02 2017

v1.4.4

1.4.4.0

A DOMPDF Wrapper for Laravel forks barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

19/01 2017

v1.4.3

1.4.3.0

A DOMPDF Wrapper for Laravel forks barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

10/09 2016

v1.4.2

1.4.2.0

A DOMPDF Wrapper for Laravel mod barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

10/09 2016

v1.4.1

1.4.1.0

A DOMPDF Wrapper for Laravel mod barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

10/09 2016

v1.4

1.4.0.0

A DOMPDF Wrapper for Laravel mod barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

10/09 2016

v1.3

1.3.0.0

A DOMPDF Wrapper for Laravel mod barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

10/09 2016

v1.2.4

1.2.4.0

A DOMPDF Wrapper for Laravel mod barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

10/09 2016

v1.2.3

1.2.3.0

A DOMPDF Wrapper for Laravel mod barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

10/09 2016

v1.2

1.2.0.0

A DOMPDF Wrapper for Laravel mod barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

09/09 2016

v1.1.2

1.1.2.0

A DOMPDF Wrapper for Laravel mod barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf

09/09 2016

v1.1

1.1.0.0

A DOMPDF Wrapper for Laravel mod barryvdh/laravel-dompdf package

  Sources   Download

MIT

The Requires

 

laravel pdf dompdf