adobe photoshop 60 download

Adobe Premiere Pro CS5 discount free adobe dream weaver 8 download free download adobe distiller cheapest adobe photoshop free download full version where does adobe save download video files

adobe bridge download

Adobe Creative Suite 4 for Mac buy cheap download adobe photoshop elements 5 adobe download free premiere pro buy cheap adobe acrobat 8 download purchase adobe photoshop cs3 extended full download

free adobe download manager

buy cheap Adobe cs5 Design Premium for Mac adobe acrobat reader 6 0 1 free download adobe flashplayer download softpedia discount download adobe after effects download adobe after effects

free download adobe illustrator 9

cheapest Adobe cs5 for Mac adobe cs2 download free crack key generator how to download adobe flash movies cheapest adobe acrobat reader free download adobe 8 free download

free adobe download

Autodesk AutoCAD cheapest adobe download free premiere adobe distiller free download discount download adobe flashplayer free adobe download manager download

adobe audition 1 5 download

cheap AutoCAD Architecture adobe acrobat 8 free download adobe creative suite 2 download cheapest download adobe premiere pro cs3 download adobe reader cd

adobe encore menu download

cheapest Adobe Captivate CS5.5 download adobe ebook reader adobe photoshop elements 3 for mac download cheap download adobe photoshop 7 download adobe flash player

download adobe reader latest version

discount Creative Suite 5.5 download adobe photoshop cs2 adobe photoshop 8 free download full version discount download free adobe standard adobe flas player 9 download

download adobe photoshop mac free

Autodesk AutoCAD discount free adobe 8 download free download of adobe pagemaker buy cheap adobe dream weaver 8 download download adobe scanner

adobe reader download for mac

discount AutoCAD 2010 free adobe download free download of adobe reader buy cheap free download adobe photodeluxe home edition adobe flash player 8 download

adobe lightroom download

AutoCAD LT 2012 buy cheap adobe golive cs2 download freeware adobe acrobat download cheap adobe flash activex download download adobe flashplayer

adobe flash 9 download

adobe acrobat x buy cheap adobe free download software download adobe photoshop cs2 cheap download adobe audition 3 free adobe premiere download

adobe flash offline download

adobe creative suite 5 discount download adobe acrobat reader 8 adobe 9 download discount free adobe photoshop elements 6 download download adobe reader pdf free

search adobe reader 7 0 download

cheap adobe cs5 adobe acrobat writer free download adobe fine reader free download cheap adobe player download center adobe professional download

download adobe flashplayer free

Adobe cs5 Design Premium cheapest where free download adobe acrobat free download of adobe reader buy cheap adobe flash 7 download download adobe reader8

free adobe acrobat writer download

Adobe eLearning Suite cheap download adobe active x download adobe acrobat 7 updates discount download adobe flash 9 for h264 free adobe pdf maker download

adobe photo plus 6 download

discount Adobe eLearning Suite 2 download adobe photoshop cs2 adobe illustrator full crack download cheapest adobe photoshop download site adobe acrobat raeder v7 download

adobe flash player download for windows vista

discount Adobe Flash Catalyst CS5 adobe photo editor download adobe reader 6 free download discount download adobe flashplayer free free download adobe illustrator 9

adobe shockwave player download

discount Adobe Indesign CS5 free adobe dream weaver 8 download adobe photo free download cheapest adobe flash player downloader free download hunter grabber free adobe profesional 8 download

adobe type manager download free

discount Adobe Photoshop CS5 download adobe acrobat reader free old adobe software download discount download adobe flash player stand alone adobe acrobat update download

Generating PDF using Codeigniter | R&OS pdf class

Hello friends , I have stated using codeigniter framework for php. I would recommended codeigniter for all PHP developers.
Recently i had a task to generate PDF file in my codeigniter project ,there are many libraries like FPDF, Panda, DOM-pdf, R&OS to generate PDF documents with PHP.

I found a method to integrate R&OS pdf class file with codeigniter. I am sharing you the same.

Step 1

Download latest version of Codeigniter framework.

Step 2

Download the class files for pdf integration from here. The rar folder contains 2 folders.

1. library class files

2. fonts

Extract files under class files folder to application/libraries/

Extract fonts directory to root folder of your CI application.

Step 3

Now into final stage . Create a controller named home.php and paste the following code.


<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Home extends CI_Controller {

 function __construct()
 {
 parent::__construct();
 }

 function index()
 {
 $this->hello_world();
 }

 function hello_world()
 {
 $this->load->library('cezpdf');

 $this->cezpdf->ezText('Hello World', 12, array('justification' => 'center'));
 $this->cezpdf->ezSetDy(-10);

 $content = 'The quick, brown fox jumps over a lazy dog. DJs flock by when MTV ax quiz prog.
 Junk MTV quiz graced by fox whelps. Bawds jog, flick quartz, vex nymphs.';

 $this->cezpdf->ezText($content, 10);

 $this->cezpdf->ezStream();
 }

 function tables()
 {
 $this->load->library('cezpdf');

 $db_data[] = array('name' => 'Jon Doe', 'phone' => '111-222-3333', 'email' => 'jdoe@someplace.com');
 $db_data[] = array('name' => 'Jane Doe', 'phone' => '222-333-4444', 'email' => 'jane.doe@something.com');
 $db_data[] = array('name' => 'Jon Smith', 'phone' => '333-444-5555', 'email' => 'jsmith@someplacepsecial.com');

 $col_names = array(
 'name' => 'Name',
 'phone' => 'Phone Number',
 'email' => 'E-mail Address'
 );

 $this->cezpdf->ezTable($db_data, $col_names, 'Contact List', array('width'=>550));
 $this->cezpdf->ezStream();
 }

}

/* End of file welcome.php */
/* Location: ./application/controllers/home.php */

You are done .

Execute the code :

http://localhost/pdf/index.php/home/index – for basic pdf creation.

http://localhost/pdf/index.php/home/tables – for table creation.

Note: In Order to write the output as a .pdf file just change $this->cezpdf->ezStream(); to $this->cezpdf->ezOutput();

Complete Code :

create a folder named pdf in root directory of codeigniter project and replace the tables function in the above controller
[ home.php ] with the following.

function tables()
{
$this->load->helper('path');
$this->load->library('cezpdf');

$this->cezpdf->ezText('Hello World', 12, array('justification' => 'center'));
$this->cezpdf->ezSetDy(-10);

$db_data[] = array('name' => 'Jon Doe', 'phone' => '111-222-3333', 'email' => 'jdoe@someplace.com');
$db_data[] = array('name' => 'Jane Doe', 'phone' => '222-333-4444', 'email' => 'jane.doe@something.com');
$db_data[] = array('name' => 'Jon Smith', 'phone' => '333-444-5555', 'email' => 'jsmith@someplacepsecial.com');

$col_names = array(
 'name' => 'Name',
 'phone' => 'Phone Number',
 'email' => 'E-mail Address'
);

$this->cezpdf->ezTable($db_data, $col_names, 'Contact List', array('width'=>550));

$directory = './pdf/';
set_realpath($directory);

$file = $directory.date('d-m-Y h:i:s').'.pdf';

$pdfcode = $this->cezpdf->ezOutput();
$fp = fopen($file,'wb');
fwrite($fp,$pdfcode);
fclose($fp);
}

You are done !

About the Author: a holistic web developer , movie buff and technical blogger from queen of arabian sea.

RSSComments (5)

Leave a Reply | Trackback URL

  1. Ford says:

    Appears it is pretty active on this blog.

  2. Luís Felipe de Andrade says:

    Thanks a lot, this post save my life.

    I lose a few hours trying to do this on CI.

  3. Preetha says:

    Thanks……

  4. Manjunath says:

    Hi Achari,
    Great work!.
    Though I have question. Above R&OS generate PDF with table. But I would like to customize table rows and columns according to my needs. do you have any idea?

  5. om says:

    Thanks and my next query is that how can i add css in created pdf file

Leave a Reply

Get Adobe Flash playerPlugin by wpburn.com wordpress themes