PHP
  Home arrow PHP arrow Page 3 - Constructing Multi-Line PDF Documents ...
Dev Shed Forums 
Administration  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Dedicated Servers 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Download TestComplete 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PHP

Constructing Multi-Line PDF Documents with PHP 5
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 2
    2007-11-06

    Table of Contents:
  • Constructing Multi-Line PDF Documents with PHP 5
  • Review: building basic PDF documents using PHP 5
  • Displaying multiple lines of text on a single PDF document
  • Building a multi-line PDF document using the set_text_pos() method

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
     
    ADVERTISEMENT

    Route your faxes to your email inbox. Private, secure fax numbers available from CallWave. Choose your fax number.

    Constructing Multi-Line PDF Documents with PHP 5 - Displaying multiple lines of text on a single PDF document
    (Page 3 of 4 )

    As I anticipated in the previous section, the “PDFlib” library also incorporates a handy method, called “continue_text().” As its name clearly implies, it allows you to “continue” an existing line of text previously included into a given PDF document. This makes it possible to build several blocks of text that are composed of multiple lines.

    To demonstrate the implementation of this brand new method, below I listed an illustrative hands-on example. It first builds a basic PDF file, and then includes into it a few lines of trivial text.

    Having said that, please take a look at the corresponding code sample, which is as follows:

    // example creating a basic PDF document with PHP and multiple
    lines using the 'continue_text()' method

      try {

    // create new instance of the 'PDFlib' class

      $pdf=new PDFlib();

    // open new PDF file

        if(!$pdf->begin_document("","")){

    throw new PDFlibException("Error creating PDF document. ".$pdf-
    >get_errmsg());

    }

      $pdf->set_info("Creator","example.php");

      $pdf->set_info("Author","Alejandro Gervasio");

      $pdf->set_info("Title","Example on using PHP to create PDF
    docs");

      $pdf->begin_page_ext(421,595,"");

     

       $font=$pdf->load_font("Helvetica-Bold","winansi","");

      $pdf->setfont($font,24.0);

      $pdf->set_text_pos(50,500);

      $pdf->show("PHP is great for creating PDFs!");

      $pdf->continue_text('This is another line of text');

      $pdf->continue_text('This is another line of text');

      $pdf->continue_text('This is another line of text');

    // end page

      $pdf->end_page_ext("");

     

    // end document

      $pdf->end_document("");

    // get buffer contents

       $buffer=$pdf->get_buffer();

    // get length of buffer

        $len=strlen($buffer);

    // display PDF document

      header("Content-type: application/pdf");

      header("Content-Length: $len");

      header("Content-Disposition: inline; filename=example.pdf");

        echo $buffer;

    }

    catch (PDFlibException $e){

      echo 'Error Number:'.$e->get_errnum()."n";

      echo 'Error Message:'.$e->get_errmsg();

     exit();

    }

    As you can see, in this specific case I used the aforementioned “continue_text()” method that comes packaged with the “PDFLib” library to build a simple PDF file, which this time displays multiple lines of basic text. Obviously, the functionality offered by the method in question is indeed remarkable, since most PDF files display, in one form or another, more than one line of strings.

    To complement the above example, below I included an image that depicts the  output generated by the code sample that you learned previously. It is as follows:

    Pretty easy to grasp, right? At this point you hopefully learned how to build basic PDF documents that are capable of displaying multiple lines of simple text, directly from inside your PHP 5 scripts. So what’s the next step? Well, as you probably realized, the prior example used the “set_text_pos()” method to define the corresponding X,Y coordinates where the text should be displayed on the pertinent PDF document.

    Thus, considering the functionality provided by this method, in the last section of this tutorial I’m going to show you how to use it to display chunks of text at different positions on the same PDF file.

    To see how this will be achieved, please jump ahead and read the next few lines. I’ll be there, waiting for you.

    More PHP Articles
    More By Alejandro Gervasio


       · Over the course of this second installment of the series, you’ll learn the basics on...
     

       

    PHP ARTICLES

    - Setting Up a Web-based Image Hosting Service
    - Comparing Files and Databases with PHP Bench...
    - Setting Up a Web-Based Image Gallery
    - Using Timers to Benchmark PHP Applications
    - Benchmarking Applications with PHP
    - Setting Up a Web-Based File Manager: PHPfile...
    - Developing a Modular Class For a PHP File Up...
    - Setting Up a Web-Based File Manager: bfExplo...
    - Defining a Custom Function for File Uploader...
    - Parsing Child Nodes with the DOM XML extensi...
    - Creating an Error Handling Module for a PHP ...
    - Accessing Attributes and Cloning Nodes with ...
    - Retrieving Information on Selected Files wit...
    - Handling HTML Strings and Files with the DOM...
    - Building File Uploaders with PHP 5




    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway