*********************************************************
** This program is distributed under the LGPL License, **
** for more information see file _LGPL.txt or **
** http://www.gnu.org/licenses/lgpl.html **
** **
** Copyright 2000-2010 by Laurent Minguet **
*********************************************************
*******************************
* HTML2PDF v3.28 - 2010-01-18 *
*******************************
How to use :
------------
- You need at least PHP 4.3.10
- Look at the examples provided to see how it works.
- forms work only with ADOBE READER 8 and 9.0
- It is very important to provide valid HTML 4.01 to the converter,
but only what is in the
- for borders: it is advised that they are like "solid 1mm #000000"
- for padding, they are applicable only on tags table, th, td, div, li
- You can chose the encoding. A specific font must be used. The encodings available are:
cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1257, cp1258, cp874,
ISO-8859-1, ISO-8859-2, ISO-8859-4, ISO-8859-5, ISO-8859-7, ISO-8859-9,
ISO-8859-11, ISO-8859-15, ISO-8859-16, KOI8-R, KOI8-U
To use it: $html2pdf->setEncoding('cp1250');
- A default font can be specified, if the requested font does not exist or if no font is specified:
$html2pdf->setDefaultFont('Arial');
- The possibility to protect your PDF is present, CF Example 7. It uses the script
fpdf_protection of Klemen Vodopivec.
- Some tests can be enabled (true) or disabled (false) :
* setTestIsImage method: test that images must exist
* setTestTdInOnePage method: test that the contents of TDs fit on one page
- A DEBUG mode to know the resources used is present
It is activated by adding the following command just after the contructor (see Example 0):
$htmlpdf->setModeDebug();
- Some specific tags have been introduced:
* (CF Exemple 7) :
determines the orientation, margins left, right, top and bottom, the background image
and the background color of a page, its size and position, the footer.
It is also possible to keep the header and footer of the previous pages,
through the attribut pageset="old" (see Example 3)
* (CF Example 3)
* (CF Example 3)
* :
used to force the display of a section on the same page.
If this section does not fit into the rest of the page, a page break is done before.
* (CF Examples 0 et 9) :
can insert barcodes in pdfs, CF Examples 0 and 9
The possible types od codebar are: EAN13, UPC_A, CODE39.
This uses the scripts of The-eh and Olivier
* (CF Exemple 13) :
permet d'inserer un codebar à 2 dimensions de type QRcode
voici un exemple d'utilisation :
seul le parametre "value" est obligatoire
les différentes valeurs de type de correction sont L, M, Q, H
(QR Code is registered trademark of DENSO WAVE INCORPORATED | http://www.denso-wave.com/qrcode/)
ATTENTION : l'utilisation des QRCODE nécessite l'utilisation de PHP5
* (CF Examples 7 et About) :
can insert bookmark in pdfs, CF Example 7 and About.
It is also possible to automatically create an index at the end of
documentv CF Example About.
This uses the scripts of Olivier and Min's
* css property "rotate" :
values : 0, 90, 180, 270
works only on div (cf example 8)
change log :
-----------
see on this page : http://html2pdf.fr/en/download
Help & Support :
---------------
For questions and bug reports, thank you to use only the support link below.
I will answer to your questions only on it...
Informations :
-------------
Programming in PHP4
Programmer : Spipu
email : webmaster@html2pdf.fr
web site : http://html2pdf.fr/
wiki : http://html2pdf.fr/en/wiki
support : http://html2pdf.fr/en/forum
Thanks :
-------
* Olivier PLATHEY for his library Fpdf (http://www.fpdf.org/)
* yAronet for hosting support forum
* everyone who helped me to develop this library and to bring the texts