32
1
mirror of https://github.com/vdm-io/tcpdf.git synced 2024-11-22 21:05:10 +00:00
This commit is contained in:
nicolaasuni 2010-10-18 11:23:52 +02:00
parent d442a4a514
commit 770ad1c796
26 changed files with 25121 additions and 25111 deletions

View File

@ -1,3 +1,8 @@
5.9.004 (2010-10-18)
- A bug related to annotations was fixed.
- The file unicode_data.php was canged to encapsulate all data in a class.
- The file htmlcolors.php was changed to remove the global variable.
5.9.003 (2010-10-15) 5.9.003 (2010-10-15)
- Support for no-write page regions was added. Check the example n. 64 and new methods setPageRegions(), addPageRegion(), getPageRegions(), removePageRegion(). - Support for no-write page regions was added. Check the example n. 64 and new methods setPageRegions(), addPageRegion(), getPageRegions(), removePageRegion().
- A bug on Right-To-Left alignment was fixed. - A bug on Right-To-Left alignment was fixed.

View File

@ -1,86 +1,86 @@
TCPDF - README TCPDF - README
============================================================ ============================================================
I WISH TO IMPROVE AND EXPAND TCPDF BUT I NEED YOUR SUPPORT. I WISH TO IMPROVE AND EXPAND TCPDF BUT I NEED YOUR SUPPORT.
PLEASE MAKE A DONATION: PLEASE MAKE A DONATION:
http://sourceforge.net/donate/index.php?group_id=128076 http://sourceforge.net/donate/index.php?group_id=128076
------------------------------------------------------------ ------------------------------------------------------------
Name: TCPDF Name: TCPDF
Version: 5.9.003 Version: 5.9.004
Release date: 2010-10-15 Release date: 2010-10-18
Author: Nicola Asuni Author: Nicola Asuni
Copyright (c) 2002-2010: Copyright (c) 2002-2010:
Nicola Asuni Nicola Asuni
Tecnick.com s.r.l. Tecnick.com s.r.l.
Via Della Pace, 11 Via Della Pace, 11
09044 Quartucciu (CA) 09044 Quartucciu (CA)
ITALY ITALY
www.tecnick.com www.tecnick.com
URLs: URLs:
http: www.tcpdf.org http: www.tcpdf.org
http: www.sourceforge.net/projects/tcpdf http: www.sourceforge.net/projects/tcpdf
Description: Description:
TCPDF is a PHP class for generating PDF files on-the-fly without requiring external extensions. TCPDF is a PHP class for generating PDF files on-the-fly without requiring external extensions.
Main Features: Main Features:
* no external libraries are required for the basic functions; * no external libraries are required for the basic functions;
* all standard page formats, custom page formats, custom margins and units of measure; * all standard page formats, custom page formats, custom margins and units of measure;
* UTF-8 Unicode and Right-To-Left languages; * UTF-8 Unicode and Right-To-Left languages;
* TrueTypeUnicode, OpenTypeUnicode, TrueType, OpenType, Type1 and CID-0 fonts; * TrueTypeUnicode, OpenTypeUnicode, TrueType, OpenType, Type1 and CID-0 fonts;
* font subsetting; * font subsetting;
* methods to publish some XHTML + CSS code, Javascript and Forms; * methods to publish some XHTML + CSS code, Javascript and Forms;
* images, graphic (geometric figures) and transformation methods; * images, graphic (geometric figures) and transformation methods;
* supports JPEG, PNG and SVG images natively, all images supported by GD (GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM) and all images supported via ImagMagick (http: www.imagemagick.org/www/formats.html) * supports JPEG, PNG and SVG images natively, all images supported by GD (GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM) and all images supported via ImagMagick (http: www.imagemagick.org/www/formats.html)
* 1D and 2D barcodes: CODE 39, ANSI MH10.8M-1983, USD-3, 3 of 9, CODE 93, USS-93, Standard 2 of 5, Interleaved 2 of 5, CODE 128 A/B/C, 2 and 5 Digits UPC-Based Extention, EAN 8, EAN 13, UPC-A, UPC-E, MSI, POSTNET, PLANET, RMS4CC (Royal Mail 4-state Customer Code), CBC (Customer Bar Code), KIX (Klant index - Customer index), Intelligent Mail Barcode, Onecode, USPS-B-3200, CODABAR, CODE 11, PHARMACODE, PHARMACODE TWO-TRACKS, QR-Code, PDF417; * 1D and 2D barcodes: CODE 39, ANSI MH10.8M-1983, USD-3, 3 of 9, CODE 93, USS-93, Standard 2 of 5, Interleaved 2 of 5, CODE 128 A/B/C, 2 and 5 Digits UPC-Based Extention, EAN 8, EAN 13, UPC-A, UPC-E, MSI, POSTNET, PLANET, RMS4CC (Royal Mail 4-state Customer Code), CBC (Customer Bar Code), KIX (Klant index - Customer index), Intelligent Mail Barcode, Onecode, USPS-B-3200, CODABAR, CODE 11, PHARMACODE, PHARMACODE TWO-TRACKS, QR-Code, PDF417;
* Grayscale, RGB, CMYK, Spot Colors and Transparencies; * Grayscale, RGB, CMYK, Spot Colors and Transparencies;
* automatic page header and footer management; * automatic page header and footer management;
* document encryption and digital signature certifications; * document encryption and digital signature certifications;
* transactions to UNDO commands; * transactions to UNDO commands;
* PDF annotations, including links, text and file attachments; * PDF annotations, including links, text and file attachments;
* text rendering modes (fill, stroke and clipping); * text rendering modes (fill, stroke and clipping);
* multiple columns mode; * multiple columns mode;
* no-write page regions; * no-write page regions;
* bookmarks and table of content; * bookmarks and table of content;
* text hyphenation; * text hyphenation;
* text stretching and spacing (tracking/kerning); * text stretching and spacing (tracking/kerning);
* automatic page break, line break and text alignments including justification; * automatic page break, line break and text alignments including justification;
* automatic page numbering and page groups; * automatic page numbering and page groups;
* move and delete pages; * move and delete pages;
* page compression (requires php-zlib extension); * page compression (requires php-zlib extension);
* XOBject Templates; * XOBject Templates;
Installation (full instructions on http: www.tcpdf.org): Installation (full instructions on http: www.tcpdf.org):
1. copy the folder on your Web server 1. copy the folder on your Web server
2. set your installation path and other parameters on the config/tcpdf_config.php 2. set your installation path and other parameters on the config/tcpdf_config.php
3. call the examples/example_001.php page with your browser to see an example 3. call the examples/example_001.php page with your browser to see an example
Source Code Documentation: Source Code Documentation:
doc/index.html doc/index.html
For Additional Documentation: For Additional Documentation:
http: www.tcpdf.org http: www.tcpdf.org
License License
Copyright (C) 2002-2010 Nicola Asuni - Tecnick.com S.r.l. Copyright (C) 2002-2010 Nicola Asuni - Tecnick.com S.r.l.
TCPDF is free software: you can redistribute it and/or modify it TCPDF is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, either version 3 of the published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version. License, or (at your option) any later version.
TCPDF is distributed in the hope that it will be useful, but TCPDF is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with TCPDF. If not, see <http://www.gnu.org/licenses/>. along with TCPDF. If not, see <http://www.gnu.org/licenses/>.
See LICENSE.TXT file for more information. See LICENSE.TXT file for more information.
============================================================ ============================================================

View File

@ -58,9 +58,14 @@
<ul> <ul>
<li><a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a></li></ul> <li><a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a></li></ul>
<hr />
<div class="classtree">Root class TCPDF_UNICODE_DATA</div><br />
<ul>
<li><a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a></li></ul>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:04 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:39 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -1003,7 +1004,7 @@ $code)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:05 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:40 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -5551,7 +5552,7 @@ $frame)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:05 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:40 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

File diff suppressed because it is too large Load Diff

View File

@ -56,6 +56,7 @@
<a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -299,7 +300,7 @@ $type)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:04 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:39 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -1377,7 +1378,7 @@ $type)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:05 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:40 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -105,7 +106,7 @@ PHP class to creates array representations for 2D barcodes to be used with TCPDF
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:04 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:39 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -105,7 +106,7 @@ PHP class to creates array representations for common 1D barcodes to be used wit
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:05 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:40 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -542,7 +543,7 @@ Configuration file for TCPDF.<br /><br /><br /><br />
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:11 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:46 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -97,7 +98,7 @@ Array of WEB safe colors.<br /><br /><br /><br />
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:05 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:40 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -157,7 +158,7 @@ Class to create PDF417 barcode arrays for TCPDF class.<br /><br /><p>PDF417 (ISO
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:05 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:40 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -480,7 +481,7 @@ string $string, [int $split_length = 1])</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:05 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:40 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -82,7 +83,7 @@ This is a PHP class for generating PDF documents without requiring external exte
<td><b>author:</b>&nbsp;&nbsp;</td><td>Nicola Asuni</td> <td><b>author:</b>&nbsp;&nbsp;</td><td>Nicola Asuni</td>
</tr> </tr>
<tr> <tr>
<td><b>version:</b>&nbsp;&nbsp;</td><td>5.9.003</td> <td><b>version:</b>&nbsp;&nbsp;</td><td>5.9.004</td>
</tr> </tr>
<tr> <tr>
<td><b>copyright:</b>&nbsp;&nbsp;</td><td>2002-2010 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com</td> <td><b>copyright:</b>&nbsp;&nbsp;</td><td>2002-2010 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com</td>
@ -101,19 +102,17 @@ This is a PHP class for generating PDF documents without requiring external exte
<br /><br /> <br /><br />
<h4>Includes:</h4> <h4>Includes:</h4>
<div class="tags"> <div class="tags">
require_once(dirname(__FILE__).'/config/tcpdf_config.php') [line 143]<br /> require_once(dirname(__FILE__).'/config/tcpdf_config.php') [line 144]<br />
main configuration file<br /><br />require_once(dirname(__FILE__).'/htmlcolors.php') [line 155]<br /> main configuration file<br /><br /><p>(define the K_TCPDF_EXTERNAL_CONFIG constant to skip this file)</p><br /></div>
html colors table<br /><br />require_once(dirname(__FILE__).'/unicode_data.php') [line 150]<br />
unicode data<br /><br /></div>
<br /><br /> <br /><br />
<br /><br /> <br /><br />
<hr /> <hr />
<a name="definePDF_PRODUCER"></a> <a name="definePDF_PRODUCER"></a>
<h3>PDF_PRODUCER <span class="smalllinenumber">[line 161]</span></h3> <h3>PDF_PRODUCER <span class="smalllinenumber">[line 149]</span></h3>
<div class="tags"> <div class="tags">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>PDF_PRODUCER = 'TCPDF 5.9.003 (http://www.tcpdf.org)'</code> <code>PDF_PRODUCER = 'TCPDF 5.9.004 (http://www.tcpdf.org)'</code>
</td></tr></table> </td></tr></table>
</td></tr></table> </td></tr></table>
@ -124,7 +123,7 @@ unicode data<br /><br /></div>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:06 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:41 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="../com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="../com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="../com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -67,9 +68,14 @@ Source Location: /unicode_data.php<br /><br />
<br> <br>
<br> <br>
<div class="contents">
<h2>Classes:</h2>
<dt><a href="../com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a></dt>
<dd>This is a PHP class containing Unicde data for TCPDF library</dd>
</div><br /><br />
<h2>Page Details:</h2> <h2>Page Details:</h2>
Unicode data for TCPDF library.<br /><br /><br /><br /> Unicode data class for TCPDF library.<br /><br /><br /><br />
<h4>Tags:</h4> <h4>Tags:</h4>
<div class="tags"> <div class="tags">
<table border="0" cellspacing="0" cellpadding="0"> <table border="0" cellspacing="0" cellpadding="0">
@ -93,160 +99,11 @@ Unicode data for TCPDF library.<br /><br /><br /><br />
<br /><br /> <br /><br />
<br /><br /> <br /><br />
<br /><br /> <br /><br />
<hr />
<a name="defineK_LRE"></a>
<h3>K_LRE <span class="smalllinenumber">[line 58]</span></h3>
<div class="tags">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>K_LRE = 8234</code>
</td></tr></table>
</td></tr></table>
Left-to-Right Embedding<br /><br /> <br />
</div>
<div class="top">[ <a href="#top">Top</a> ]</div><br /><br />
<hr />
<a name="defineK_LRM"></a>
<h3>K_LRM <span class="smalllinenumber">[line 50]</span></h3>
<div class="tags">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>K_LRM = 8206</code>
</td></tr></table>
</td></tr></table>
Left-to-Right Mark<br /><br /> <br />
</div>
<div class="top">[ <a href="#top">Top</a> ]</div><br /><br />
<hr />
<a name="defineK_LRO"></a>
<h3>K_LRO <span class="smalllinenumber">[line 70]</span></h3>
<div class="tags">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>K_LRO = 8237</code>
</td></tr></table>
</td></tr></table>
Left-to-Right Override<br /><br /> <br />
</div>
<div class="top">[ <a href="#top">Top</a> ]</div><br /><br />
<hr />
<a name="defineK_PDF"></a>
<h3>K_PDF <span class="smalllinenumber">[line 66]</span></h3>
<div class="tags">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>K_PDF = 8236</code>
</td></tr></table>
</td></tr></table>
Pop Directional Format<br /><br /> <br />
</div>
<div class="top">[ <a href="#top">Top</a> ]</div><br /><br />
<hr />
<a name="defineK_RE_PATTERN_ARABIC"></a>
<h3>K_RE_PATTERN_ARABIC <span class="smalllinenumber">[line 97]</span></h3>
<div class="tags">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>K_RE_PATTERN_ARABIC = &quot;/(
\xD8[\x80-\x83\x8B\x8D\x9B\x9E\x9F\xA1-\xBA] # AL
| \xD9[\x80-\x8A\xAD-\xAF\xB1-\xBF] # AL
| \xDA[\x80-\xBF] # AL
| \xDB[\x80-\x95\x9D\xA5\xA6\xAE\xAF\xBA-\xBF] # AL
| \xDC[\x80-\x8D\x90\x92-\xAF] # AL
| \xDD[\x8D-\xAD] # AL
| \xDE[\x80-\xA5\xB1] # AL
| \xEF\xAD[\x90-\xBF] # AL
| \xEF\xAE[\x80-\xB1] # AL
| \xEF\xAF[\x93-\xBF] # AL
| \xEF[\xB0-\xB3][\x80-\xBF] # AL
| \xEF\xB4[\x80-\xBD] # AL
| \xEF\xB5[\x90-\xBF] # AL
| \xEF\xB6[\x80-\x8F\x92-\xBF] # AL
| \xEF\xB7[\x80-\x87\xB0-\xBC] # AL
| \xEF\xB9[\xB0-\xB4\xB6-\xBF] # AL
| \xEF\xBA[\x80-\xBF] # AL
| \xEF\xBB[\x80-\xBC] # AL
| \xD9[\xA0-\xA9\xAB\xAC] # AN
)/x&quot;</code>
</td></tr></table>
</td></tr></table>
<br />
</div>
<div class="top">[ <a href="#top">Top</a> ]</div><br /><br />
<hr />
<a name="defineK_RE_PATTERN_RTL"></a>
<h3>K_RE_PATTERN_RTL <span class="smalllinenumber">[line 79]</span></h3>
<div class="tags">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>K_RE_PATTERN_RTL = &quot;/(
\xD6\xBE # R
| \xD7[\x80\x83\x86\x90-\xAA\xB0-\xB4] # R
| \xDF[\x80-\xAA\xB4\xB5\xBA] # R
| \xE2\x80\x8F # R
| \xEF\xAC[\x9D\x9F\xA0-\xA8\xAA-\xB6\xB8-\xBC\xBE] # R
| \xEF\xAD[\x80\x81\x83\x84\x86-\x8F] # R
| \xF0\x90\xA0[\x80-\x85\x88\x8A-\xB5\xB7\xB8\xBC\xBF] # R
| \xF0\x90\xA4[\x80-\x99] # R
| \xF0\x90\xA8[\x80\x90-\x93\x95-\x97\x99-\xB3] # R
| \xF0\x90\xA9[\x80-\x87\x90-\x98] # R
| \xE2\x80[\xAB\xAE] # RLE &amp; RLO
)/x&quot;</code>
</td></tr></table>
</td></tr></table>
<br />
</div>
<div class="top">[ <a href="#top">Top</a> ]</div><br /><br />
<hr />
<a name="defineK_RLE"></a>
<h3>K_RLE <span class="smalllinenumber">[line 62]</span></h3>
<div class="tags">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>K_RLE = 8235</code>
</td></tr></table>
</td></tr></table>
Right-to-Left Embedding<br /><br /> <br />
</div>
<div class="top">[ <a href="#top">Top</a> ]</div><br /><br />
<hr />
<a name="defineK_RLM"></a>
<h3>K_RLM <span class="smalllinenumber">[line 54]</span></h3>
<div class="tags">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>K_RLM = 8207</code>
</td></tr></table>
</td></tr></table>
Right-to-Left Mark<br /><br /> <br />
</div>
<div class="top">[ <a href="#top">Top</a> ]</div><br /><br />
<hr />
<a name="defineK_RLO"></a>
<h3>K_RLO <span class="smalllinenumber">[line 74]</span></h3>
<div class="tags">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>K_RLO = 8238</code>
</td></tr></table>
</td></tr></table>
Right-to-Left Override<br /><br /> <br />
</div>
<div class="top">[ <a href="#top">Top</a> ]</div><br /><br />
<br /> <br />
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:11 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:46 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -927,12 +927,6 @@
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_BLANK_IMAGE">K_BLANK_IMAGE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;blank image</dd> <dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_BLANK_IMAGE">K_BLANK_IMAGE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;blank image</dd>
<dt><b>K_CELL_HEIGHT_RATIO</b></dt> <dt><b>K_CELL_HEIGHT_RATIO</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_CELL_HEIGHT_RATIO">K_CELL_HEIGHT_RATIO</a><br>&nbsp;&nbsp;&nbsp;&nbsp;height of cell repect font height</dd> <dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_CELL_HEIGHT_RATIO">K_CELL_HEIGHT_RATIO</a><br>&nbsp;&nbsp;&nbsp;&nbsp;height of cell repect font height</dd>
<dt><b>K_LRE</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_LRE">K_LRE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Left-to-Right Embedding</dd>
<dt><b>K_LRM</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_LRM">K_LRM</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Left-to-Right Mark</dd>
<dt><b>K_LRO</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_LRO">K_LRO</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Left-to-Right Override</dd>
<dt><b>K_PATH_CACHE</b></dt> <dt><b>K_PATH_CACHE</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_PATH_CACHE">K_PATH_CACHE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;cache directory for temporary files (full path)</dd> <dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_PATH_CACHE">K_PATH_CACHE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;cache directory for temporary files (full path)</dd>
<dt><b>K_PATH_FONTS</b></dt> <dt><b>K_PATH_FONTS</b></dt>
@ -945,18 +939,6 @@
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_PATH_URL">K_PATH_URL</a><br>&nbsp;&nbsp;&nbsp;&nbsp;URL path to tcpdf installation folder (http://localhost/tcpdf/).</dd> <dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_PATH_URL">K_PATH_URL</a><br>&nbsp;&nbsp;&nbsp;&nbsp;URL path to tcpdf installation folder (http://localhost/tcpdf/).</dd>
<dt><b>K_PATH_URL_CACHE</b></dt> <dt><b>K_PATH_URL_CACHE</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_PATH_URL_CACHE">K_PATH_URL_CACHE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;cache directory for temporary files (url path)</dd> <dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_PATH_URL_CACHE">K_PATH_URL_CACHE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;cache directory for temporary files (url path)</dd>
<dt><b>K_PDF</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_PDF">K_PDF</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Pop Directional Format</dd>
<dt><b>K_RE_PATTERN_ARABIC</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_RE_PATTERN_ARABIC">K_RE_PATTERN_ARABIC</a></dd>
<dt><b>K_RE_PATTERN_RTL</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_RE_PATTERN_RTL">K_RE_PATTERN_RTL</a></dd>
<dt><b>K_RLE</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_RLE">K_RLE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Right-to-Left Embedding</dd>
<dt><b>K_RLM</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_RLM">K_RLM</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Right-to-Left Mark</dd>
<dt><b>K_RLO</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_RLO">K_RLO</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Right-to-Left Override</dd>
<dt><b>K_SMALL_RATIO</b></dt> <dt><b>K_SMALL_RATIO</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_SMALL_RATIO">K_SMALL_RATIO</a><br>&nbsp;&nbsp;&nbsp;&nbsp;reduction factor for small font</dd> <dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_SMALL_RATIO">K_SMALL_RATIO</a><br>&nbsp;&nbsp;&nbsp;&nbsp;reduction factor for small font</dd>
<dt><b>K_TCPDF_CALLS_IN_HTML</b></dt> <dt><b>K_TCPDF_CALLS_IN_HTML</b></dt>
@ -1787,6 +1769,8 @@
<dd>in file 2dbarcodes.php, class <a href="com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br>&nbsp;&nbsp;&nbsp;&nbsp;PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).<br /></dd> <dd>in file 2dbarcodes.php, class <a href="com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br>&nbsp;&nbsp;&nbsp;&nbsp;PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).<br /></dd>
<dt><b>TCPDFBarcode</b></dt> <dt><b>TCPDFBarcode</b></dt>
<dd>in file barcodes.php, class <a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br>&nbsp;&nbsp;&nbsp;&nbsp;PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).<br /></dd> <dd>in file barcodes.php, class <a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br>&nbsp;&nbsp;&nbsp;&nbsp;PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).<br /></dd>
<dt><b>TCPDF_UNICODE_DATA</b></dt>
<dd>in file unicode_data.php, class <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br>&nbsp;&nbsp;&nbsp;&nbsp;This is a PHP class containing Unicde data for TCPDF library</dd>
<dt><b>Text</b></dt> <dt><b>Text</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodText">TCPDF::Text()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Prints a text cell at the specified position.</dd> <dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodText">TCPDF::Text()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Prints a text cell at the specified position.</dd>
<dt><b>TextField</b></dt> <dt><b>TextField</b></dt>
@ -1811,6 +1795,38 @@
<dl> <dl>
<dt><b>$underline</b></dt> <dt><b>$underline</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$underline">TCPDF::$underline</a></dd> <dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$underline">TCPDF::$underline</a></dd>
<dt><b>$unicode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$unicode">TCPDF::$unicode</a></dd>
<dt><b>$uni_arabicsubst</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_arabicsubst">TCPDF_UNICODE_DATA::$uni_arabicsubst</a></dd>
<dt><b>$uni_diacritics</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_diacritics">TCPDF_UNICODE_DATA::$uni_diacritics</a></dd>
<dt><b>$uni_laa_array</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_laa_array">TCPDF_UNICODE_DATA::$uni_laa_array</a></dd>
<dt><b>$uni_LRE</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_LRE">TCPDF_UNICODE_DATA::$uni_LRE</a></dd>
<dt><b>$uni_LRM</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_LRM">TCPDF_UNICODE_DATA::$uni_LRM</a></dd>
<dt><b>$uni_LRO</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_LRO">TCPDF_UNICODE_DATA::$uni_LRO</a></dd>
<dt><b>$uni_mirror</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_mirror">TCPDF_UNICODE_DATA::$uni_mirror</a></dd>
<dt><b>$uni_PDF</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_PDF">TCPDF_UNICODE_DATA::$uni_PDF</a></dd>
<dt><b>$uni_RE_PATTERN_ARABIC</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RE_PATTERN_ARABIC">TCPDF_UNICODE_DATA::$uni_RE_PATTERN_ARABIC</a></dd>
<dt><b>$uni_RE_PATTERN_RTL</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RE_PATTERN_RTL">TCPDF_UNICODE_DATA::$uni_RE_PATTERN_RTL</a></dd>
<dt><b>$uni_RLE</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RLE">TCPDF_UNICODE_DATA::$uni_RLE</a></dd>
<dt><b>$uni_RLM</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RLM">TCPDF_UNICODE_DATA::$uni_RLM</a></dd>
<dt><b>$uni_RLO</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RLO">TCPDF_UNICODE_DATA::$uni_RLO</a></dd>
<dt><b>$uni_type</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_type">TCPDF_UNICODE_DATA::$uni_type</a></dd>
<dt><b>$uni_utf8tolatin</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_utf8tolatin">TCPDF_UNICODE_DATA::$uni_utf8tolatin</a></dd>
<dt><b>$ur</b></dt> <dt><b>$ur</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$ur">TCPDF::$ur</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Array with additional document-wide usage rights for the document.</dd> <dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$ur">TCPDF::$ur</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Array with additional document-wide usage rights for the document.</dd>
<dt><b>unhtmlentities</b></dt> <dt><b>unhtmlentities</b></dt>
@ -1865,6 +1881,8 @@
<dl> <dl>
<dt><b>$w</b></dt> <dt><b>$w</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$w">TCPDF::$w</a></dd> <dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$w">TCPDF::$w</a></dd>
<dt><b>$webcolor</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$webcolor">TCPDF::$webcolor</a></dd>
<dt><b>$width</b></dt> <dt><b>$width</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$width">QRcode::$width</a></dd> <dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$width">QRcode::$width</a></dd>
<dt><b>$wPt</b></dt> <dt><b>$wPt</b></dt>
@ -2106,7 +2124,7 @@
<a href="elementindex.html#top">top</a><br> <a href="elementindex.html#top">top</a><br>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:04 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:39 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -1127,12 +1128,6 @@
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_BLANK_IMAGE">K_BLANK_IMAGE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;blank image</dd> <dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_BLANK_IMAGE">K_BLANK_IMAGE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;blank image</dd>
<dt><b>K_CELL_HEIGHT_RATIO</b></dt> <dt><b>K_CELL_HEIGHT_RATIO</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_CELL_HEIGHT_RATIO">K_CELL_HEIGHT_RATIO</a><br>&nbsp;&nbsp;&nbsp;&nbsp;height of cell repect font height</dd> <dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_CELL_HEIGHT_RATIO">K_CELL_HEIGHT_RATIO</a><br>&nbsp;&nbsp;&nbsp;&nbsp;height of cell repect font height</dd>
<dt><b>K_LRE</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_LRE">K_LRE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Left-to-Right Embedding</dd>
<dt><b>K_LRM</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_LRM">K_LRM</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Left-to-Right Mark</dd>
<dt><b>K_LRO</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_LRO">K_LRO</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Left-to-Right Override</dd>
<dt><b>K_PATH_CACHE</b></dt> <dt><b>K_PATH_CACHE</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_PATH_CACHE">K_PATH_CACHE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;cache directory for temporary files (full path)</dd> <dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_PATH_CACHE">K_PATH_CACHE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;cache directory for temporary files (full path)</dd>
<dt><b>K_PATH_FONTS</b></dt> <dt><b>K_PATH_FONTS</b></dt>
@ -1145,18 +1140,6 @@
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_PATH_URL">K_PATH_URL</a><br>&nbsp;&nbsp;&nbsp;&nbsp;URL path to tcpdf installation folder (http://localhost/tcpdf/).</dd> <dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_PATH_URL">K_PATH_URL</a><br>&nbsp;&nbsp;&nbsp;&nbsp;URL path to tcpdf installation folder (http://localhost/tcpdf/).</dd>
<dt><b>K_PATH_URL_CACHE</b></dt> <dt><b>K_PATH_URL_CACHE</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_PATH_URL_CACHE">K_PATH_URL_CACHE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;cache directory for temporary files (url path)</dd> <dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_PATH_URL_CACHE">K_PATH_URL_CACHE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;cache directory for temporary files (url path)</dd>
<dt><b>K_PDF</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_PDF">K_PDF</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Pop Directional Format</dd>
<dt><b>K_RE_PATTERN_ARABIC</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_RE_PATTERN_ARABIC">K_RE_PATTERN_ARABIC</a></dd>
<dt><b>K_RE_PATTERN_RTL</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_RE_PATTERN_RTL">K_RE_PATTERN_RTL</a></dd>
<dt><b>K_RLE</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_RLE">K_RLE</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Right-to-Left Embedding</dd>
<dt><b>K_RLM</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_RLM">K_RLM</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Right-to-Left Mark</dd>
<dt><b>K_RLO</b></dt>
<dd>in file unicode_data.php, constant <a href="com-tecnick-tcpdf/_unicode_data.php.html#defineK_RLO">K_RLO</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Right-to-Left Override</dd>
<dt><b>K_SMALL_RATIO</b></dt> <dt><b>K_SMALL_RATIO</b></dt>
<dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_SMALL_RATIO">K_SMALL_RATIO</a><br>&nbsp;&nbsp;&nbsp;&nbsp;reduction factor for small font</dd> <dd>in file tcpdf_config.php, constant <a href="com-tecnick-tcpdf/_config---tcpdf_config.php.html#defineK_SMALL_RATIO">K_SMALL_RATIO</a><br>&nbsp;&nbsp;&nbsp;&nbsp;reduction factor for small font</dd>
<dt><b>K_TCPDF_CALLS_IN_HTML</b></dt> <dt><b>K_TCPDF_CALLS_IN_HTML</b></dt>
@ -1987,6 +1970,8 @@
<dd>in file 2dbarcodes.php, class <a href="com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br>&nbsp;&nbsp;&nbsp;&nbsp;PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).<br /></dd> <dd>in file 2dbarcodes.php, class <a href="com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br>&nbsp;&nbsp;&nbsp;&nbsp;PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).<br /></dd>
<dt><b>TCPDFBarcode</b></dt> <dt><b>TCPDFBarcode</b></dt>
<dd>in file barcodes.php, class <a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br>&nbsp;&nbsp;&nbsp;&nbsp;PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).<br /></dd> <dd>in file barcodes.php, class <a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br>&nbsp;&nbsp;&nbsp;&nbsp;PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).<br /></dd>
<dt><b>TCPDF_UNICODE_DATA</b></dt>
<dd>in file unicode_data.php, class <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br>&nbsp;&nbsp;&nbsp;&nbsp;This is a PHP class containing Unicde data for TCPDF library</dd>
<dt><b>Text</b></dt> <dt><b>Text</b></dt>
<dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodText">TCPDF::Text()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Prints a text cell at the specified position.</dd> <dd>in file tcpdf.php, method <a href="com-tecnick-tcpdf/TCPDF.html#methodText">TCPDF::Text()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Prints a text cell at the specified position.</dd>
<dt><b>TextField</b></dt> <dt><b>TextField</b></dt>
@ -2011,6 +1996,38 @@
<dl> <dl>
<dt><b>$underline</b></dt> <dt><b>$underline</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$underline">TCPDF::$underline</a></dd> <dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$underline">TCPDF::$underline</a></dd>
<dt><b>$unicode</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$unicode">TCPDF::$unicode</a></dd>
<dt><b>$uni_arabicsubst</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_arabicsubst">TCPDF_UNICODE_DATA::$uni_arabicsubst</a></dd>
<dt><b>$uni_diacritics</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_diacritics">TCPDF_UNICODE_DATA::$uni_diacritics</a></dd>
<dt><b>$uni_laa_array</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_laa_array">TCPDF_UNICODE_DATA::$uni_laa_array</a></dd>
<dt><b>$uni_LRE</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_LRE">TCPDF_UNICODE_DATA::$uni_LRE</a></dd>
<dt><b>$uni_LRM</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_LRM">TCPDF_UNICODE_DATA::$uni_LRM</a></dd>
<dt><b>$uni_LRO</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_LRO">TCPDF_UNICODE_DATA::$uni_LRO</a></dd>
<dt><b>$uni_mirror</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_mirror">TCPDF_UNICODE_DATA::$uni_mirror</a></dd>
<dt><b>$uni_PDF</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_PDF">TCPDF_UNICODE_DATA::$uni_PDF</a></dd>
<dt><b>$uni_RE_PATTERN_ARABIC</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RE_PATTERN_ARABIC">TCPDF_UNICODE_DATA::$uni_RE_PATTERN_ARABIC</a></dd>
<dt><b>$uni_RE_PATTERN_RTL</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RE_PATTERN_RTL">TCPDF_UNICODE_DATA::$uni_RE_PATTERN_RTL</a></dd>
<dt><b>$uni_RLE</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RLE">TCPDF_UNICODE_DATA::$uni_RLE</a></dd>
<dt><b>$uni_RLM</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RLM">TCPDF_UNICODE_DATA::$uni_RLM</a></dd>
<dt><b>$uni_RLO</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_RLO">TCPDF_UNICODE_DATA::$uni_RLO</a></dd>
<dt><b>$uni_type</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_type">TCPDF_UNICODE_DATA::$uni_type</a></dd>
<dt><b>$uni_utf8tolatin</b></dt>
<dd>in file unicode_data.php, variable <a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html#var$uni_utf8tolatin">TCPDF_UNICODE_DATA::$uni_utf8tolatin</a></dd>
<dt><b>$ur</b></dt> <dt><b>$ur</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$ur">TCPDF::$ur</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Array with additional document-wide usage rights for the document.</dd> <dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$ur">TCPDF::$ur</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Array with additional document-wide usage rights for the document.</dd>
<dt><b>unhtmlentities</b></dt> <dt><b>unhtmlentities</b></dt>
@ -2065,6 +2082,8 @@
<dl> <dl>
<dt><b>$w</b></dt> <dt><b>$w</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$w">TCPDF::$w</a></dd> <dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$w">TCPDF::$w</a></dd>
<dt><b>$webcolor</b></dt>
<dd>in file tcpdf.php, variable <a href="com-tecnick-tcpdf/TCPDF.html#var$webcolor">TCPDF::$webcolor</a></dd>
<dt><b>$width</b></dt> <dt><b>$width</b></dt>
<dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$width">QRcode::$width</a></dd> <dd>in file qrcode.php, variable <a href="com-tecnick-tcpdf/QRcode.html#var$width">QRcode::$width</a></dd>
<dt><b>$wPt</b></dt> <dt><b>$wPt</b></dt>
@ -2138,7 +2157,7 @@
<a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br> <a href="elementindex_com-tecnick-tcpdf.html#top">top</a><br>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:04 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:39 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -35,7 +35,7 @@
<a href="#Post-parsing">Post-parsing</a><br> <a href="#Post-parsing">Post-parsing</a><br>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:11 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:46 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -67,7 +68,7 @@
This documentation was generated by <a href="http://www.phpdoc.org">phpDocumentor v1.4.3</a><br /> This documentation was generated by <a href="http://www.phpdoc.org">phpDocumentor v1.4.3</a><br />
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:04 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:39 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -56,6 +56,7 @@
<a href="com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br /> <a href="com-tecnick-tcpdf/TCPDF.html">TCPDF</a><br />
<a href="com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br /> <a href="com-tecnick-tcpdf/TCPDF2DBarcode.html">TCPDF2DBarcode</a><br />
<a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br /> <a href="com-tecnick-tcpdf/TCPDFBarcode.html">TCPDFBarcode</a><br />
<a href="com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html">TCPDF_UNICODE_DATA</a><br />
</div> </div>
</td> </td>
<td> <td>
@ -67,7 +68,7 @@
This documentation was generated by <a href="http://www.phpdoc.org">phpDocumentor v1.4.3</a><br /> This documentation was generated by <a href="http://www.phpdoc.org">phpDocumentor v1.4.3</a><br />
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Fri, 15 Oct 2010 10:51:04 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a> Documentation generated on Mon, 18 Oct 2010 11:23:39 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -2,7 +2,7 @@
//============================================================+ //============================================================+
// File name : example_006.php // File name : example_006.php
// Begin : 2008-03-04 // Begin : 2008-03-04
// Last Update : 2010-08-08 // Last Update : 2010-10-18
// //
// Description : Example 006 for TCPDF class // Description : Example 006 for TCPDF class
// WriteHTML and RTL support // WriteHTML and RTL support
@ -236,7 +236,7 @@ $pdf->lastPage();
// add a page // add a page
$pdf->AddPage(); $pdf->AddPage();
require_once('../htmlcolors.php'); require('../htmlcolors.php');
$textcolors = '<h1>HTML Text Colors</h1>'; $textcolors = '<h1>HTML Text Colors</h1>';
$bgcolors = '<hr /><h1>HTML Background Colors</h1>'; $bgcolors = '<hr /><h1>HTML Background Colors</h1>';

View File

@ -71,7 +71,7 @@ class MC_TCPDF extends TCPDF {
public function ChapterTitle($num, $title) { public function ChapterTitle($num, $title) {
$this->SetFont('helvetica', '', 14); $this->SetFont('helvetica', '', 14);
$this->SetFillColor(200, 220, 255); $this->SetFillColor(200, 220, 255);
$this->Cell(0, 6, 'Chapter '.$num.' : '.$title, 0, 1, '', 1); $this->Cell(180, 6, 'Chapter '.$num.' : '.$title, 0, 1, '', 1);
$this->Ln(4); $this->Ln(4);
} }

View File

@ -1,9 +1,9 @@
<?php <?php
//============================================================+ //============================================================+
// File name : htmlcolors.php // File name : htmlcolors.php
// Version : 1.0.006 // Version : 1.0.007
// Begin : 2002-04-09 // Begin : 2002-04-09
// Last Update : 2010-08-08 // Last Update : 2010-10-18
// Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
// ------------------------------------------------------------------- // -------------------------------------------------------------------
@ -44,7 +44,6 @@
/** /**
* Array of WEB safe colors * Array of WEB safe colors
*/ */
global $webcolor;
$webcolor = array ( $webcolor = array (
'aliceblue' => 'f0f8ff', 'aliceblue' => 'f0f8ff',
'antiquewhite' => 'faebd7', 'antiquewhite' => 'faebd7',

48094
tcpdf.php

File diff suppressed because one or more lines are too long

View File

@ -1,9 +1,9 @@
<?php <?php
//============================================================+ //============================================================+
// File name : unicode_data.php // File name : unicode_data.php
// Version : 1.0.005 // Version : 1.0.006
// Begin : 2008-01-01 // Begin : 2008-01-01
// Last Update : 2010-08-08 // Last Update : 2010-10-18
// Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
// ------------------------------------------------------------------- // -------------------------------------------------------------------
@ -35,7 +35,7 @@
// Saleh AlMatrafe // Saleh AlMatrafe
/** /**
* Unicode data for TCPDF library. * Unicode data class for TCPDF library.
* @author Nicola Asuni * @author Nicola Asuni
* @copyright 2008-2010 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com * @copyright 2008-2010 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
* @package com.tecnick.tcpdf * @package com.tecnick.tcpdf
@ -45,38 +45,63 @@
*/ */
/** /**
* Left-to-Right Mark * This is a PHP class containing Unicde data for TCPDF library
* @name TCPDF_UNICODE_DATA
* @package com.tecnick.tcpdf
* @version 1.0.006
* @author Nicola Asuni - info@tecnick.com
* @link http://www.tcpdf.org
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/ */
define('K_LRM', 8206); class TCPDF_UNICODE_DATA {
/** /**
* Right-to-Left Mark * @var Unicode code for Left-to-Right Mark
*/ * @access public
define('K_RLM', 8207); */
public $uni_LRM = 8206;
/** /**
* Left-to-Right Embedding * @var Unicode code for Right-to-Left Mark
*/ * @access public
define('K_LRE', 8234); */
public $uni_RLM = 8207;
/** /**
* Right-to-Left Embedding * @var Unicode code for Left-to-Right Embedding
*/ * @access public
define('K_RLE', 8235); */
public $uni_LRE = 8234;
/** /**
* Pop Directional Format * @var Unicode code for Right-to-Left Embedding
*/ * @access public
define('K_PDF', 8236); */
public $uni_RLE = 8235;
/** /**
* Left-to-Right Override * @var Unicode code for Pop Directional Format
*/ * @access public
define('K_LRO', 8237); */
public $uni_PDF = 8236;
/** /**
* Right-to-Left Override * @var Unicode code for Left-to-Right Override
*/ * @access public
define('K_RLO', 8238); */
public $uni_LRO = 8237;
/**
* @var Unicode code for Right-to-Left Override
* @access public
*/
public $uni_RLO = 8238;
/* /*
* Pattern to test RTL (Righ-To-Left) strings using regular expressions. * @var Pattern to test RTL (Righ-To-Left) strings using regular expressions.
* @access public
*/ */
define('K_RE_PATTERN_RTL', "/( public $uni_RE_PATTERN_RTL = "/(
\xD6\xBE # R \xD6\xBE # R
| \xD7[\x80\x83\x86\x90-\xAA\xB0-\xB4] # R | \xD7[\x80\x83\x86\x90-\xAA\xB0-\xB4] # R
| \xDF[\x80-\xAA\xB4\xB5\xBA] # R | \xDF[\x80-\xAA\xB4\xB5\xBA] # R
@ -88,13 +113,14 @@ define('K_RE_PATTERN_RTL', "/(
| \xF0\x90\xA8[\x80\x90-\x93\x95-\x97\x99-\xB3] # R | \xF0\x90\xA8[\x80\x90-\x93\x95-\x97\x99-\xB3] # R
| \xF0\x90\xA9[\x80-\x87\x90-\x98] # R | \xF0\x90\xA9[\x80-\x87\x90-\x98] # R
| \xE2\x80[\xAB\xAE] # RLE & RLO | \xE2\x80[\xAB\xAE] # RLE & RLO
)/x"); )/x";
/* /*
* Pattern to test Arabic strings using regular expressions. * @var Pattern to test Arabic strings using regular expressions.
* source: http://www.w3.org/International/questions/qa-forms-utf-8 * Source: http://www.w3.org/International/questions/qa-forms-utf-8
* @access public
*/ */
define("K_RE_PATTERN_ARABIC", "/( public $uni_RE_PATTERN_ARABIC = "/(
\xD8[\x80-\x83\x8B\x8D\x9B\x9E\x9F\xA1-\xBA] # AL \xD8[\x80-\x83\x8B\x8D\x9B\x9E\x9F\xA1-\xBA] # AL
| \xD9[\x80-\x8A\xAD-\xAF\xB1-\xBF] # AL | \xD9[\x80-\x8A\xAD-\xAF\xB1-\xBF] # AL
| \xDA[\x80-\xBF] # AL | \xDA[\x80-\xBF] # AL
@ -114,13 +140,13 @@ define("K_RE_PATTERN_ARABIC", "/(
| \xEF\xBA[\x80-\xBF] # AL | \xEF\xBA[\x80-\xBF] # AL
| \xEF\xBB[\x80-\xBC] # AL | \xEF\xBB[\x80-\xBC] # AL
| \xD9[\xA0-\xA9\xAB\xAC] # AN | \xD9[\xA0-\xA9\xAB\xAC] # AN
)/x"); )/x";
/** /**
* Array of unicode types * @var Array of Unicode types
* @access public
*/ */
global $unicode; public $uni_type = array(
$unicode = array(
0=>'BN', 0=>'BN',
1=>'BN', 1=>'BN',
2=>'BN', 2=>'BN',
@ -17844,12 +17870,12 @@ $unicode = array(
); );
/** /**
* Mirror unicode characters. * @var Mirror unicode characters.
* For information on bidi mirroring, see UAX #9: Bidirectional Algorithm, * For information on bidi mirroring, see UAX #9: Bidirectional Algorithm,
* at http://www.unicode.org/unicode/reports/tr9/ * at http://www.unicode.org/unicode/reports/tr9/
* @access public
*/ */
global $unicode_mirror; public $uni_mirror = array (
$unicode_mirror = array (
0x0028=>0x0029, 0x0028=>0x0029,
0x0029=>0x0028, 0x0029=>0x0028,
0x003C=>0x003E, 0x003C=>0x003E,
@ -18204,11 +18230,10 @@ $unicode_mirror = array (
0xFF63=>0xFF62); 0xFF63=>0xFF62);
/** /**
* Arabic shape subtitutions * @var Arabic shape substitutions: char code => (isolated, final, initial, medial)
* char code=>isolated, final, initial, medial * @access public
*/ */
global $unicode_arlet; public $uni_arabicsubst = array(
$unicode_arlet = array(
1569=>array(65152), 1569=>array(65152),
1570=>array(65153, 65154, 65153, 65154), 1570=>array(65153, 65154, 65153, 65154),
1571=>array(65155, 65156, 65155, 65156), 1571=>array(65155, 65156, 65155, 65156),
@ -18288,11 +18313,10 @@ $unicode_arlet = array(
); );
/** /**
* Arabic laa letter * @var Arabic laa letter: char code => isolated, final, initial, medial
* char code=>isolated, final, initial, medial * @access public
*/ */
global $laa_array; public $uni_laa_array = array (
$laa_array = array (
1570 =>array(65269, 65270, 65269, 65270), 1570 =>array(65269, 65270, 65269, 65270),
1571 =>array(65271, 65272, 65271, 65272), 1571 =>array(65271, 65272, 65271, 65272),
1573 =>array(65273, 65274, 65273, 65274), 1573 =>array(65273, 65274, 65273, 65274),
@ -18300,12 +18324,12 @@ $laa_array = array (
); );
/** /**
* Array of character substitutions for sequences of two diacritics symbols. * @var Array of character substitutions for sequences of two diacritics symbols.
* Putting the combining mark and character in the same glyph allows us to avoid the two marks overlapping each other in an illegible manner. * Putting the combining mark and character in the same glyph allows us to avoid the two marks overlapping each other in an illegible manner.
* second NSM char code=>substitution char * second NSM char code => substitution char
* @access public
*/ */
global $diacritics; public $uni_diacritics = array (
$diacritics = array (
1612=>64606, # Shadda + Dammatan 1612=>64606, # Shadda + Dammatan
1613=>64607, # Shadda + Kasratan 1613=>64607, # Shadda + Kasratan
1614=>64608, # Shadda + Fatha 1614=>64608, # Shadda + Fatha
@ -18314,10 +18338,10 @@ $diacritics = array (
); );
/** /**
* Array of character substitutions from UTF-8 unicode to latin1 * @var Array of character substitutions from UTF-8 Unicode to Latin1
* @access public
*/ */
global $utf8tolatin; public $uni_utf8tolatin = array (
$utf8tolatin = array (
8364=>128, # Euro1 8364=>128, # Euro1
338=>140, # OE 338=>140, # OE
352=>138, # Scaron 352=>138, # Scaron
@ -18347,6 +18371,8 @@ $utf8tolatin = array (
382=>158 # zcaron2 382=>158 # zcaron2
); );
} // --- END OF CLASS ---
//============================================================+ //============================================================+
// END OF FILE // END OF FILE
//============================================================+ //============================================================+