PHP Classes

Laravel and PHP HTML to PDF converter: Generate PDF documents from HTML using wkhtmltopdf

Recommend this page to a friend!
  Info   View files Documentation   View files View files (5)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog (1)    
Last Updated Ratings Unique User Downloads Download Rankings
2023-05-30 (9 months ago) RSS 2.0 feedNot yet rated by the usersTotal: 213 All time: 8,319 This week: 107Up
Version License PHP version Categories
laravel-html2pdf 1.0.1The PHP License5HTML, PHP 5, Files and Folders, Unix
Description 

Author

This package can generate PDF documents from HTML using wkhtmltopdf.

It can take a HTML text string and converts it to a PDF document using the wkhtmltopdf by executing it under X-Windows environment that runs on a virtual image buffer on memory.

It does not require a graphics card for you to see the document on a screen to render the PDF document.

The generated PDF document is served for download as the output of the current script that is being executed.

Although the package was meant to be run using Laravel, it can be used without requiring that framework to be installed.

Picture of Nahidul Hasan
  Performance   Level  
Name: Nahidul Hasan <contact>
Classes: 14 packages by
Country: Bangladesh Bangladesh
Age: ???
All time rank: 264633 in Bangladesh Bangladesh
Week rank: 312 Up6 in Bangladesh Bangladesh Up
Innovation award
Innovation award
Nominee: 7x

Documentation

Laravel-Html2Pdf

Latest Stable Version Total Downloads Latest Unstable Version License

> A Simple package for easily generating PDF documents from HTML.This package is specially for laravel but you can use this without laravel.

Installation

Install wkhtmltopdf

This was tested on:

  • Ubuntu 14.04 x64
  • Ubuntu 16.04 x64
sudo apt-get update
sudo apt-get install xvfb libfontconfig wkhtmltopdf

For docker

RUN apt-get update && apt-get install xvfb libfontconfig wkhtmltopdf

Upddate Composer

composer require nahidulhasan/html2pdf

If laravel version < 5.5, add the ServiceProvider to the providers array in config/app.php

NahidulHasan\Html2pdf\Html2pdfServiceProvider::class,

You can optionally use the facade for shorter code. Add this to your facades:

'Pdf'  => NahidulHasan\Html2pdf\Facades\Pdf::class,

Basic Usage

To create PDF add something like this to one of your controllers.

use NahidulHasan\Html2pdf\Facades\Pdf;

$document = Pdf::generatePdf('<h1>Test</h1>');

You can also create PDF from directly calling laravel blade file. Suppose you have a mail template named greeting in view/mails folder and want to send parameter then you have to call generatePdf method as described in below


<!-- mail template stored in resources/views/mails/greeting.blade.php -->

$document =  Pdf::generatePdf(view('mails.greeting', ['name' => 'James', 'testVar' => 'demo']));


Now If you want to send mail to your client attaching pdf then you can follow this code

/
 * Build the message.
 *
 * @return $this
 */
public function build()
{
    return $this->from('username@gmail.com')
                ->view('mails.demo')
                ->attachData($document, 'Invoice.pdf');
}
  

Download pdf

Save the PDF to a file in a specific folder, and then download it

use NahidulHasan\Html2pdf\Pdf;

$obj = new Pdf();

$html = '<html><body>'
    . '<p>Put your html here, or generate it with your favourite '
    . 'templating system.</p>'
    . '</body></html>';

$invoice = $obj->generatePdf($html);

define('INVOICE_DIR', public_path('uploads/invoices'));

if (!is_dir(INVOICE_DIR)) {
    mkdir(INVOICE_DIR, 0755, true);
}

$outputName = str_random(10);
$pdfPath = INVOICE_DIR.'/'.$outputName.'.pdf';


File::put($pdfPath, $invoice);

$headers = [
    'Content-Type' => 'application/pdf',
    'Content-Disposition' =>  'attachment; filename="'.'filename.pdf'.'"',
];

return response()->download($pdfPath, 'filename.pdf', $headers);

Other Usage

It is also possible to use the following methods :



### Running without Laravel

You can use this library without using Laravel.

Example:

use NahidulHasan\Html2pdf\Pdf;

$obj = new Pdf(); $document = $obj->generatePdf('<h1>Test</h1>');


### License

Html2PDF for Laravel is open-sourced software licensed under the MIT license

  Files folder image Files  
File Role Description
Files folder imagesrc (2 files, 1 directory)
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  src  
File Role Description
Files folder imageFacades (1 file)
  Plain text file Html2pdfServiceProvider.php Class Class source
  Plain text file Pdf.php Class Class source

  Files folder image Files  /  src  /  Facades  
File Role Description
  Plain text file Pdf.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 100%
Total:213
This week:0
All time:8,319
This week:107Up