PHP
  Home arrow PHP arrow Page 4 - Constructing Multi-Line PDF Documents with PHP 5
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
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? 
Google.com  
PHP

Constructing Multi-Line PDF Documents with PHP 5
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 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:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log 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


    Constructing Multi-Line PDF Documents with PHP 5 - Building a multi-line PDF document using the set_text_pos() method
    ( Page 4 of 4 )

    As you learned in the previous section, including multiple lines of text in a given PDF file is actually a no-brainer process, since it only requires calling the handy “continue_text()” method as many times as necessary. However, it should be noticed that before displaying any strings on the file in question I utilized the “set_text_pos()” method to specify what X,Y coordinates should be used to start showing the pertinent text. This sounds pretty logical, right?

    You already understand how to put multiple lines of text in a specific PDF file. Therefore, the last example in this article will focus on demonstrating how to display several lines of text in a given PDF document, which will be positioned at different X,Y coordinates via the aforementioned “set_text_pos()” method.

    This being said, here’s the corresponding code sample, so have a look at it, please:

    // example creating a basic PDF document with PHP and multiple
    lines using the 'set_text_pos()' 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->set_text_pos(50,450);

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

      $pdf->set_text_pos(50,400);

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

      $pdf->set_text_pos(50,350);

      $pdf->show('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();

    }

    Certainly, after analyzing the signature of the above example, you’ll have to agree with me that positioning different chunks of text in a concrete PDF file using a set of predefined X,Y coordinates is a very understandable process, particularly when the respective “set_text_pos()” method is utilized.

    In addition to providing you with the previous code sample, I captured a screen shot below to show you the corresponding output generated by the example. Here it is:

    Well, at this point I assume that you are much better prepared to build a few basic multi-line PDF documents with PHP 5, particularly if you’ve studied in detail all of the code samples shown previously. As usual with many other topics on PHP development, practice is the best way to learn how to build dynamic PDF files, so I recommend that you create your own testing examples.

    Final thoughts

    In this second part of the series, you hopefully learned the basics for building basic PDF files that include multiple lines of text, via the proper combination of the useful “set_text_pos()”, “show()” and continue_text()” methods respectively.

    In the next tutorial, things will get even more interesting, since you’ll learn how to include some basic images into a given PDF document, in addition to building text flows.

    Now that you’ve been warned about the bunch of topics that will be covered in the upcoming tutorial, you won’t want to miss it!



     
     
    >>> More PHP Articles          >>> More By Alejandro Gervasio
     

       

    PHP ARTICLES

    - Implementing Factory Methods in PHP 5
    - Merging a File Split for FTP Upload using PHP
    - Getting Data from Yahoo Site Explorer Inboun...
    - Method Chaining: Adding More Selecting Metho...
    - How to Split a File During an FTP Upload Usi...
    - Expanding a Custom CodeIgniter Library with ...
    - Using the Yahoo Site Explorer Inbound Links ...
    - Building a CodeIgniter Custom Library with M...
    - Building an E-mini Trading System Using PHP ...
    - Completing the MySQL Class with Method Chain...
    - Building Dynamic Queries with Chainable Meth...
    - PHP Encryption and Decryption Methods
    - Building a MySQL Abstraction Class with Meth...
    - Completing a Sample String Processor with Me...
    - Mastering WHILE Loops for PHP and MySQL





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 6 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek