We will learn about PDF Library in Perl. The main purpose of this library is to read, create and manipulate the PDF files with perl. This tutorial main idea is to provide some basics modules for accessing PDF.
Installation of library
You can find the latest version of this library at the below mentioned link
Click Here to download
Now, I will demonstrate some of the basics of this libraray using a simple program written in perl
use PDF;
$pdf=PDF->new ;
$pdf=PDF->new(filename);
$result=$pdf->TargetFile( filename );
print “is a pdf [...]
Comments Off
Categories: Perl
Comments Off
FPDF is a PHP class which allows to generate PDF files with pure PHP, that is to say without using the PDFlib library.
FPDF requires no extension (except zlib to activate compression and GD for GIF support). It works with PHP 4 and PHP 5 (the latest version requires at least PHP 4.3.10).
Using FPDF I will demonstrate hpw to add images and text. Firstly we need to download the library from the below mentioned URL’s
http://www.fpdf.org/
http://fpdi.setasign.de/index.php?p=home
Extract both packages in same folder and [...]
Categories: PHP

