2017 © Pedro Peláez
 

symfony-bundle phantom-bundle

Generate pdf using phantomjs

image

falgun/phantom-bundle

Generate pdf using phantomjs

  • Wednesday, February 26, 2014
  • by rajuniit
  • Repository
  • 1 Watchers
  • 2 Stars
  • 60 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

FalgunPhantomBundle

A symfony 2 bundle to generate pdf using phantomjs., (*1)

## Installation

Step 1: You need to download Phantomjs in your machine to use the bundle

Install phantomjs 1.9.2 from this link http://phantomjs.org/download.html, (*2)

Step 2: Download FalgunPhantomBundle

Add FalgunPhantomBundle in your composer.json as below:, (*3)

"falgun/phantom-bundle": "dev-master"

Update/install with this command:, (*4)

php composer.phar update "falgun/phantom-bundle"
Step 2: Enable the bundle

Register the bundle, (*5)

public function registerBundles()
{
    $bundles = array(
        ...
        new Falgun\Bundle\PhantomBundle\FalgunPhantomBundle(),
);
Step 3: Activate the main configs
# app/config/config.yml
falgun_phantom:
  config:
    format: 'A3'
    margin: '.5cm'
    zoom: 1
    orientation: 'portrait'
    rendering_time: 1000
    viewport_width: 800
    viewport_height: 800
    rendering_timeout: 90000
    phantomjs: '/usr/local/bin/phantomjs'

How to use ?

public function indexAction()
{
    $falgun_pdf = $this->get('falgun_pdf');
    $result = $falgun_pdf->to_pdf("http://www.google.com");
}

The Versions

26/02 2014

dev-master

9999999-dev http://github.com/rajuniit/FalgunPhantomBundle

Generate pdf using phantomjs

  Sources   Download

MIT

The Requires

  • php >=5.3.2

 

The Development Requires

by Raju Mazumder

symfony2 pdf phantomjs