A Package for generating PDF files using PhantomJS, which fork from danielboendergaard/phantom-pdf
1,992
0
2
Package Data
Maintainer Username: TrungVuAnt
Maintainer Contact: trungvu@antking.com.vn (Trung Vu)
Package Create Date: 2015-07-17
Package Last Update: 2015-07-20
Language: PHP
License: MIT
Last Refreshed: 2024-04-23 03:14:14
Package Statistics
Total Downloads: 1,992
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 1
Total Open Issues: 0

Phantom PDF

A Package for generating PDF files using PhantomJS. The package is framework agnostic, but provides integration with Laravel 4/5.

Notice: This package only works on 64-bit Linux operating systems.

##Installation Run composer require antking/phantom-pdf

####Laravel 4 Installation (optional)

Add PhantomPdfServiceProvider in the providers array in app/config/app.php

'providers' => [
  ...
  'PhantomPdf\Laravel\PhantomPdfServiceProvider'
]

####Laravel 5 Installation (optional)

Add Laravel5ServiceProvider in the providers array in config/app.php

'providers' => [
  ...
  'PhantomPdf\Laravel\Laravel5ServiceProvider'
]

Laravel 4/5 Facade usage (optional)

Add the facade to the aliases array in app/config/app.php (optional)

'aliases' => [
  ...
  'PDF' => 'PhantomPdf\Laravel\PDFFacade'
]

##Usage with Laravel

class SampleController extends Controller {

  public function index()
  {
    $view = View::make('index');
    
    return PDF::createFromView($view, 'filename.pdf');
  }

  public function save()
  {
      $view = View::make('index');

      PDF::saveFromView($view, 'path/filename.pdf');
  }
}

##Usage outside Laravel


$pdf = new PdfGenerator;

// Set a writable path for temporary files
$pdf->setStoragePath('storage/path');

// Saves the PDF as a file
$pdf->saveFromView($html, 'filename.pdf');

// Returns a Symfony\Component\HttpFoundation\BinaryFileResponse
return $pdf->createFromView($html, 'filename.pdf');