diff --git a/core/Translate.php b/core/Translate.php
index ca5da07fb70a8a2635cea3746df534767781ab50..1d2ea47e6adedb52dc6e9042fe520fa274d6d75d 100644
--- a/core/Translate.php
+++ b/core/Translate.php
@@ -46,7 +46,9 @@ class Piwik_Translate
 		{
 			$language = $this->getLanguageToLoad();
 		}
-		Piwik_Translate::getInstance()->loadCoreTranslation($language);
+		$this->unloadEnglishTranslation();
+		$this->loadEnglishTranslation();
+		$this->loadCoreTranslation($language);
 		Piwik_PluginsManager::getInstance()->loadPluginTranslations($language);
 	}
 	
diff --git a/libs/tcpdf/2dbarcodes.php b/libs/tcpdf/2dbarcodes.php
index 17cbd2d658e128773194ad0af8e4aa9953ab0fce..270f2a8bab8a99d0a4929857b2f9e51ecef92662 100644
--- a/libs/tcpdf/2dbarcodes.php
+++ b/libs/tcpdf/2dbarcodes.php
@@ -1,9 +1,9 @@
 <?php
 //============================================================+
 // File name   : 2dbarcodes.php
-// Version     : 1.0.006
+// Version     : 1.0.007
 // Begin       : 2009-04-07
-// Last Update : 2010-06-06
+// Last Update : 2010-12-16
 // 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)
 // -------------------------------------------------------------------
@@ -33,30 +33,25 @@
 //============================================================+
 
 /**
+ * @file
  * PHP class to creates array representations for 2D barcodes to be used with TCPDF.
  * @package com.tecnick.tcpdf
- * @abstract Functions for generating string representation of 2D barcodes.
  * @author Nicola Asuni
- * @copyright 2009-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
- * @link http://www.tcpdf.org
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
- * @version 1.0.006
+ * @version 1.0.007
  */
 
-	/**
-	* PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).<br>
-	* @name TCPDFBarcode
-	* @package com.tecnick.tcpdf
-	* @version 1.0.006
-	* @author Nicola Asuni
-	* @link http://www.tcpdf.org
-	* @license http://www.gnu.org/copyleft/lesser.html LGPL
-	*/
+/**
+ * @class TCPDF2DBarcode
+ * PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).
+ * @package com.tecnick.tcpdf
+ * @version 1.0.007
+ * @author Nicola Asuni
+ */
 class TCPDF2DBarcode {
 
 	/**
-	 * @var array representation of barcode.
-	 * @access protected
+	 * Array representation of barcode.
+	 * @protected
 	 */
 	protected $barcode_array = false;
 
@@ -67,8 +62,8 @@ class TCPDF2DBarcode {
 	 * <li>$arrcode['num_rows'] required number of rows</li>
 	 * <li>$arrcode['num_cols'] required number of columns</li>
 	 * <li>$arrcode['bcode'][$r][$c] value of the cell is $r row and $c column (0 = transparent, 1 = black)</li></ul>
-	 * @param string $code code to print
- 	 * @param string $type type of barcode: <ul><li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>QRCODE : QR-CODE Low error correction</li><li>QRCODE,L : QR-CODE Low error correction</li><li>QRCODE,M : QR-CODE Medium error correction</li><li>QRCODE,Q : QR-CODE Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li><li>PDF417 : PDF417 (ISO/IEC 15438:2006)</li><li>PDF417,a,e,t,s,f,o0,o1,o2,o3,o4,o5,o6 : PDF417 with parameters: a = aspect ratio (width/height); e = error correction level (0-8); t = total number of macro segments; s = macro segment index (0-99998); f = file ID; o0 = File Name (text); o1 = Segment Count (numeric); o2 = Time Stamp (numeric); o3 = Sender (text); o4 = Addressee (text); o5 = File Size (numeric); o6 = Checksum (numeric). NOTES: Parameters t, s and f are required for a Macro Control Block, all other parametrs are optional. To use a comma character ',' on text options, replace it with the character 255: "\xff".</li></ul>
+	 * @param $code (string) code to print
+ 	 * @param $type (string) type of barcode: <ul><li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>QRCODE : QR-CODE Low error correction</li><li>QRCODE,L : QR-CODE Low error correction</li><li>QRCODE,M : QR-CODE Medium error correction</li><li>QRCODE,Q : QR-CODE Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li><li>PDF417 : PDF417 (ISO/IEC 15438:2006)</li><li>PDF417,a,e,t,s,f,o0,o1,o2,o3,o4,o5,o6 : PDF417 with parameters: a = aspect ratio (width/height); e = error correction level (0-8); t = total number of macro segments; s = macro segment index (0-99998); f = file ID; o0 = File Name (text); o1 = Segment Count (numeric); o2 = Time Stamp (numeric); o3 = Sender (text); o4 = Addressee (text); o5 = File Size (numeric); o6 = Checksum (numeric). NOTES: Parameters t, s and f are required for a Macro Control Block, all other parametrs are optional. To use a comma character ',' on text options, replace it with the character 255: "\xff".</li></ul>
 	 */
 	public function __construct($code, $type) {
 		$this->setBarcode($code, $type);
@@ -84,8 +79,8 @@ class TCPDF2DBarcode {
 
 	/**
 	 * Set the barcode.
-	 * @param string $code code to print
- 	 * @param string $type type of barcode: <ul><li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>QRCODE : QR-CODE Low error correction</li><li>QRCODE,L : QR-CODE Low error correction</li><li>QRCODE,M : QR-CODE Medium error correction</li><li>QRCODE,Q : QR-CODE Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li><li>PDF417 : PDF417 (ISO/IEC 15438:2006)</li><li>PDF417,a,e,t,s,f,o0,o1,o2,o3,o4,o5,o6 : PDF417 with parameters: a = aspect ratio (width/height); e = error correction level (0-8); t = total number of macro segments; s = macro segment index (0-99998); f = file ID; o0 = File Name (text); o1 = Segment Count (numeric); o2 = Time Stamp (numeric); o3 = Sender (text); o4 = Addressee (text); o5 = File Size (numeric); o6 = Checksum (numeric). NOTES: Parameters t, s and f are required for a Macro Control Block, all other parametrs are optional. To use a comma character ',' on text options, replace it with the character 255: "\xff".</li></ul>
+	 * @param $code (string) code to print
+ 	 * @param $type (string) type of barcode: <ul><li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>QRCODE : QR-CODE Low error correction</li><li>QRCODE,L : QR-CODE Low error correction</li><li>QRCODE,M : QR-CODE Medium error correction</li><li>QRCODE,Q : QR-CODE Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li><li>PDF417 : PDF417 (ISO/IEC 15438:2006)</li><li>PDF417,a,e,t,s,f,o0,o1,o2,o3,o4,o5,o6 : PDF417 with parameters: a = aspect ratio (width/height); e = error correction level (0-8); t = total number of macro segments; s = macro segment index (0-99998); f = file ID; o0 = File Name (text); o1 = Segment Count (numeric); o2 = Time Stamp (numeric); o3 = Sender (text); o4 = Addressee (text); o5 = File Size (numeric); o6 = Checksum (numeric). NOTES: Parameters t, s and f are required for a Macro Control Block, all other parametrs are optional. To use a comma character ',' on text options, replace it with the character 255: "\xff".</li></ul>
  	 * @return array
 	 */
 	public function setBarcode($code, $type) {
@@ -175,4 +170,3 @@ class TCPDF2DBarcode {
 //============================================================+
 // END OF FILE
 //============================================================+
-?>
diff --git a/libs/tcpdf/CHANGELOG.TXT b/libs/tcpdf/CHANGELOG.TXT
new file mode 100644
index 0000000000000000000000000000000000000000..f14890248397e655dd691dee8a5773a46e0e3848
--- /dev/null
+++ b/libs/tcpdf/CHANGELOG.TXT
@@ -0,0 +1,1875 @@
+5.9.034 (2010-12-19)
+	- DejaVu and GNU Free fonts were updated.
+
+5.9.033 (2010-12-18)
+	- Source code documetnation was improved.
+
+5.9.032 (2010-12-18)
+	- Default font stretching and spacing values are now inherited by HTML methods.
+
+5.9.031 (2010-12-16)
+	- Source code documentation errors were fixed.
+
+5.9.030 (2010-12-16)
+	- Several source code documentation errors were fixed.
+	- Source code style was changed for Doxygen.
+	- Source code documentation was moved online to http://www.tcpdf.org
+
+5.9.029 (2010-12-04)
+	- The $fitbox parameter on Image() method was extended to specify image alignment inside the box (check the example n. 9).
+
+5.9.028 (2010-12-03)
+	- Font utils makefont.php and makeallttffonts.php were updated.
+
+5.9.027 (2010-12-01)
+	- Spot Colors are now better integrated with HTML mode.
+	- Method SetDocInfoUnicode() was added to turn on/off Unicode mode for document information dictionary (meta tags) - check the example n. 19.
+
+5.9.026 (2010-12-01)
+	- A problem with mixed text directions on HTML was fixed.
+
+5.9.025 (2010-12-01)
+	- The AddSpotColor() now automatically fills the spotcolor array (defined on spotcolors.php file).
+
+5.9.024 (2010-11-30)
+	- Bug item #3123612 "SVG not use gradientTransform in percentage mode" was fixed.
+
+5.9.023 (2010-11-25)
+	- A potential bug on SVG transcoder was fixed.
+
+5.9.022 (2010-11-21)
+	- Method ImageEPS includes support for EPS/AI Spot colors.
+	- Method ImageEPS includes a new parameter $fixoutvals to remove values outside the bounding box.
+
+5.9.021 (2010-11-20)
+	- Support for custom bullet points images was added (check the example n.6)
+	- Examples n. 6 and 61 were update (check the comments inside).
+
+5.9.020 (2010-11-19)
+	- A problem related to additional page when using multicolumn mode was fixed.
+
+5.9.019 (2010-11-19)
+	- An SVG bug was fixed.
+	- ImageSVG() and ImageEPS() methods now accepts image data streams (put the string on the $file parameter preceded by '@' character).
+	- Option 'E' was added to the $dest parameter of Output() method to return the document as base64 mime multi-part email attachment (RFC 2045).
+
+5.9.018 (2010-11-19)
+	- An SVG bug was fixed.
+
+5.9.017 (2010-11-16)
+	- Tagline color was set to transparent.
+	- The method fixHTMLCode() was added to automatically clean up HTML code (requires HTML Tidy).
+
+5.9.016 (2010-11-16)
+	- Bug item #3109705 "list item page break hanging bullet" was fixed.
+
+5.9.015 (2010-11-16)
+	- Bug item affecting QRCode was fixed.
+	- Some bugs affecting HTML lists were fixed.
+	- ImageSVG() and fitBlock() methods were improved to handle some SVG problems.
+	- Some problems with PHP4 compatibility were fixed.
+
+5.9.014 (2010-11-15)
+	- Bug item #3109464 "QRCode error" was fixed.
+
+5.9.013 (2010-11-15)
+	- Bug item #3109257 "Problem with interlaced GIFs and PNGs" was fixed.
+	- Image function now accepts image data streams (check example n. 9).
+
+5.9.012 (2010-11-12)
+	- Method getTCPDFVersion() was added.
+	- PDF_PRODUCER constant was removed.
+	- Method convertHTMLColorToDec() was improved.
+	- HTML colors now support spot color names defined on the new spotcolors.php file.
+	- The default method Header() was improved to support SVG and EPS/AI images.
+	- A bug on SVG importer was fixed.
+
+5.9.011 (2010-11-02)
+	- Bug item #3101486 "Bug Fix for image loading" was fixed.
+
+5.9.010 (2010-10-27)
+	- Support for CSS properties 'border-spacing' and 'padding' for tables were added.
+	- Several language files were added.
+
+5.9.009 (2010-10-21)
+	- HTML text alignment was improved to include the case of RTL text on LTR direction and LTR text on RTL direction.
+
+5.9.008 (2010-10-21)
+	- Bug item #3091502 "Bookmark oddity" was fixed.
+	- HTML internal links now accepts page number and Y position.
+	- The method write1DBarcode() was improved to accept separate horizontal and vertical padding (see example n. 27).
+
+5.9.007 (2010-10-20)
+	- Method adjustCellPadding() was fixed to handle bad input.
+
+5.9.006 (2010-10-19)
+	- Support for AES 256 bit encryption was added (see example n. 16).
+	- Method getNumLines() was fixed for the empty string case.
+
+5.9.005 (2010-10-18)
+	- Method addPageRegion() was changed to accept regions starting exactly from the top of the page.
+
+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)
+	- 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.
+
+5.9.002 (2010-10-08)
+	- Cell method was improved to preserve the font stretching and spacing values when using the $stretch parameter (see example n. 4).
+
+5.9.001 (2010-10-07)
+	- The problem of blank page for nobr table higher than a single page was fixed.
+
+5.9.000 (2010-10-06)
+	- Support for text stretching and spacing (kerning) was added, see example n. 63 and methods setFontStretching(), getFontStretching(), setFontSpacing(), getFontSpacing().
+	- Support for CSS properties 'font-stretch' and 'letter-spacing' was added (see example n. 63).
+	- The cMargin state was replaced by cell_padding array that can be set/get using setCellPadding() and getCellPadding() methods.
+	- Methods getCellPaddings() and setCellPaddings() were added to fine tune cell paddings (see example n. 5).
+	- Methods getCellMargins() and setCellMargins() were added to fine tune cell margins (see example n. 5).
+	- Method write1DBarcode() was improved to permit custom labels (see example n. 27).
+	- Method ImagePngAlpha() now includes support for ImageMagick to improve performances.
+	- XObject Template support was extended to support Multicell(), writeHTML() and writeHTMLCell() methods.
+	- The signature of getNumLines() and getStringHeight() methods is changed.
+	- Example n. 57 was updated.
+
+// -------------------------------------------------------------------
+
+5.8.034 (2010-09-27)
+	- A bug related to SetFont on XObject templates was fixed.
+
+5.8.033 (2010-09-25)
+	- A problem with Footer() and multiple columns was fixed.
+
+5.8.032 (2010-09-22)
+	- Bug #3073165 "Issues with changes to addHTMLVertSpace()" was fixed.
+
+5.8.031 (2010-09-20)
+	- Bug #3071961 "Spaces in HTML" was fixed.
+
+5.8.030 (2010-09-17)
+	- SVG support was improved and some bugs were fixed.
+
+5.8.029 (2010-09-16)
+	- A problem with HTML borders was fixed.
+
+5.8.028 (2010-09-13)
+	- Bug #3065224 "mcrypt_create_iv error on TCPDF 5.8.027 on PHP 5.3.2" was fixed.
+
+5.8.027 (2010-09-13)
+	- Bug #3065118 "mcrypt_decrypt error on TCPDF 5.8.026 on PHP 5.3.2" was fixed.
+
+5.8.026 (2010-09-13)
+	- A bug on addHTMLTOC() method was fixed. Note: be sure that the #TOC_PAGE_NUMBER# template has enough width to be printed correctly.
+
+5.8.025 (2010-09-09)
+	- Bug #3062692 "Textarea inside a table" was fixed.
+
+5.8.024 (2010-09-08)
+	- Bug #3062005 "Undefined variable: ann_obj_id" was fixed.
+
+5.8.023 (2010-08-31)
+	- Forms bug added on version 5.8.019 was fixed.
+
+5.8.022 (2010-08-31)
+	- Bug #3056632 "SVG rendered vertically flipped" was fixed.
+
+5.8.021 (2010-08-30)
+	- A new CID-0 'chinese' font was added for traditional Chinese.
+	- Bug #3054287 'Inner tags are ignored due to "align" attribute' was fixed.
+
+5.8.020 (2010-08-26)
+	- CSS "catch-all" class selector is now supported.
+
+5.8.019 (2010-08-26)
+	- XObject Templates now includes support for links and annotations.
+	- A problem related to link alignment on cell was fixed.
+	- A problem related to SVG styles was fixed.
+
+5.8.018 (2010-08-25)
+	- Method getNumberOfColumns() was added.
+	- A problem related to table header was fixed.
+	- Method getSVGTransformMatrix() was fixed to apply SVG transformations in the correct order.
+	- SVG support was improved and several bugs were fixed.
+
+5.8.017 (2010-08-25)
+	- This version includes support for XObject Templates (see the new example n. 62).
+	- Methods starttemplate(), endTemplate() and printTemplate() were added (see the new example n. 62).
+
+5.8.016 (2010-08-24)
+	- Alignment problem on write2DBarcode was fixed.
+
+5.8.015 (2010-08-24)
+	- A problem arised with the latest bugfix was fixed.
+
+5.8.014 (2010-08-23)
+	- Method _getxobjectdict() was added for better compatibility with external extensions.
+	- A bug related to radiobuttons was fixed.
+	- Bug #3051509 "new line after punctuation marks" was fixed (partially).
+
+5.8.013 (2010-08-23)
+	- SVG support for 'direction' property was added.
+	- A problem on default width calculation for linear barcodes was fixed.
+	- New option was added to write1DBarcode() method to improve alignments (see example n. 27).
+	- Bug #3050896 "Nested HTML tables: styles are not applied" was fixed.
+	- Method _putresourcedict() was improved to include external XObject templates.
+
+5.8.012 (2010-08-22)
+	- Support for SVG 'text-anchor' property was added.
+
+5.8.011 (2010-08-21)
+	- Method write1DBarcode() was improved to be backward compatible (check the new example n. 27).
+	- Support for CSS width and height properties on images were added.
+
+5.8.010 (2010-08-20)
+	- Documentation of unhtmlentities() was fixed.
+	- The 'fitwidth' option was added and border color problem was fixed on write1DBarcode() method (check the example n. 27).
+
+5.8.009 (2010-08-20)
+	- Internal object numbering was improved.
+	- Some errors in object encryption were fixed.
+
+5.8.008 (2010-08-19)
+	- Method write1DBarcode() was changed, check the example n. 27.
+	- Method Footer() was changed to account for barcode changes.
+	- Automatic calculation of K_PATH_URL constant was fixed on configuration file.
+	- Method setEqualColumns() was fixed for $width=0 case.
+	- Method AddTOC() was fixed for multipage and multicolumn modes.
+	- Better support for SVG "font-family" property.
+	- A problem on default Page Zoom mode was fixed.
+	- Several Annotation bugs were fixed.
+
+5.8.007 (2010-08-18)
+	- A bug affecting HTML tables was fixed.
+	- Bug #3047500 "SVG not rendering paths properly" was fixed.
+
+5.8.006 (2010-08-17)
+	- A bug affecting HTML table nesting was fixed.
+
+5.8.005 (2010-08-17)
+	- A bug affecting the HTML 'select' tag in certain conditions was fixed.
+
+5.8.004 (2010-08-17)
+	- Better support for HTML "font-family" property.
+	- A bug related to HTML multicolumn was fixed.
+
+5.8.003 (2010-08-16)
+	- Better support for HTML "font-family" property.
+
+5.8.002 (2010-08-14)
+	- HTML alignments were improved
+	- IMPORTANT: Default regular expression to find spaces has been changed to exclude the non-breaking-space (160 DEC- A0 HEX). If you are using setSpacesRE() method, please read the new documentation.
+	- Example n. 1 was updated.
+
+5.8.001 (2010-08-12)
+	- Bug #3043650 "subsetchars incorrectly cached" was fixed.
+
+5.8.000 (2010-08-11)
+	- A control to avoid bookmarking page 0 was added.
+	- addTOC() method now includes support for multicolumn mode.
+	- Support for tables in multicolumn mode was improved.
+	- Example n.10 was updated.
+	- All trimming functions were replaced with stringLeftTrim(), stringRightTrim() and stringTrim().
+	- HTML alignments were improved.
+
+------------------------------------------------------------
+
+5.7.003 (2010-08-08)
+	- Bug #3041263 "php source ending is bad" was fixed (all PHP files were updated, including fonts).
+
+5.7.002 (2010-08-06)
+	- Methods copyPage(), movePage() and deletePage() were changed to account for internal markings.
+
+5.7.001 (2010-08-05)
+	- Bug #3040105 "Broken PDF when using TOC (example 45)" was fixed.
+
+5.7.000 (2010-08-03)
+	- CSS borders are now supported for HTML tables and other block tags (see example n. 61);
+	- Cell borders were improved (see example n. 57);
+	- Minor bugs were fixed.
+
+------------------------------------------------------------
+
+5.6.000 (2010-07-31)
+	- A bug with object IDs was fixes.
+	- Performances were improved.
+
+------------------------------------------------------------
+
+5.5.015 (2010-07-29)
+	- Automatic fix for unclosed self-closing tag.
+	- Support for deprecated 's' and 'strike' tags was added.
+	- Empty list items problem was fixed.
+
+5.5.014 (2010-07-15)
+	- Support for external images was improved.
+
+5.5.013 (2010-07-14)
+	- Bug #3029338 "FI and FO output destination filename bug" was fixed (previous fix was wrong).
+
+5.5.012 (2010-07-14)
+	- Bug #3029310 "Font baseline inconsistencies with line-height and font-size" was fixed.
+	- Bug #3029338 "FI and FO output destination filename bug" was fixed.
+
+5.5.011 (2010-07-09)
+	- Support for multiple CSS classes was added.
+	- The method getColumn() was added to return the current column number.
+	- Some regular Expressions were fixed to be more compatible with UTF-8.
+
+5.5.010 (2010-07-06)
+	- Bug item #3025772 "Borders in all image functions are still flawed" was fixed.
+
+5.5.009 (2010-07-05)
+	- A problem related to last page footer was fixed.
+	- Image alignments and fit-on-page features were improved.
+
+5.5.008 (2010-07-02)
+	- A problem on table header alignment in booklet mode was fixed.
+	- Default graphic vars are now applied for setHeader();
+
+5.5.007 (2010-07-02)
+	- Attribute "readonly" was added to input and textarea form fields.
+	- Vertical alignment feature was added on MultiCell() method only for simple text mode (see example n. 5).
+	- Text-Fit feature was added on MultiCell() method only for simple text mode (see example n. 5).
+
+5.5.006 (2010-06-29)
+	- getStringHeight() and getNumLines() methods were fixed.
+
+5.5.005 (2010-06-28)
+	- Bug #3022170 "getFontDescent() does not return correct descent value" was fixed.
+	- Some problems with multicolumn mode were fixed.
+
+5.5.004 (2010-06-27)
+	- Bug #3021803 "SVG Border" was fixed.
+
+5.5.003 (2010-06-26)
+	- On Write() method, blank lines at the beginning of a page or column are now automatically removed.
+
+5.5.002 (2010-06-24)
+	- ToUnicode Identity-H name was replaced with a full CMap (to avoid preflight syntax error).
+	- Bug #3020638 "str_split() not available in php4" was fixed.
+	- Bug #3020665 "file_get_contents() too many parameters for php4" was fixed.
+
+5.5.001 (2010-06-23)
+	- A problem on image streams was fixed.
+
+5.5.000 (2010-06-22)
+	- Several PDF syntax errors (and related bugs) were fixed.
+	- Bug #3019090 "/Length values are wrong if AES encryption is used" was fixed.
+
+------------------------------------------------------------
+
+5.4.003 (2010-06-19)
+	- A problem related to page boxes was fixed.
+	- Bug #3016920 "Font subsetting issues when editing pdf" was partially fixed (Note that flattening transparency layers is currently incompatible with TrueTypeUnicode fonts).
+
+5.4.002 (2010-06-18)
+	- A problem related with setProtection() method was fixed.
+
+5.4.001 (2010-06-18)
+	- A problem related with setProtection() method was fixed.
+
+5.4.000 (2010-06-18)
+	- The method setSignatureAppearance() was added, check the example n. 52.
+	- Several problems related to font subsetting were fixed.
+
+------------------------------------------------------------
+
+5.3.010 (2010-06-15)
+	- Previous release was corrupted.
+
+5.3.009 (2010-06-15)
+	- Bug #3015934 "Bullets don't display correctly" was fixed.
+
+5.3.008 (2010-06-13)
+	- This version fixes some problems of SVG rasterization.
+
+5.3.007 (2010-06-13)
+	- This version improves SVG support.
+
+5.3.006 (2010-06-10)
+	- This version includes a change in uniqid calls for backward compatibility with PHP4.
+
+5.3.005 (2010-06-09)
+	- The method getPageSizeFromFormat() was changed to include all standard page formats (includes 281 page formats + variation).
+
+5.3.004 (2010-06-08)
+	- Bug #3013291 "HTML table cell width" was fixed.
+	- Bug #3013294 "HTML table cell alignment" was fixed.
+	- The columns widths of HTML tables are now inherited from the first row.
+
+5.3.003 (2010-06-08)
+	- Bug #3013102 "HTML table header misaligned after page break" was fixed.
+
+5.3.002 (2010-06-07)
+	- The methods setFontSubsetting() and setFontSubsetting() were added to control the default font subsetting mode (see example n. 1).
+	- Bug #3012596 "Whitespace should not appeared after use Thai top characters" was fixed.
+	- Examples n. 1, 14, and 54 were updated.
+
+5.3.001 (2010-06-06)
+	- Barcode PDF417 was improved to support Macro Code Blocks (see example n. 50).
+
+5.3.000 (2010-06-05)
+	- License was changed to GNU-LGPLv3 (see the updated LICENSE.TXT file).
+	- PDF417 barcode support was added (check the example n. 50).
+	- The method write2DBarcode() was improved (some parameters were added and other changed - check example n. 50).
+
+------------------------------------------------------------
+
+5.2.000 (2010-06-02)
+	- IMPORTANT: Support for font subsetting was added by default to reduce the size of documents using large unicode font files.
+		If you embed the whole font in the PDF, the person on the other end can make changes to it even if he didn't have your font.
+		If you subset the font, file size of the PDF will be smaller but the person who receives your PDF would need to have your same font in order to make changes to your PDF.
+	- The signature of the SetFont() and AddFont() methods were changed to include the font subsetting option (subsetting is applied by default).
+	- Examples 14 and 54 were updated.
+
+------------------------------------------------------------
+
+5.1.002 (2010-05-27)
+	- Bug #3007818 "SetAutoPageBreak fails with MultiCell" was fixed.
+	- A bug related to MultiCell() minimun height was fixed.
+
+5.1.001 (2010-05-26)
+	- The problem of blank page after table was fixed.
+
+5.1.000 (2010-05-25)
+	- This version includes support for CSS (Cascading Style Sheets) (see example n. 61).
+	- The convertHTMLColorToDec() method was improved.
+
+------------------------------------------------------------
+
+5.0.014 (2010-05-21)
+	- A problem on color and style of HTML links was fixed.
+	- A bug relative to gradients was fixed.
+	- The getStringHeight() method was added and getNumLines() method was improved.
+	- All examples were updated.
+
+5.0.013 (2010-05-19)
+	- A bug related to page-breaks and table cells was fixed.
+
+5.0.012 (2010-05-19)
+	- Page orientation bug was fixed.
+	- The access to method setPageFormat() was changed to 'protected' because it is not intended to be directly called.
+
+5.0.011 (2010-05-19)
+	- Page orientation bug was fixed.
+	- Bug #3003966 "Multiple columns and nested lists" was fixed.
+
+5.0.010 (2010-05-17)
+	- The methods setPageFormat(), setPageOrientation() and related methods were extended to include page boxes, page rotations and page transitions.
+	- The method setPageBoxes() was added to set page boundaries (MediaBox, CropBox, BleedBox, TrimBox, ArtBox);
+	- A bug relative to underline, overline and linethrough was fixed.
+
+5.0.009 (2010-05-16)
+	- Bug #3002381 "Multiple columns and nested lists" was fixed.
+
+5.0.008 (2010-05-15)
+	- Bug "Columns WriteHTML and Justification" was fixed.
+
+5.0.007 (2010-05-14)
+	- Bug #3001347 "Bug when using  WriteHTML with setEqualColumns()" was fixed.
+	- Bug #3001505 "problem with sup and sub tags at the beginning of a line" was fixed.
+
+5.0.006 (2010-05-13)
+	- Length of hr tag was fixed.
+	- An error on 2d barcode method was fixed.
+
+5.0.005 (2010-05-12)
+	- WARNING: The logic of permissions on the SetProtection() method has been inverted and extended (see example 16). Now you have to specify the features you want to block.
+	- SetProtection() method was extended to support RSA and AES 128 encryption and public-keys (see example 16).
+	- Bug #2999489 "setEqualColumns() and TOC uses wrong columns" was fixed (see the example 10).
+
+5.0.004 (2010-05-10)
+	- HTML line alignment when using sub and sup tags was fixed.
+
+5.0.003 (2010-05-07)
+	- Horizontal alignment was fixed for images and barcodes. Now the X coordinate is always relative to the left margin. Use GetAbsX() instead of GetX() to get the X relative to left margin.
+	- Header() method was changed to account for new image alignment rules.
+
+5.0.002 (2010-05-06)
+	- Bookmark() and related methods were fixed to accept HTML code.
+	- A problem on HTML links was fixed.
+
+5.0.001 (2010-05-06)
+	- Protected method _putstream was re-added for backward compatibility.
+	- The following method were added to display HTML Table Of Content (see example n. 59):
+		addTOCPage(), endTOCPage(), addHTMLTOC().
+
+5.0.000 (2010-05-05)
+	- Method ImageSVG() was added to embedd SVG images (see example n. 58). Note that not all SVG images are supported.
+	- Method setRasterizeVectorImages() was added to enable/disable rasterization for vector images via ImageMagick library.
+	- Method RoundedRectXY() was added.
+	- Method PieSectorXY() was added.
+	- Gradient() method is now public and support new features.
+	- Shading to transparency is now supported.
+	- Image alignments were fixed.
+	- Support for dynamic images were improved.
+	- PDF_IMAGE_SCALE_RATIO has been changed to 1.25 for better compatibility with SVG.
+	- RAW and RAW2 modes were added to 2D Barcodes (see example n. 50).
+	- Automatic padding feature was added on barcodes (see examples n. 27 and 50).
+	- Bug #2995003 "Reproduced thead bug" was fixed.
+	- The Output() method now accepts FI and FD destinations to save the document on server before sending it to the client.
+	- Ellipse() method was improved and fixed (see page 2 of example n. 12).
+
+------------------------------------------------------------
+
+4.9.018 (2010-04-21)
+	- Bug item #2990356 "Current font size not respected with more than two HTML <p>" was fixed.
+
+4.9.017 (2010-04-21)
+	- Bug item #2990224 "Different behaviour for equivalent HTML strings" was fixed.
+	- Bug item #2990314 "Dash is not appearing with SHY character" was fixed.
+
+4.9.016 (2010-04-20)
+	- An error on htmlcolors.php was fixed.
+	- getImageFileType() method was improved.
+	- GIF images with transparency are now better supported.
+	- Automatic page orientation was improved.
+
+4.9.015 (2010-04-20)
+	- A new method copyPage() was added to clone pages (see example n. 44).
+	- Support for text overline was added.
+	- Underline and linethrough methods were fixed.
+	- Bug #2989058 "SHY character causes unnecessary word-wrapping" was fixed.
+
+4.9.014 (2010-04-18)
+	- Bug item #2988845 was fixed.
+
+4.9.013 (2010-04-15)
+	- Image() and ImageEPS() methods were fixed and improved; $fitonpage parameter was added.
+
+4.9.012 (2010-04-12)
+	- The hyphenateText() method was added to automatically hyphenate text (see example n. 46).
+
+4.9.011 (2010-04-07)
+	- Vertical alignments for Cell() method were improved (see example n. 57).
+
+4.9.010 (2010-04-06)
+	- Signature of Cell() method now includes new parameters for vertical alignment (see example n. 57).
+	- Text() method was extended to include all Cell() parameters.
+	- HTML line alignment procedure was changed to fix some bugs.
+
+4.9.009 (2010-04-05)
+	- Text() method was fixed for backward compatibility.
+
+4.9.008 (2010-04-03)
+	- Additional line space after table header was removed.
+	- Support for HTML lists in multicolumn mode was added.
+	- The method setTextRenderingMode() was added to set text rendering modes (see the example n. 26).
+	- The following HTML attributes were added to set text rendering modes (see the example n. 26): stroke, strokecolor, fill.
+
+4.9.007 (2010-04-03)
+	- Font Descent computation was fixed (patch #2981441).
+
+4.9.006 (2010-04-02)
+	- The constant K_TCPDF_CALLS_IN_HTML was added on configuration file to enable/disable the ability to call TCPDF methods in HTML.
+	- The usage of tcpdf tag in HTML mode was changed to remove the possible security flaw offered by the eval() function (thanks to Matthias Hecker for spotting this security problem). See the new example n. 49 for further information.
+
+4.9.005 (2010-04-01)
+	- Bug# 2980354 "Wrong File attachment description with security" was fixed.
+	- Several problems with HTML line alignment were fixed.
+	- The constant K_THAI_TOPCHAR was added on configuration file to enable/disable the special procedure used to avoid the overlappind of symbols on Thai language.
+	- A problem with font name directory was fixed.
+	- A bug on _destroy() method was fixed.
+
+4.9.004 (2010-03-31)
+	- Patch #979681 "GetCharWidth - default character width" was applied (bugfix).
+
+4.9.003 (2010-03-30)
+	- Problem of first <br /> on multiple columns was fixed.
+	- HTML line alignment was fixed.
+	- A QR-code bug was fixed.
+
+4.9.002 (2010-03-29)
+	- Patch #2978349 "$ignore_min_height is ignored in function Cell()" was applied.
+	- Bug #2978607 "2D Barcodes are wrong" was fixed.
+	- A problem with HTML block tags was fixed.
+	- Artificial italic for CID-0 fonts was added.
+	- Several multicolumn bugs were fixed.
+	- Support for HTML tables on multicolumn was added.
+
+4.9.001 (2010-03-28)
+	- QR Code minor bug was fixed.
+	- Multicolumn mode was added (see the new example n. 10).
+	- The following methods were added: setEqualColumns(), setColumnsArray(), selectColumn().
+	- Thai diacritics support were changed (note that this is incompatible with html justification).
+
+4.9.000 (2010-03-27)
+	- QR Code (2D barcode) support was added (see example n. 50).
+	- The following methods were added to print crop and registration marks (see example n. 56): colorRegistrationBar(), cropMark(), registrationMark().
+	- Limited support for CSS line-height property was added.
+	- Gradient method now supports Gray, RGB and CMYK space color.
+	- Example n. 51 was updated.
+	- Vertical alignment of font inside cell was fixed.
+	- Support for multiple Thai diacritics was added.
+	- Bug item #2974929 "Duplicate case values" was fixed.
+	- Bug item #2976729 "File attachment not working with security" was fixed.
+
+------------------------------------------------------------
+
+4.8.039 (2010-03-20)
+	- Problems related to custom locale settings were fixed.
+	- Problems related to HTML on Header and Footer were fixed.
+
+4.8.038 (2010-03-13)
+	- Various bugs related to page-break in HTML mode were fixed.
+	- Bug item #2968974 "Another <thead> pagebreak problem" was fixed.
+	- Bug item #2969276 "justification problem" was fixed.
+	- Bug item #2969289 "bug when using justified text and custom headers" was fixed.
+	- Images are now automatically resized to be contained on the page.
+	- Some HTML line alignments were fixed.
+	- Signature of AddPage() and SetMargins() methods were changed to include an option to set default page margins.
+
+4.8.037 (2010-03-03)
+	- Bug item #2962068 was fixed.
+	- Bug item #2967017 "Problems with <thead> and pagebreaks" was fixed.
+	- Bug item #2967023 "table header lost with pagebreak" was fixed.
+	- Bug item #2967032 "Header lost with nested tables" was fixed.
+
+4.8.036 (2010-02-24)
+	- Automatic page break for HTML images was improved.
+	- Example 10 was updated.
+	- Japanese was removed from example 8 because the freeserif font doesn't contain japanese (you can display it using arialunicid0 font).
+
+4.8.035 (2010-02-23)
+	- Automatic page break for HTML images was added.
+	- Support for multicolumn HTML was added (example 10 was updated).
+
+4.8.034 (2010-02-17)
+	- Language files were updated.
+
+4.8.033 (2010-02-12)
+	- A bug related to protection mode with links was fixed.
+
+4.8.032 (2010-02-04)
+	- A bug related to $maxh parameter on Write() and MultiCell() was fixed.
+	- Support for body tag was added.
+
+4.8.031 (2010-01-30)
+	- Bug item #2941589 "paragraph justify not working on some non-C locales" was fixed.
+
+4.8.030 (2010-01-27)
+	- Some text alignment cases were fixed.
+
+4.8.029 (2010-01-27)
+	- Bug item #2941057 "TOC Error in PDF File Output" was fixed.
+	- Some text alignment cases were fixed.
+
+4.8.028 (2010-01-26)
+	- Text alignment for RTL mode was fixed.
+
+4.8.027 (2010-01-25)
+	- Bug item #2938412 "Table related problems - thead, nobr, table width" was fixed.
+
+4.8.026 (2010-01-19)
+	- The misspelled word "lenght" was replaced with "length" in some variables and comments.
+
+4.8.025 (2010-01-18)
+	- addExtGState() method was improved to reuse existing ExtGState objects.
+
+4.8.024 (2010-01-15)
+	- Justification mode for HTML was fixed (Bug item #2932470).
+
+4.8.023 (2010-01-15)
+	- Bug item #2932470 "Some HTML entities breaks justification" was fixed.
+
+4.8.022 (2010-01-14)
+	- Source code documentation was fixed.
+
+4.8.021 (2010-01-03)
+	- A Bug relative to Table Of Content index was fixed.
+
+4.8.020 (2009-12-21)
+	- Bug item #2918545 "Display problem of the first row of a table with larger font" was fixed.
+	- A Bug relative to table rowspan mode was fixed.
+
+4.8.019 (2009-12-16)
+	- Bug item #2915684 "Image size" was fixed.
+	- Bug item #2914995 "Image jpeg quality" was fixed.
+	- The signature of the Image() method was changed (check the documentation for the $resize parameter).
+
+4.8.018 (2009-12-15)
+	- Bug item #2914352 "write error" was fixed.
+
+4.8.017 (2009-11-27)
+	- THEAD problem when table is used on header/footer was fixed.
+	- A first line alignment on HTML justification was fixed.
+	- Method getImageFileType() was added.
+	- Images with unknown extension and type are now supported via ImageMagick PHP extension.
+
+4.8.016 (2009-11-21)
+	- Document Information Dictionary was fixed.
+	- CSS attributes 'page-break-before', 'page-break-after' and 'page-break-inside' are now supported.
+	- Problem of unclosed last page was fixed.
+	- Problem of 'thead' unnecessarily repeated on the next page was fixed.
+
+4.8.015 (2009-11-20)
+	- A problem with some PNG transparency images was fixed.
+	- Bug #2900762 "Sort issues in Bookmarks" was fixed.
+	- Text justification was fixed for various modes: underline, strikeout and background.
+
+4.8.014 (2009-11-04)
+	- Bug item #2891316 "writeHTML, underlining replacing spaces" was fixed.
+	- The handling of temporary RTL text direction mode was fixed.
+
+4.8.013 (2009-10-26)
+	- Bug item #2884729 "Problem with word-wrap and hyphen" was fixed.
+
+4.8.012 (2009-10-23)
+	- Table cell alignments for RTL booklet mode were fixed.
+	- Images and barcode alignments for booklet mode were fixed.
+
+4.8.011 (2009-10-22)
+	- DejaVu fonts were updated to latest version.
+
+4.8.010 (2009-10-21)
+	- Bookmark for TOC page was added.
+	- Signature of addTOC() method is changed.
+	- Bookmarks are now automatically sorted by page and Y position.
+	- Example n. 45 was updated.
+	- Example n. 55 was added to display all charactes available on core fonts.
+
+4.8.009 (2009-09-30)
+	- Compatibility with PHP 5.3 was improved.
+	- All examples were updated.
+	- Index file for examples was added.
+
+4.8.008 (2009-09-29)
+	- Example 49 was updated.
+	- Underline and linethrough now works with cell stretching mode.
+
+4.8.007 (2009-09-23)
+	- Infinite loop problem caused by nobr attribute was fixed.
+
+4.8.006 (2009-09-23)
+	- Bug item #2864522 "No images if DOCUMENT_ROOT=='/'" was fixed.
+	- Support for text-indent CSS attribute was added.
+	- Method rollbackTransaction() was changed to support self-reassigment of previous object (check source code documentation).
+	- Support for the HTML "nobr" attribute was added to avoid splitting a table or a table row on two pages (i.e.: <tr nobr="true">...</tr>).
+
+4.8.005 (2009-09-17)
+	- A bug relative to multiple transformations and annotations was fixed.
+
+4.8.004 (2009-09-16)
+	- A bug on _putannotsrefs() method was fixed.
+
+4.8.003 (2009-09-15)
+	- Bug item #2858754 "Division by zero" was fixed.
+	- A bug relative to HTML list items was fixed.
+	- A bug relative to form fields on multiple pages was fixed.
+	- PolyLine() method was added (see example n. 12).
+	- Signature of Polygon() method was changed.
+
+4.8.002 (2009-09-12)
+	- A problem related to CID-0 fonts offset was fixed: if the $cw[1] entry on the CID-0 font file is not defined, then a CID keys offset is introduced.
+
+4.8.001 (2009-09-09)
+	- The appearance streams (AP) for anotations form fields was fixed (see examples n. 14 and 54).
+	- Radiobuttons were fixed.
+
+4.8.000 (2009-09-07)
+	- This version includes some support for Forms fields (see example n. 14) and XHTML forms (see example n. 54).
+	- The following methods were changed to work without JavaScript: TextField(), RadioButton(), ListBox(), ComboBox(), CheckBox(), Button().
+	- Support for Widget annotations was improved.
+	- Alignment of annotation objects was fixed (examples 36 and 41 were updated).
+	- addJavascriptObject() method was added.
+	- Signature of Image() method was changed.
+	- htmlcolors.php file was updated.
+
+------------------------------------------------------------
+
+4.7.003 (2009-09-03)
+	- Support for TCPDF methods on HTML was improved (see example n. 49).
+
+4.7.002 (2009-09-02)
+	- Bug item #2848892 "writeHTML + table: Gaps between rows" was fixed.
+	- JavaScript support was fixed (see example n. 53).
+
+4.7.001 (2009-08-30)
+	- The Polygon() and Arrow() methods were fixed and improved (see example n. 12).
+
+4.7.000 (2009-08-29)
+	- This is a major release.
+	- Some procedures were internally optimized.
+	- The problem of mixed signature and annotations was fixed (example n. 52).
+
+4.6.030 (2009-08-29)
+	- IMPORTANT: percentages on table cell widths are now relative to the full table width (as in standard HTML).
+	- Various minor bugs were fixed.
+	- Example n. 52 (digital signature) was updated.
+
+4.6.029 (2009-08-26)
+	- PHP4 version was fixed.
+
+4.6.028 (2009-08-25)
+	- Signature algorithm was finally fixed (see example n. 52).
+
+4.6.027 (2009-08-24)
+	- TCPDF now supports unembedded TrueTypeUnicode Fonts (just comment the $file entry on the fonts' php file.
+
+4.6.026 (2009-08-21)
+	- Bug #2841693 "Problem with MultiCell and ishtml and justification" was fixed.
+	- Signature functions were improved but not yet fixed (tcpdf.crt and example n. 52 were updated).
+
+4.6.025 (2009-08-17)
+	- Carriage returns (\r) were removed from source code.
+	- Problem related to set_magic_quotes_runtime() depracated was fixed.
+
+4.6.024 (2009-08-07)
+	- Bug item #2833556 "justification using other units than mm" was fixed.
+	- Documentation was fixed/updated.
+
+4.6.023 (2009-08-02)
+	- Bug item #2830537 "MirrorH can show mask for transparent PNGs" was fixed.
+
+4.6.022 (2009-07-24)
+	- A bug relative to single line printing when using WriteHTMLCell() was fixed.
+	- Signature support were improved but is still experimental.
+	- Fonts Free and Dejavu were updated to latest versions.
+
+4.6.021 (2009-07-20)
+	- Bug item #2824015 "XHTML Ampersand &amp; in hyperlink bug" was fixed.
+	- Bug item #2824036 "Image as hyperlink in table, text displaced at page break" was fixed.
+	- Links alignment on justified text was fixed.
+	- Unicode "\u" modifier was added to re_spaces variable by default.
+
+4.6.020 (2009-07-16)
+	- Bug item #2821921 "issue in example 18" was fixed.
+	- Signature of SetRTL() method was changed.
+
+4.6.019 (2009-07-13)
+	- Bug item #2820703 "xref table broken" was fixed.
+
+4.6.018 (2009-07-10)
+	- Bug item #2819319 "Text over text" was fixed.
+	- Method Arrow() was added to print graphic arrows (example 12 was updated).
+
+4.6.017 (2009-07-05)
+	- Bug item #2816079 "Example 48 not working" was fixed.
+	- The signature of the checkPageBreak() was changed. The parameter $addpage was added to turn off the automatic page creation.
+
+4.6.016 (2009-06-16)
+	- Method setSpacesRE() was added to set the regular expression used for detecting withespaces or word separators. If you are using chinese, try: setSpacesRE('/[\s\p{Z}\p{Lo}]/');, otherwise you can use setSpacesRE('/[\s\p{Z}]/');
+	- The method _putinfo() now automatically fills the metadata with '?' in case of empty string.
+
+4.6.015 (2009-06-11)
+	- Bug #2804667 "word wrap bug" was fixed.
+
+4.6.014 (2009-06-04)
+	- Bug #2800931 "Table thead tag bug" was fixed.
+	- A bug related to <pre> tag was fixed.
+
+4.6.013 (2009-05-28)
+	- List bullets position was fixed for RTL languages.
+
+4.6.012 (2009-05-23)
+	- setUserRights() method doesn't work anymore unless you call the setSignature() method with the Adobe private key!
+
+4.6.011 (2009-05-18)
+	- Signature of the Image() method was changed to include the new $fitbox parameter (see source code documentation).
+
+4.6.010 (2009-05-17)
+	- Image() method was improved: now is possible to specify the maximum dimensions for a constraint box defined by $w and $h parameters, and setting the $resize parameter to null.
+	- <tcpdf> tag indent problem was fixed.
+	- $y parameter was added to checkPageBreak() method.
+	- Bug n. 2791773 "writeHTML" was fixed.
+
+4.6.009 (2009-05-13)
+	- xref table for embedded files was fixed.
+
+4.6.008 (2009-05-07)
+	- setSignature() method was improved (but is still experimental).
+	- Example n. 52 was added.
+
+4.6.007 (2009-05-05)
+	- Bug #2786685 "writeHtmlCell and <br /> in custom footer" was fixed.
+	- Table header repeating bug was fixed.
+	- Some newlines and tabs are now automatically removed from HTML strings.
+
+4.6.006 (2009-04-28)
+	- Support for "<a name="...">...</a>" was added.
+	- By default TCPDF requires PCRE Unicode support turned on but now works also without it (with limited ability to detect some Unicode blank spaces).
+
+4.6.005 (2009-04-25)
+	- Points (pt) conversion in getHTMLUnitToUnits() was fixed.
+	- Default tcpdf.pem certificate file was added.
+	- Experimental support for signing document was added but it is not yet completed (some help is needed - I think that the calculation of the ByteRange is OK and the problem is on the signature calculation).
+
+4.6.004 (2009-04-23)
+	- Method deletePage() was added to delete pages (see example n. 44).
+
+4.6.003 (2009-04-21)
+	- The caching mechanism of the UTF8StringToArray() method was fixed.
+
+4.6.002 (2009-04-20)
+	- Documentation of rollbackTransaction() method was fixed.
+	- The setImageScale() and getImageScale() methods now set and get the adjusting parameter used by pixelsToUnits() method.
+	- HTML images now support other units of measure than pixels (getHTMLUnitToUnits() is now used instead of pixelsToUnits()).
+	- WARNING: PDF_IMAGE_SCALE_RATIO has been changed by default to 1.
+
+4.6.001 (2009-04-17)
+	- Spaces between HTML block tags are now automatically removed.
+	- The bug related to cMargin changes between tables was fixed.
+
+4.6.000 (2009-04-16)
+	- WARNING: THIS VERSION CHANGES THE BEHAVIOUR OF $x and $y parameters for several TCPDF methods:
+		zero coordinates for $x and $y are now valid coordinates;
+		set $x and $y as empty strings to get the current value.
+	- Some error caused by 'empty' funtion were fixed.
+	- Default color for convertHTMLColorToDec() method was changed to white and the return value for invalid color is false.
+	- HTML on footer bug was fixed.
+	- The following examples were fixed: 5,7,10,17,19,20,21,33,42,43.
+
+4.5.043 (2009-04-15)
+	- Barcode class (barcode.php) was extended to include new linear barcode types (see example n. 27):
+		C39 : CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9
+		C39+ : CODE 39 with checksum
+		C39E : CODE 39 EXTENDED
+		C39E+ : CODE 39 EXTENDED + CHECKSUM
+		C93 : CODE 93 - USS-93
+		S25 : Standard 2 of 5
+		S25+ : Standard 2 of 5 + CHECKSUM
+		I25 : Interleaved 2 of 5
+		I25+ : Interleaved 2 of 5 + CHECKSUM
+		C128A : CODE 128 A
+		C128B : CODE 128 B
+		C128C : CODE 128 C
+		EAN2 : 2-Digits UPC-Based Extention
+		EAN5 : 5-Digits UPC-Based Extention
+		EAN8 : EAN 8
+		EAN13 : EAN 13
+		UPCA : UPC-A
+		UPCE : UPC-E
+		MSI : MSI (Variation of Plessey code)
+		MSI+ : MSI + CHECKSUM (modulo 11)
+		POSTNET : POSTNET
+		PLANET : PLANET
+		RMS4CC : RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)
+		KIX : KIX (Klant index - Customer index)
+		IMB: Intelligent Mail Barcode - Onecode - USPS-B-3200 (NOTE: requires BCMath PHP extension)
+		CODABAR : CODABAR
+		CODE11 : CODE 11
+		PHARMA : PHARMACODE
+		PHARMA2T : PHARMACODE TWO-TRACKS
+
+4.5.042 (2009-04-15)
+	- Method Write() was fixed for the strings containing only zero value.
+
+4.5.041 (2009-04-14)
+	- Barcode methods were fixed.
+
+4.5.040 (2009-04-14)
+	- Method Write() was fixed to handle empty strings.
+
+4.5.039 (2009-04-11)
+	- Support for linear barcodes was extended (see example n. 27 and barcodes.php documentation).
+
+4.5.038 (2009-04-10)
+	- Write() method was improved to support separators for Japanese, Korean, Chinese Traditional and Chinese Simplified.
+
+4.5.037 (2009-04-09)
+	- General performances were improved.
+	- The signature of the method utf8Bidi() was changed.
+	- The method UniArrSubString() was added.
+	- Experimental support for 2D barcodes were added (see example n. 50 and 2dbarcodes.php class).
+
+4.5.036 (2009-04-03)
+	- TCPDF methods can be called inside the HTML code (see example n. 49).
+	- All tag attributes, such as <p align="center"> must be enclosed within double quotes.
+
+4.5.035 (2009-03-28)
+	- Bug #2717436 "writeHTML rowspan problem (continued)" was fixed.
+	- Bug #2719090 "writeHTML fix follow up" was fixed.
+	- The method _putuserrights() was changed to avoid Adobe Reader 9.1 crash. This broken the 'trick' that was used to display forms in Acrobat Reader.
+
+4.5.034 (2009-03-27)
+	- Bug #2716914 "Bug writeHTML of a table in body and footer related with pb" was fixed.
+	- Bug #2717056 ] "writeHTML problem when setting tr style" was fixed.
+	- The signature of the Cell() method was changed.
+
+4.5.033 (2009-03-27)
+	- The support for rowspan/colspan on HTML tables was improved (see example n. 48).
+
+4.5.032 (2009-03-23)
+	- setPrintFooter(false) bug was fixed.
+
+4.5.031 (2009-03-20)
+	- Table header support was extended to multiple pages.
+
+4.5.030 (2009-03-20)
+	- thead tag is now supported on HTML tables (header rows are repeated after page breaks).
+	- The startTransaction() was improved to autocommit.
+	- List bullets now uses the foreground color (putHtmlListBullet()).
+
+4.5.029 (2009-03-19)
+	- The following methods were added to UNDO commands (see example 47): startTransaction(), commitTransaction(), rollbackTransaction().
+	- All examples were updated.
+
+4.5.028 (2009-03-18)
+	- Bug #2690945 "List Bugs" was fixed.
+	- HTML text alignment on lists was fixed.
+	- The constant PDF_FONT_MONOSPACED was added to the configuration file to define the default monospaced font.
+	- The following methods were fixed: getPageWidth(), getPageHeight(), getBreakMargin().
+	- All examples were updated.
+
+4.5.027 (2009-03-16)
+	- Method getPageDimensions() was added to get page dimensions.
+	- The signature of the following methos were changed: getPageWidth(), getPageHeight(), getBreakMargin().
+	- _parsepng() method was fixed for PNG URL images (fread bug).
+
+4.5.026 (2009-03-11)
+	- Bug #2681793 affecting URL images with spaces was fixed.
+
+4.5.025 (2009-03-10)
+	- A small bug affecting hyphenation support was fixed.
+	- The method SetDefaultMonospacedFont() was added to define the default monospaced font.
+
+4.5.024 (2009-03-07)
+	- The bug #2666493 was fixed "Footer corrupts document".
+
+4.5.023 (2009-03-06)
+	- The bug #2666688 was fixed "Rowspan in tables".
+
+4.5.022 (2009-03-05)
+	- The bug #2659676 was fixed "refer to #2157099 test 4 < BR > problem still not fixed".
+	- addTOC() function bug was fixed.
+
+4.5.020 (2009-03-03)
+	- The following bug was fixed: "function removeSHY corrupts unicode".
+
+4.5.019 (2009-02-28)
+	- The problem of decimal separator using different locale was fixed.
+	- The text hyphenation is now supported (see example n. 46).
+
+4.5.018 (2009-02-26)
+	- The _destroy() method was added to unset all class variables and frees memory.
+	- Now it's possible to call Output() method multiple times.
+
+4.5.017 (2009-02-24)
+	- A minor bug that raises a PHP warning was fixed.
+
+4.5.016 (2009-02-24)
+	- Bug item #2631200 "getNumLines() counts wrong" was fixed.
+	- Multiple attachments bug was fixed.
+	- All class variables are now cleared on Output() for memory otpimization.
+
+4.5.015 (2009-02-18)
+	- Bug item #2612553 "function Write() must not break a line on &nbsp;  character" was fixed.
+
+4.5.014 (2009-02-13)
+	- Bug item #2595015 "POSTNET Barcode Checksum Error" was fixed (on barcode.php).
+	- Pagebreak bug for barcode was fixed.
+
+4.5.013 (2009-02-12)
+	- border attribute is now supported on HTML images (only accepts the same values accepted by Cell()).
+
+4.5.012 (2009-02-12)
+	- An error on image border feature was fixed.
+
+4.5.011 (2009-02-12)
+	- HTML links for images are now supported.
+	- height attribute is now supported on HTML cells.
+	- $border parameter was added to Image() and ImageEps() methods.
+	- The method getNumLines() was added to estimate the number of lines required for the specified text.
+
+4.5.010 (2009-01-29)
+	- Bug n. 2546108 "BarCode Y position" was fixed.
+
+4.5.009 (2009-01-26)
+	- Bug n. 2538094 "Empty pdf file created" was fixed.
+
+4.5.008 (2009-01-26)
+	- setPage() method was fixed to correctly restore graphic states.
+	- Source code was cleaned up for performances.
+
+4.5.007 (2009-01-24)
+	- checkPageBreak() and write1DBarcode() methods were fixed.
+	- Source code was cleaned up for performances.
+	- barcodes.php was updated.
+
+4.5.006 (2009-01-23)
+	- getHTMLUnitToPoints() method was replaced by getHTMLUnitToUnits() to fix HTML units bugs.
+
+4.5.005 (2009-01-23)
+	- Page closing bug was fixed.
+
+4.5.004 (2009-01-21)
+	- The access of convertHTMLColorToDec() method was changed to public
+	- Fixed bug on UL tag.
+
+4.5.003 (2009-01-19)
+	- Fonts on different folders are now supported.
+
+4.5.002 (2009-01-07)
+	- addTOC() function was improved (see example n. 45).
+
+4.5.001 (2009-01-04)
+	- The signature of startPageGroup() function was changed.
+	- Method Footer() was improved to automatically print page or page-group number (see example n. 23).
+	- Protected method formatTOCPageNumber() was added to customize the format of page numbers on the Table Of Content.
+	- The signature of addTOC() was changed to include the font used for page numbers.
+
+4.5.000 (2009-01-03)
+	- A new $diskcache parameter was added to class constructor to enable disk caching and reduce RAM memory usage (see example n. 43).
+	- The method movePageTo() was added to move pages to previous positions (see example n. 44).
+	- The methods getAliasNumPage() and getPageNumGroupAlias() were added to get the alias for page number (needed when using movepageTo()).
+	- The methods addTOC() was added to print a Table Of Content (see example n. 45).
+	- Imagick class constant was removed for better compatibility with PHP4.
+	- All existing examples were updated and new examples were added.
+
+4.4.009 (2008-12-29)
+	- Examples 1 and 35 were fixed.
+
+4.4.008 (2008-12-28)
+	- Bug #2472169 "Unordered bullet size not adjusted for unit type" was fixed.
+
+4.4.007 (2008-12-23)
+	- Bug #2459935 "no unit conversion for header line" was fixed.
+	- Example n. 42 for image alpha channel was added.
+	- All examples were updated.
+
+4.4.006 (2008-12-11)
+	- Method setLIsymbol() was changed to reflect latest changes in HTML list handling.
+
+4.4.005 (2008-12-10)
+	- Bug item #2413870 "ordered list override value" was fixed.
+
+4.4.004 (2008-12-10)
+	- The protected method getHTMLUnitToPoints() was added to accept various HTML units of measure (em, ex, px, in, cm, mm, pt, pc, %).
+	- The method intToRoman() was added to convert integer number to Roman representation.
+	- Support fot HTML lists was improved: the CSS property list-style-type is now supported.
+
+4.4.003 (2008-12-09)
+	- Bug item #2412147 "Warning on line 3367" was fixed.
+	- Method setHtmlLinksStyle() was added to set default HTML link colors and font style.
+	- Method addHtmlLink() was changed to use color and style defined on the inline CSS.
+
+4.4.002 (2008-12-09)
+	- Borders on Multicell() were fixed.
+	- Problem of Multicell() on Header function (Bug item #2407579) was fixed.
+	- Problem on graphics tranformations applied to Multicell() was fixed.
+	- Support for ImageMagick was added.
+	- Width calculation for nested tables was fixed.
+
+4.4.001 (2008-12-08)
+	- Some missing core fonts were added on fonts directory.
+	- CID0 fonts rendering was fixed.
+	- HTML support was improved (<pre> and <tt> tags are now supported).
+	- Bug item #2406022 "Left padding bug in MultiCell with maxh" was fixed.
+
+4.4.000 (2008-12-07)
+	- File attachments are now supported (see example n. 41).
+	- Font functions were optimized to reduce document size.
+	- makefont.php was updated.
+	- Linux binaries were added on /fonts/utils
+	- All fonts were updated.
+	- $autopadding parameter was added to Multicell() to disable automatic padding features.
+	- $maxh parameter was added to Multicell() and Write() to set a maximum height.
+
+4.3.009 (2008-12-05)
+	- Bug item #2392989 (Custom header + setlinewidth + cell border bug) was fixed.
+
+4.3.008 (2008-12-05)
+	- Bug item #2390566 "rect bug" was fixed.
+	- File path was fixed for font embedded files.
+	- SetFont() method signature was changed to include the font filename.
+	- Some font-related methods were improved.
+	- Methods getFontFamily() and getFontStyle() were added.
+
+4.3.007 (2008-12-03)
+	- PNG alpha channel is now supported (GD library is required).
+	- AddFont() function now support custom font file path on $file parameter.
+	- The default width variable ($dw) is now always defined for any font.
+	- The 'Style' attribute on CID-0 fonts was removed because of protection bug.
+
+4.3.006 (2008-12-01)
+	- A regular expression on getHtmlDomArray() to find HTML tags was fixed.
+
+4.3.005 (2008-11-25)
+	- makefont.php was fixed.
+	- Bug item #2339877 was fixed (false loop condition detected on WriteHTML()).
+	- Bug item #2336733 was fixed (lasth value update on Multicell() when border and fill are disabled).
+	- Bug item #2342303 was fixed (automatic page-break on Image() and ImageEPS()).
+
+4.3.004 (2008-11-19)
+	- Function _textstring() was fixed (bug 2309051).
+	- All examples were updated.
+
+4.3.003 (2008-11-18)
+	- CID-0 font bug was fixed.
+	- Some functions were optimized.
+	- Function getGroupPageNoFormatted() was added.
+	- Example n. 23 was updated.
+
+4.3.002 (2008-11-17)
+	- Bug item #2305518 "CID-0 font don't work with encryption" was fixed.
+
+4.3.001 (2008-11-17)
+	- Bug item #2300007 "download mimetype pdf" was fixed.
+	- Double quotes were replaced by single quotes to improve PHP performances.
+	- A bug relative to HTML cell borders was fixed.
+
+4.3.000 (2008-11-14)
+	- The function setOpenCell() was added to set the top/bottom cell sides to be open or closed when the cell cross the page.
+	- A bug relative to list items indentation was fixed.
+	- A bug relative to borders on HTML tables and Multicell was fixed.
+	- A bug relative to rowspanned cells was fixed.
+	- A bug relative to html images across pages was fixed.
+
+4.2.009 (2008-11-13)
+	- Spaces between li tags are now automatically removed.
+
+4.2.008 (2008-11-12)
+	- A bug relative to fill color on next page was fixed.
+
+4.2.007 (2008-11-12)
+	- The function setListIndentWidth() was added to set custom indentation widht for HTML lists.
+
+4.2.006 (2008-11-06)
+	- A bug relative to HTML justification was fixed.
+
+4.2.005 (2008-11-06)
+	- A bug relative to HTML justification was fixed.
+	- The methods formatPageNumber() and PageNoFormatted() were added to format page numbers.
+	- Default Footer() method was changed to use PageNoFormatted() instead of PageNo().
+	- Example 6 was updated.
+
+4.2.004 (2008-11-04)
+	- Bug item n. 2217039 "filename handling improvement" was fixed.
+
+4.2.003 (2008-10-31)
+	- Font style bug was fixed.
+
+4.2.002 (2008-10-31)
+	- Bug item #2210922 (htm element br not work) was fixed.
+	- Write() function was improved to support margin changes.
+
+4.2.001 (2008-10-30)
+	- setHtmlVSpace($tagvs) function was added to set custom vertical spaces for HTML tags.
+	- writeHTML() function now support margin changes during execution.
+	- Signature of addHTMLVertSpace() function is changed.
+
+4.2.000 (2008-10-29)
+	- htmlcolors.php was changed to support class-loaders.
+	- ImageEps() function was improved in performances.
+	- Signature of Link() And Annotation() functions were changed.
+	- (Bug item #2198926) Links and Annotations alignment were fixed (support for geometric tranformations was added).
+	- rowspan mode for HTML table cells was improved and fixed.
+	- Booklet mode for double-sided pages was added; see SetBooklet() function and example n. 40.
+	- lastPage() signature is changed.
+	- Signature of Write() function is changed.
+	- Some HTML justification problems were fixed.
+	- Some functions were fixed to better support RTL mode.
+	- Example n. 10 was changed to support RTL mode.
+	- All examples were updated.
+
+4.1.004 (2008-10-23)
+	- unicode_data.php was changed to support class-loaders.
+	- Bug item #2186040/2 (writeHTML margin problem) was fixed.
+
+4.1.003 (2008-10-22)
+	- Bug item #2185399 was fixed (rowspan and page break).
+	- Bugs item #2186040 was fixed (writeHTML margin problem).
+	- Newline after table was removed.
+
+4.1.002 (2008-10-21)
+	- Bug item #2184525 was fixed (rowspan on HTML cell).
+
+4.1.001 (2008-10-21)
+	- Support for "start" attribute was added to HTML ordered list.
+	- unicode_data.php file was changed to include UTF-8 to ASCII table.
+	- Some functions were modified to better support UTF-8 extensions to core fonts.
+	- Support for images on HTML lists was improved.
+	- Examples n. 1 and 6 were updated.
+
+4.1.000 (2008-10-18)
+	- Page-break bug using HTML content was fixed.
+	- The "false" parameter was reintroduced to class_exists function on PHP5 version to avoid autoload.
+	- addHtmlLink() function was improved to support internal links (i.e.: <a href="#23">link to page 23</a>).
+	- Justification alignment is now supported on HTML (see example n. 39).
+	- example_006.php was updated.
+
+4.0.033 (2008-10-13)
+	- Bug n. 2157099 was fixed.
+	- SetX() and SetY() functions were improved.
+	- SetY() includes a new parameter to avoid the X reset.
+
+4.0.032 (2008-10-10)
+	- Bug n. 2156926 was fixed (bold, italic, underlined, linethrough).
+	- setStyle() method was removed.
+	- Configuration file was changed to use helvetica (non-unicode) font by default.
+	- The use of mixed font types was improved.
+	- All examples were updated.
+
+4.0.031 (2008-10-09)
+	- _putannots() and _putbookmarks() links alignments were fixed.
+
+4.0.030 (2008-10-07)
+	- _putbookmarks() function was fixed.
+	- _putannots() was fixed to include internal links.
+
+4.0.029 (2008-09-27)
+	- Infinite loop bug was fixed [Bug item #130309].
+	- Multicell() problem on Header() was fixed.
+
+4.0.028 (2008-09-26)
+	- setLIsymbol() was added to set the LI symbol used on UL lists.
+	- Missing $padding and $encryption_key variables declarations were added [Bug item #2129058].
+
+4.0.027 (2008-09-19)
+	- Bug #2118588 "Undefined offset in tcpdf.php on line 9581" was fixed.
+	- arailunicid0.php font was updated.
+	- The problem of javascript form fields duplication after saving was fixed.
+
+4.0.026 (2008-09-17)
+	- convertHTMLColorToDec() function was improved to support rgb(RR,GG,BB) notation.
+	- The following inline CSS attributes are now supported: text-decoration, color, background-color and font-size names: xx-small, x-small, small, medium, large, x-large, xx-large
+	- Example n. 6 was updated.
+
+4.0.025 (2008-09-15)
+	- _putcidfont0 function was improved to include CJK fonts (Chinese, Japanese, Korean, CJK, Asian fonts) without embedding.
+	- arialunicid0 font was added (see the new example n. 38).
+	- The following Unicode to CID-0 tables were added on fonts folder: uni2cid_ak12.php, uni2cid_aj16.php, uni2cid_ag15.php, uni2cid_ac15.php.
+
+4.0.024 (2008-09-12)
+	- "stripos" function was replaced with "strpos + strtolower" for backward compatibility with PHP4.
+	- support for Spot Colors were added. Check the new example n. 37 and the following new functions:
+		AddSpotColor()
+		SetDrawSpotColor()
+		SetFillSpotColor()
+		SetTextSpotColor()
+		_putspotcolors()
+	- Bookmark() function was improved to fix wrong levels.
+	- $lasth changes after header/footer calls were fixed.
+
+4.0.023 (2008-09-05)
+	- Some HTML related problems were fixed.
+	- Image alignment on HTML was changed, now it always defaults to the normal mode (see example_006.php).
+
+4.0.022 (2008-08-28)
+	- Line height on HTML was fixed.
+	- Image inside an HTML cell problem was fixed.
+	- A new "zarbold" persian font was added.
+
+4.0.021 (2008-08-24)
+	- HTTP headers were fixed on Output function().
+	- getAliasNbPages() and getPageGroupAlias() functions were changed to support non-unicode fonts on unicode documents.
+	- Function Write() was fixed.
+	- The problem of additional vertical spaces on HTML was fixed.
+	- The problem of frame around HTML links was fixed.
+
+4.0.020 (2008-08-15)
+	- "[2052259] WriteHTML <u> & <b>" bug was fixed.
+
+4.0.019 (2008-08-13)
+	- "Rowspan on first cell" bug was fixed.
+
+4.0.018 (2008-08-08)
+	- Default cellpadding for HTML tables was fixed.
+	- Annotation() function was added to support some PDF annotations (see example_036.php and section 8.4 of PDF reference 1.7).
+	- HTML links are now correclty shifted during line alignments.
+	- function getAliasNbPages() was added and Footer() was updated.
+	- RowSpan mode for HTML tables was fixed.
+	- Bugs item #2043610 "Multiple sizes vertical align wrong" was fixed.
+	- ImageEPS() function was improved and RTL alignment was fixed (see example_032.php).
+
+4.0.017 (2008-08-05)
+	- Missing CNZ and CEO style modes were added to Rect() function.
+	- Fonts utils were updated to include support for OpenType fonts.
+	- getLastH() function was added.
+
+4.0.016 (2008-07-30)
+	- setPageMark() function was added. This function must be called after calling Image() function for a background image.
+
+4.0.015 (2008-07-29)
+	- Some functions were changed to support different page formats (see example_028.php).
+	- The signature of setPage() function is changed.
+
+4.0.014 (2008-07-29)
+	- K_PATH_MAIN calculation on tcpdf_config.php was fixed.
+	- HTML support for EPS/AI images was added (see example_006.php).
+	- Bugs item #2030807 "Truncated text on multipage html fields" was fixed.
+	- PDF header bug was fixed.
+	- helvetica was added as default font family.
+	- Stroke mode was fixed on Text function.
+	- several minor bugs were fixed.
+
+4.0.013 (2008-07-27)
+	- Bugs item #2027799 " Big spaces between lines after page break" was fixed.
+	- K_PATH_MAIN calculation on tcpdf_config.php was changed.
+	- Function setVisibility() was fixed to avoid the "Incorrect PDEObject type" error message.
+
+4.0.012 (2008-07-24)
+	- Addpage(), Header() and Footer() functions were changed to simplify the implementation of external header/footer functions.
+	- The following functions were added:
+			setHeader()
+			setFooter()
+			getImageRBX()
+			getImageRBY()
+			getCellHeightRatio()
+			getHeaderFont()
+			getFooterFont()
+			getRTL()
+			getBarcode()
+			getHeaderData()
+			getHeaderMargin()
+			getFooterMargin()
+
+4.0.011 (2008-07-23)
+	- Font support was improved.
+	- The folder /fonts/utils contains new utilities and instructions for embedd font files.
+	- Documentation was updated.
+
+4.0.010 (2008-07-22)
+	- HTML tables were fixed to work across pages.
+	- Header() and Footer() functions were updated to preserve previous settings.
+	- example_035.php was added.
+
+4.0.009 (2008-07-21)
+	- UTF8StringToArray() function was fixed for non-unicode mode.
+
+4.0.008 (2008-07-21)
+	- Barcodes alignment was fixed (see example_027.php).
+	- unicode_data.php was updated.
+	- Arabic shaping for "Zero-Width Non-Joiner" character (U+200C) was fixed.
+
+4.0.007 (2008-07-18)
+	- str_split was replaced by preg_split for compatibility with PHP4 version.
+	- Clipping mode was added to all graphic functions by using parameter $style = "CNZ" or "CEO" (see example_034.php).
+
+4.0.006 (2008-07-16)
+	- HTML rowspan bug was fixed.
+	- Line style for MultiCell() was fixed.
+	- WriteHTML() function was improved.
+	- CODE128C barcode was fixed (barcodes.php).
+
+4.0.005 (2008-07-11)
+	- Bug [2015715] "PHP Error/Warning" was fixed.
+
+4.0.004 (2008-07-09)
+	- HTML cell internal padding was fixed.
+
+4.0.003 (2008-07-08)
+	- Removed URL encoding when F option is selected on Output() function.
+	- fixed some minor bugs in html tables.
+
+4.0.002 (2008-07-07)
+	- Bug [2000861] was still unfixed and has been fixed.
+
+4.0.001 (2008-07-05)
+	- Bug [2000861] was fixed.
+
+4.0.000 (2008-07-03)
+	- THIS IS A MAIN RELEASE THAT INCLUDES SEVERAL NEW FEATURES AND BUGFIXES
+	- Signature fo SetTextColor() and SetFillColor() functions was changed (parameter $storeprev was removed).
+	- HTML support was completely rewritten and improved (see example 6).
+	- Alignments parameters were fixed.
+	- Functions GetArrStringWidth() and GetStringWidth() now include font parameters.
+	- Fonts support was improved.
+	- All core fonts were replaced and moved to fonts/ directory.
+	- The following functions were added: getMargins(), getFontSize(), getFontSizePt().
+	- File config/tcpdf_config_old.php was renamed tcpdf_config_alt.php and updated.
+	- Multicell and WriteHTMLCell fill function was fixed.
+	- Several minor bugs were fixed.
+	- barcodes.php was updated.
+	- All examples were updated.
+
+------------------------------------------------------------
+
+3.1.001 (2008-06-13)
+	- Bug [1992515] "K_PATH_FONTS default value wrong" was fixed.
+	- Vera font was removed, DejaVu font and Free fonts were updated.
+	- Image handling was improved.
+	- All examples were updated.
+
+3.1.000 (2008-06-11)
+	- setPDFVersion() was added to change the default PDF version (currently 1.7).
+	- setViewerPreferences() was added to control the way the document is to be presented on the screen or printed (see example 29).
+	- SetDisplayMode() signature was changed (new options were added).
+	- LinearGradient(), RadialGradient(), CoonsPatchMesh() functions were added to print various color gradients (see example 30).
+	- PieSector() function was added to render render pie charts (see example 31).
+	- ImageEps() was added to display EPS and AI images with limited support (see example 32).
+	- writeBarcode() function is now depracated, a new write1DBarcode() function was added. The barcode directory was removed and a new barcodes.php file was added.
+	- The new write1DBarcode() function support more barcodes and do not need the GD library (see example 027). All barcodes are directly written to PDF using graphic functions.
+	- HTML lists were improved and could be nested (you may now represent trees).
+	- AddFont() bug was fixed.
+	- _putfonts() bug was fixed.
+	- graphics functions were fixed.
+	- unicode_data.php file was updated (fixed).
+	- almohanad font was updated.
+	- example 18 was updated (Farsi and Arabic languages).
+	- source code cleanup.
+	- All examples were updated and new examples were added.
+
+3.0.015 (2008-06-06)
+	- AddPage() function signature is changed to include page format.
+	- example 28 was added to show page format changes.
+	- setPageUnit() function was added to change the page units of measure.
+	- setPageFormat() function was added to change the page format and orientation between pages.
+	- setPageOrientation() function was added to change the page orientation.
+	- Arabic font shaping was fixed for laa letter and square boxes (see the example 18).
+
+3.0.014 (2008-06-04)
+	- Arabic font shaping was fixed.
+	- setDefaultTableColumns() function was added.
+	- $cell_height_ratio variable was added.
+	- setCellHeightRatio() function was added to define the default height of cell repect font height.
+
+3.0.013 (2008-06-03)
+	- Multicell height parameter was fixed.
+	- Arabic font shaping was improved.
+	- unicode_data.php was updated.
+
+3.0.012 (2008-05-30)
+	- K_PATH_MAIN and K_PATH_URL constants are now automatically set on config file.
+	- DOCUMENT_ROOT constant was fixed for IIS Webserver (config file was updated).
+	- Arabic font shaping was improved.
+	- TranslateY() function was fixed (bug [1977962]).
+	- setVisibility() function was fixed.
+	- writeBarcode() function was fixed to scale using $xref parameter.
+	- All examples were updated.
+
+3.0.011 (2008-05-23)
+	- CMYK color support was added to all graphic functions.
+	- HTML table support was improved:
+	  -- now it's possible to include additional html tags inside a cell;
+	  -- colspan attribute was added.
+	- example 006 was updated.
+
+3.0.010 (2008-05-21)
+	- fixed $laa_array inclusion on utf8Bidi() function.
+
+3.0.009 (2008-05-20)
+	- unicode_data.php was updated.
+	- Arabic laa letter problem was fixed.
+
+3.0.008 (2008-05-12)
+	- Arabic support was fixed and improved (unicode_data.php was updated).
+	- Polycurve() function was added to draw a poly-Bezier curve.
+	- list items alignment was fixed.
+	- example 6 was updated.
+
+3.0.007 (2008-05-06)
+	- Arabic support was fixed and improved.
+	- AlMohanad (arabic) font was added.
+	- C128 barcode bugs were fixed.
+
+3.0.006 (2008-04-21)
+	- Condition to check negative width values was added.
+
+3.0.005 (2008-04-18)
+	- back-Slash character escape was fixed on writeHTML() function.
+	- Exampe 6 was updated.
+
+3.0.004 (2008-04-11)
+	- Bug [1939304] (Right to Left Issue) was fixed.
+
+3.0.003 (2008-04-07)
+	- Bug [1934523](Words between HTML tags in cell not kept on one line) was fixed.
+	- "face" attribute of "font" tag is now fully supported.
+
+3.0.002 (2008-04-01)
+	- Write() functions now return the number of cells and not the number of lines.
+	- TCPDF is released under LGPL 2.1, or any later version.
+
+3.0.001 (2008-05-28)
+	- _legacyparsejpeg() and _legacyparsepng() were renamed _parsejpeg() and _parsepng().
+	- function writeBarcode() was fixed.
+	- all examples were updated.
+	- example 27 was added to show various barcodes.
+
+3.0.000 (2008-03-27)
+	- private function pixelsToMillimeters() was changed to public function pixelsToUnits() to fix html image size bug.
+	- Image-related functions were rewritten.
+	- resize parameter was added to Image() signature to reduce the image size and fit width and height (see example 9).
+	- TCPDF now supports all images supported by GD library: GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM.
+	- CMYK support was added to SetDrawColor(), SetFillColor(), SetTextColor() (see example 22).
+	- Page Groups were added (see example 23).
+	- setVisibility() function was added to restrict the rendering of some elements to screen or printout (see example 24).
+	- All private variables and functions were changed to protected.
+	- setAlpha() function was added to give transparency support for all objects (see example 25).
+	- Clipping and stroke modes were added to Text() function (see example 26).
+	- All examples were moved to "examples" directory.
+	- function setJPEGQuality() was added to set the JPEG image comrpession (see example 9).
+
+2.9.000 (2008-03-26)
+	- htmlcolors.php file was added to include html colors.
+	- Support for HTML color names and three-digit hexadecimal color codes was added.
+	- private function convertColorHexToDec() was renamed convertHTMLColorToDec().
+	- color and bgcolor attributes are now supported on all HTML tags (color nesting is also supported).
+	- Write() function were fixed.
+	- example_006.php was updated.
+	- private function setUserRights() was added to release user rights on Acrobat Reader (this allows to display forms, see example 14)
+
+2.8.000 (2008-03-20)
+	- Private variables were changed to protected.
+	- Function Write() was fixed and improved.
+	- Support for dl, dt, dd, del HTML tags was introduced.
+	- Line-trought mode was added for HTML and text.
+	- Text vertical alignment on cells were fixed.
+	- Examples were updated to reflect changes.
+
+2.7.002 (2008-03-13)
+	- Bug "[1912142] Encrypted PDF created/modified date" was fixed.
+
+2.7.001 (2008-03-10)
+	- Cell justification was fixed for non-unicode mode.
+
+2.7.000 (2008-03-09)
+	- Cell() stretching mode 4 (forced character spacing) was fixed.
+	- writeHTMLCell() now uses Multicell() to write.
+	- Multicell() has a new parameter $ishtml to act as writeHTMLCell().
+	- Write() speed was improved for non-arabic strings.
+	- Example n. 20 was changed.
+
+2.6.000 (2008-03-07)
+	- various alignments bugs were fixed.
+
+2.5.000 (2008-03-07)
+	- Several bugs were fixed.
+	- example_019.php was added to test non-unicode mode using old fonts.
+
+2.4.000 (2008-03-06)
+	- RTL support was deeply improved.
+	- GetStringWidth() was fixed to support RTL languages.
+	- Text() RTL alignment was fixed.
+	- Some functions were added: GetArrStringWidth(), GetCharWidth(), uniord(), utf8Bidi().
+	- example_018.php was added and test_unicode.php was removed.
+
+2.3.000 (2008-03-05)
+	- MultiCell() signature is changed. Now support multiple columns across pages (see example_017).
+	- Write() signature is changed. Now support the cell mode to be used with MultiCell.
+	- Header() and Footer() were changed.
+	- The following functions were added: UTF8ArrSubString() and unichr().
+	- Examples were updated to reflect last changes.
+
+2.2.004 (2008-03-04)
+	- Several examples were added.
+	- AddPage() Header() and Footer() were fixed.
+	- Documentation is now available on http://www.tcpdf.org
+
+2.2.003 (2008-03-03)
+	- [1894853] Performance of MultiCell() was improved.
+	- RadioButton and ListBox functions were added.
+	- javascript form functions were rewritten and properties names are changed. The properties function supported by form fields are listed on Possible values are listed on http://www.adobe.com/devnet/acrobat/pdfs/js_developer_guide.pdf.
+
+2.2.002 (2008-02-28)
+	- [1900495] html images path was fixed.
+	- Legacy image functions were reintroduced to allow PNG and JPEG support without GD library.
+
+2.2.001 (2008-02-16)
+	- The bug "[1894700] bug with replace relative path" was fixed
+	- Justification was fixed
+
+2.2.000 (2008-02-12)
+	- fixed javascript bug introduced with latest release
+
+2.1.002 (2008-02-12)
+	- Justify function was fixed on PHP4 version.
+	- Bookmank function was added ([1578250] Table of contents).
+	- Javascript and Form fields support was added ([1796359] Form fields).
+
+2.1.001 (2008-02-10)
+	- The bug "[1885776] Race Condition in function justitfy" was fixed.
+	- The bug "[1890217] xpdf complains that pdf is incorrect" was fixed.
+
+2.1.000 (2008-01-07)
+	- FPDF_FONTPATH constant was changed to K_PATH_FONTS on config file
+	- Bidirectional Algorithm to correctly reverse bidirectional languages was added.
+	- SetLeftMargin, SetTopMargin, SetRightMargin functions were fixed.
+	- SetCellPadding function was added.
+	- writeHTML was updated with new parameters.
+	- Text function was fixed.
+	- MultiCell function was fixed, now works also across multiple pages.
+	- Line width was fixed on Header and Footer functions and <hr> tag.
+	- "GetImageSize" was renamed "getimagesize".
+	- Document version was changed from 1.3 to 1.5.
+	- _begindoc() function was fixed.
+	- ChangeDate was fixed and ModDate was added.
+	- The following functions were added:
+	  setPage() : Move pointer to the specified document page.
+	  getPage() : Get current document page number.
+	  lastpage() : Reset pointer to the last document page.
+	  getNumPages() : Get the total number of inserted pages.
+	  GetNumChars() : count the number of (UTF-8) characters in a string.
+	- $stretch parameter was added to Cell() function to fit text on cell:
+			0 = disabled
+			1 = horizontal scaling only if necessary
+			2 = forced horizontal scaling
+			3 = character spacing only if necessary
+			4 = forced character spacing
+	- Line function was fixed for RTL.
+	- Graphic transformation functions were added [1811158]:
+			StartTransform()
+			StopTransform()
+			ScaleX()
+			ScaleY()
+			ScaleXY()
+			Scale()
+			MirrorH()
+			MirrorV()
+			MirrorP()
+			MirrorL()
+			TranslateX()
+			TranslateY()
+			Translate()
+			Rotate()
+			SkewX()
+			SkewY()
+			Skew()
+	- Graphic function were added/updated [1688549]:
+			SetLineStyle()
+			_outPoint()
+			_outLine()
+			_outRect()
+			_outCurve()
+			Line()
+			Rect()
+			Curve
+			Ellipse
+			Circle
+			Polygon
+			RegularPolygon
+
+2.0.000 (2008-01-04)
+	- RTL (Right-To-Left) languages support was added. Language direction is set using the $l['a_meta_dir'] setting on /configure/language/xxx.php language files.
+	- setRTL($enable) method was added to manually enable/disable the RTL text direction.
+	- The attribute "dir" was added to support custom text direction on HTML tags. Possible values are: ltr - for Left-To-Right and RTL for Right-To-Left.
+	- RC4 40bit encryption was added. Check the SetProtection method.
+	- [1815213] Improved image support for GIF, JPEG, PNG formats.
+	- [1800094] Attribute "value" was added to ordered list items <li>.
+	- Image function now has a new "align" parameter that indicates the alignment of the pointer next to image insertion and relative to image height. The value can be:
+			T: top-right for LTR or top-left for RTL
+			M: middle-right for LTR or middle-left for RTL
+			B: bottom-right for LTR or bottom-left for RTL
+			N: next line
+	- Attribute "align" was added to <img> html tag to set the above image "align" parameter. Possible values are:
+			top: top-right for LTR or top-left for RTL
+			middle: middle-right for LTR or middle-left for RTL
+			bottom: bottom-right for LTR or bottom-left for RTL
+	- [1798103] newline was added after </ul>, </ol> and </p> tages.
+	- [1816393] Documentation was updated.
+	- 'ln' parameter was fixed on writeHTMLCell. Now it's possible to print two or more columns across several pages;
+	- The method lastPage() was added to move the pointer on the last page;
+
+------------------------------------------------------------
+
+1.53.0.TC034 (2007-07-30)
+	- fixed htmlentities conversion.
+	- MultiCell() function returns the number of cells.
+
+1.53.0.TC033 (2007-07-30)
+	- fixed bug 1762550: case sensitive for font files
+	- NOTE: all fonts files names must be in lowercase!
+
+1.53.0.TC032 (2007-07-27)
+	- setLastH method was added to resolve bug 1689071.
+	- all fonts names were converted in lowercase (bug 1713005).
+	- bug 1740954 was fixed.
+	- justification was added as Cell option.
+
+1.53.0.TC031 (2007-03-20)
+	- ToUnicode CMap were added on _puttruetypeunicode function. Now you may search and copy unicode text.
+
+1.53.0.TC030 (2007-03-06)
+	- fixed bug on PHP4 version.
+
+1.53.0.TC029 (2007-03-06)
+	- DejaVu Fonts were added.
+
+1.53.0.TC028 (2007-03-03)
+	- MultiCell function signature were changed: the $ln parameter were added. Check documentation for further information.
+	- Greek language were added on example sentences.
+	- setPrintHeader() and setPrintFooter() functions were added to enable or disable page header and footer.
+
+1.53.0.TC027 (2006-12-14)
+	- $attr['face'] bug were fixed.
+	- K_TCPDF_EXTERNAL_CONFIG control where introduced on /config/tcpdf_config.php to use external configuration files.
+
+1.53.0.TC026 (2006-10-28)
+	- writeHTML function call were fixed on examples.
+
+1.53.0.TC025 (2006-10-27)
+	- Bugs item #1421290 were fixed (0D - 0A substitution in some characters)
+	- Bugs item #1573174 were fixed (MultiCell documentation)
+
+1.53.0.TC024 (2006-09-26)
+	- getPageHeight() function were fixed (bug 1543476).
+	- fixed missing breaks on closedHTMLTagHandler function (bug 1535263).
+	- fixed extra spaces on Write function (bug 1535262).
+
+1.53.0.TC023 (2006-08-04)
+	- paths to barcode directory were fixed.
+	- documentation were updated.
+
+1.53.0.TC022 (2006-07-16)
+	- fixed bug: [ 1516858 ] Probs with PHP autoloader and class_exists()
+
+1.53.0.TC021 (2006-07-01)
+	- HTML attributes with whitespaces are now supported (thanks to Nelson Benitez for his support)
+
+1.53.0.TC020 (2006-06-23)
+	- code cleanup
+
+1.53.0.TC019 (2006-05-21)
+	- fixed <strong> and <em> closing tags
+
+1.53.0.TC018 (2006-05-18)
+	- fixed font names bug
+
+1.53.0.TC017 (2006-05-18)
+	- the TTF2UFM utility to convert True Type fonts for TCPDF were included on fonts folder.
+	- new free unicode fonts were included on /fonts/freefont.
+	- test_unicode.php example were exended.
+	- parameter $fill were added on Write, writeHTML and writeHTMLCell functions.
+	- documentation were updated.
+
+1.53.0.TC016 (2006-03-09)
+	- fixed closing <strong> tag on html parser.
+
+1.53.0.TC016 (2005-08-28)
+	- fpdf.php and tcpdf.php files were joined in one single class (you can still extend TCPDF with your own class).
+	- fixed problem when mb_internal_encoding is set.
+
+1.53.0.TC014 (2005-05-29)
+	- fixed WriteHTMLCell new page issue.
+
+1.53.0.TC013 (2005-05-29)
+	- fixed WriteHTMLCell across pages.
+
+1.53.0.TC012 (2005-05-29)
+	- font color attribute bug were fixed.
+
+1.53.0.TC011 (2005-03-31)
+	- SetFont function were fixed (thank Sjaak Lauwers for bug notice).
+
+1.53.0.TC010 (2005-03-22)
+	- the html functions were improved (thanks to Manfred Vervuert for bug reporting).
+
+1.53.0.TC009 (2005-03-19)
+	- a wrong reference to convertColorHexToDec were fixed.
+
+1.53.0.TC008 (2005-02-07)
+	- removed some extra bytes from PHP files.
+
+1.53.0.TC007 (2005-01-08)
+	- fill attribute were removed from writeHTMLCell method.
+
+1.53.0.TC006 (2005-01-08)
+	- the documentation were updated.
+
+1.53.0.TC005 (2005-01-05)
+	- Steven Wittens's unicode methods were removed.
+	- All unicode methods were rewritten from scratch.
+	- TCPDF is now licensed as LGPL.
+
+1.53.0.TC004 (2005-01-04)
+	- this changelog were added.
+	- removed commercial fonts for licensing issue.
+	- Bitstream Vera Fonts were added (http://www.bitstream.com/font_rendering/products/dev_fonts/vera.html).
+	- Now the AddFont and SetFont functions returns the basic font if the styled version do not exist.
+
+EOF --------------------------------------------------------
diff --git a/libs/tcpdf/README.TXT b/libs/tcpdf/README.TXT
index 30dfe3a377674e1034ab795752c4c2de2e4d1efb..d55754d961d7e6830c9082d1d522f7512a4f5a59 100644
--- a/libs/tcpdf/README.TXT
+++ b/libs/tcpdf/README.TXT
@@ -3,13 +3,13 @@ TCPDF - README
 
 I WISH TO IMPROVE AND EXPAND TCPDF BUT I NEED YOUR SUPPORT.
 PLEASE MAKE A DONATION:
-http:  sourceforge.net/donate/index.php?group_id=128076
+http://sourceforge.net/donate/index.php?group_id=128076
 
 ------------------------------------------------------------
 
 Name: TCPDF
-Version: 5.5.009
-Release date: 2010-07-05
+Version: 5.9.034
+Release date: 2010-12-19
 Author:	Nicola Asuni
 
 Copyright (c) 2002-2010:
@@ -39,18 +39,20 @@ Main Features:
     * 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;
     * automatic page header and footer management;
-    * document encryption and digital signature certifications;
+    * document encryption up to 256 bit and digital signature certifications;
     * transactions to UNDO commands;
     * PDF annotations, including links, text and file attachments;
     * text rendering modes (fill, stroke and clipping);
     * multiple columns mode;
+    * no-write page regions;
     * bookmarks and table of content;
     * text hyphenation;
+    * text stretching and spacing (tracking/kerning);
     * automatic page break, line break and text alignments including justification;
     * automatic page numbering and page groups;
     * move and delete pages;
     * page compression (requires php-zlib extension);
-
+    * XOBject Templates;
 
 Installation (full instructions on http:  www.tcpdf.org):
 	1. copy the folder on your Web server
@@ -59,6 +61,7 @@ Installation (full instructions on http:  www.tcpdf.org):
 
 Source Code Documentation:
 	doc/index.html
+	http://www.tcpdf.org/doc/
 
 For Additional Documentation:
 	http:  www.tcpdf.org
@@ -69,15 +72,18 @@ License
 	TCPDF is free software: you can redistribute it and/or modify it
 	under the terms of the GNU Lesser General Public License as
 	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. Additionally, 
+	YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE 
+	GENERATED PDF DOCUMENTS.
 
 	TCPDF is distributed in the hope that it will be useful, but
 	WITHOUT ANY WARRANTY; without even the implied warranty of
 	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 	See the GNU Lesser General Public License for more details.
 
-	You should have received a copy of the GNU Lesser General Public License
-	along with TCPDF.  If not, see <http://www.gnu.org/licenses/>.
+	You should have received a copy of the License
+	along with TCPDF. If not, see
+	<http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT>.
 
 	See LICENSE.TXT file for more information.
 
diff --git a/libs/tcpdf/barcodes.php b/libs/tcpdf/barcodes.php
index a6e20d517daf06f0c40d64b3f1d0b181404e1cd0..a16ed6ec121aa79662e9e69a6c2fe08ae4effde7 100644
--- a/libs/tcpdf/barcodes.php
+++ b/libs/tcpdf/barcodes.php
@@ -1,9 +1,9 @@
 <?php
 //============================================================+
 // File name   : barcodes.php
-// Version     : 1.0.010
+// Version     : 1.0.012
 // Begin       : 2008-06-09
-// Last Update : 2010-06-03
+// Last Update : 2010-12-16
 // 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)
 // -------------------------------------------------------------------
@@ -33,30 +33,25 @@
 //============================================================+
 
 /**
+ * @file
  * PHP class to creates array representations for common 1D barcodes to be used with TCPDF.
  * @package com.tecnick.tcpdf
- * @abstract Functions for generating string representation of common 1D barcodes.
  * @author Nicola Asuni
- * @copyright 2008-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
- * @link http://www.tcpdf.org
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
- * @version 1.0.008
+ * @version 1.0.012
  */
 
-	/**
-	* PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).<br>
-	* @name TCPDFBarcode
-	* @package com.tecnick.tcpdf
-	* @version 1.0.008
-	* @author Nicola Asuni
-	* @link http://www.tcpdf.org
-	* @license http://www.gnu.org/copyleft/lesser.html LGPL
-	*/
+/**
+ * @class TCPDFBarcode
+ * PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).<br>
+ * @package com.tecnick.tcpdf
+ * @version 1.0.012
+ * @author Nicola Asuni
+ */
 class TCPDFBarcode {
 
 	/**
-	 * @var array representation of barcode.
-	 * @access protected
+	 * Array representation of barcode.
+	 * @protected
 	 */
 	protected $barcode_array;
 
@@ -71,8 +66,8 @@ class TCPDFBarcode {
 	 * <li>$arrcode['bcode'][$k]['w'] bar width in units.</li>
 	 * <li>$arrcode['bcode'][$k]['h'] bar height in units.</li>
 	 * <li>$arrcode['bcode'][$k]['p'] bar top position (0 = top, 1 = middle)</li></ul>
-	 * @param string $code code to print
- 	 * @param string $type type of barcode: <ul><li>C39 : CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.</li><li>C39+ : CODE 39 with checksum</li><li>C39E : CODE 39 EXTENDED</li><li>C39E+ : CODE 39 EXTENDED + CHECKSUM</li><li>C93 : CODE 93 - USS-93</li><li>S25 : Standard 2 of 5</li><li>S25+ : Standard 2 of 5 + CHECKSUM</li><li>I25 : Interleaved 2 of 5</li><li>I25+ : Interleaved 2 of 5 + CHECKSUM</li><li>C128A : CODE 128 A</li><li>C128B : CODE 128 B</li><li>C128C : CODE 128 C</li><li>EAN2 : 2-Digits UPC-Based Extention</li><li>EAN5 : 5-Digits UPC-Based Extention</li><li>EAN8 : EAN 8</li><li>EAN13 : EAN 13</li><li>UPCA : UPC-A</li><li>UPCE : UPC-E</li><li>MSI : MSI (Variation of Plessey code)</li><li>MSI+ : MSI + CHECKSUM (modulo 11)</li><li>POSTNET : POSTNET</li><li>PLANET : PLANET</li><li>RMS4CC : RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)</li><li>KIX : KIX (Klant index - Customer index)</li><li>IMB: Intelligent Mail Barcode - Onecode - USPS-B-3200</li><li>CODABAR : CODABAR</li><li>CODE11 : CODE 11</li><li>PHARMA : PHARMACODE</li><li>PHARMA2T : PHARMACODE TWO-TRACKS</li></ul>
+	 * @param $code (string) code to print
+ 	 * @param $type (string) type of barcode: <ul><li>C39 : CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.</li><li>C39+ : CODE 39 with checksum</li><li>C39E : CODE 39 EXTENDED</li><li>C39E+ : CODE 39 EXTENDED + CHECKSUM</li><li>C93 : CODE 93 - USS-93</li><li>S25 : Standard 2 of 5</li><li>S25+ : Standard 2 of 5 + CHECKSUM</li><li>I25 : Interleaved 2 of 5</li><li>I25+ : Interleaved 2 of 5 + CHECKSUM</li><li>C128A : CODE 128 A</li><li>C128B : CODE 128 B</li><li>C128C : CODE 128 C</li><li>EAN2 : 2-Digits UPC-Based Extention</li><li>EAN5 : 5-Digits UPC-Based Extention</li><li>EAN8 : EAN 8</li><li>EAN13 : EAN 13</li><li>UPCA : UPC-A</li><li>UPCE : UPC-E</li><li>MSI : MSI (Variation of Plessey code)</li><li>MSI+ : MSI + CHECKSUM (modulo 11)</li><li>POSTNET : POSTNET</li><li>PLANET : PLANET</li><li>RMS4CC : RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)</li><li>KIX : KIX (Klant index - Customer index)</li><li>IMB: Intelligent Mail Barcode - Onecode - USPS-B-3200</li><li>CODABAR : CODABAR</li><li>CODE11 : CODE 11</li><li>PHARMA : PHARMACODE</li><li>PHARMA2T : PHARMACODE TWO-TRACKS</li></ul>
 	 */
 	public function __construct($code, $type) {
 		$this->setBarcode($code, $type);
@@ -88,8 +83,8 @@ class TCPDFBarcode {
 
 	/**
 	 * Set the barcode.
-	 * @param string $code code to print
- 	 * @param string $type type of barcode: <ul><li>C39 : CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.</li><li>C39+ : CODE 39 with checksum</li><li>C39E : CODE 39 EXTENDED</li><li>C39E+ : CODE 39 EXTENDED + CHECKSUM</li><li>C93 : CODE 93 - USS-93</li><li>S25 : Standard 2 of 5</li><li>S25+ : Standard 2 of 5 + CHECKSUM</li><li>I25 : Interleaved 2 of 5</li><li>I25+ : Interleaved 2 of 5 + CHECKSUM</li><li>C128A : CODE 128 A</li><li>C128B : CODE 128 B</li><li>C128C : CODE 128 C</li><li>EAN2 : 2-Digits UPC-Based Extention</li><li>EAN5 : 5-Digits UPC-Based Extention</li><li>EAN8 : EAN 8</li><li>EAN13 : EAN 13</li><li>UPCA : UPC-A</li><li>UPCE : UPC-E</li><li>MSI : MSI (Variation of Plessey code)</li><li>MSI+ : MSI + CHECKSUM (modulo 11)</li><li>POSTNET : POSTNET</li><li>PLANET : PLANET</li><li>RMS4CC : RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)</li><li>KIX : KIX (Klant index - Customer index)</li><li>IMB: Intelligent Mail Barcode - Onecode - USPS-B-3200</li><li>CODABAR : CODABAR</li><li>CODE11 : CODE 11</li><li>PHARMA : PHARMACODE</li><li>PHARMA2T : PHARMACODE TWO-TRACKS</li></ul>
+	 * @param $code (string) code to print
+ 	 * @param $type (string) type of barcode: <ul><li>C39 : CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.</li><li>C39+ : CODE 39 with checksum</li><li>C39E : CODE 39 EXTENDED</li><li>C39E+ : CODE 39 EXTENDED + CHECKSUM</li><li>C93 : CODE 93 - USS-93</li><li>S25 : Standard 2 of 5</li><li>S25+ : Standard 2 of 5 + CHECKSUM</li><li>I25 : Interleaved 2 of 5</li><li>I25+ : Interleaved 2 of 5 + CHECKSUM</li><li>C128A : CODE 128 A</li><li>C128B : CODE 128 B</li><li>C128C : CODE 128 C</li><li>EAN2 : 2-Digits UPC-Based Extention</li><li>EAN5 : 5-Digits UPC-Based Extention</li><li>EAN8 : EAN 8</li><li>EAN13 : EAN 13</li><li>UPCA : UPC-A</li><li>UPCE : UPC-E</li><li>MSI : MSI (Variation of Plessey code)</li><li>MSI+ : MSI + CHECKSUM (modulo 11)</li><li>POSTNET : POSTNET</li><li>PLANET : PLANET</li><li>RMS4CC : RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)</li><li>KIX : KIX (Klant index - Customer index)</li><li>IMB: Intelligent Mail Barcode - Onecode - USPS-B-3200</li><li>CODABAR : CODABAR</li><li>CODE11 : CODE 11</li><li>PHARMA : PHARMACODE</li><li>PHARMA2T : PHARMACODE TWO-TRACKS</li></ul>
  	 * @return array
 	 */
 	public function setBarcode($code, $type) {
@@ -222,10 +217,11 @@ class TCPDFBarcode {
 	/**
 	 * CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.
 	 * General-purpose code in very wide use world-wide
-	 * @param string $code code to represent.
-	 * @param boolean $checksum if true add a checksum to the code
+	 * @param $code (string) code to represent.
+	 * @param $extended (boolean) if true uses the extended mode.
+	 * @param $checksum (boolean) if true add a checksum to the code.
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_code39($code, $extended=false, $checksum=false) {
 		$chr['0'] = '111221211';
@@ -317,9 +313,9 @@ class TCPDFBarcode {
 
 	/**
 	 * Encode a string to be used for CODE 39 Extended mode.
-	 * @param string $code code to represent.
+	 * @param $code (string) code to represent.
 	 * @return encoded string.
-	 * @access protected
+	 * @protected
 	 */
 	protected function encode_code39_ext($code) {
 		$encode = array(
@@ -368,9 +364,9 @@ class TCPDFBarcode {
 
 	/**
 	 * Calculate CODE 39 checksum (modulo 43).
-	 * @param string $code code to represent.
+	 * @param $code (string) code to represent.
 	 * @return char checksum.
-	 * @access protected
+	 * @protected
 	 */
 	protected function checksum_code39($code) {
 		$chars = array(
@@ -391,10 +387,9 @@ class TCPDFBarcode {
 	/**
 	 * CODE 93 - USS-93
 	 * Compact code similar to Code 39
-	 * @param string $code code to represent.
-	 * @param boolean $checksum if true add a checksum to the code
+	 * @param $code (string) code to represent.
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_code93($code) {
 		$chr['0'] = '131112';
@@ -520,9 +515,9 @@ class TCPDFBarcode {
 
 	/**
 	 * Calculate CODE 93 checksum (modulo 47).
-	 * @param string $code code to represent.
+	 * @param $code (string) code to represent.
 	 * @return string checksum code.
-	 * @access protected
+	 * @protected
 	 */
 	protected function checksum_code93($code) {
 		$chars = array(
@@ -565,9 +560,9 @@ class TCPDFBarcode {
 
 	/**
 	 * Checksum for standard 2 of 5 barcodes.
-	 * @param string $code code to process.
+	 * @param $code (string) code to process.
 	 * @return int checksum.
-	 * @access protected
+	 * @protected
 	 */
 	protected function checksum_s25($code) {
 		$len = strlen($code);
@@ -590,10 +585,10 @@ class TCPDFBarcode {
 	 * MSI.
 	 * Variation of Plessey code, with similar applications
 	 * Contains digits (0 to 9) and encodes the data only in the width of bars.
-	 * @param string $code code to represent.
-	 * @param boolean $checksum if true add a checksum to the code (modulo 11)
+	 * @param $code (string) code to represent.
+	 * @param $checksum (boolean) if true add a checksum to the code (modulo 11)
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_msi($code, $checksum=false) {
 		$chr['0'] = '100100100100';
@@ -649,10 +644,10 @@ class TCPDFBarcode {
 	 * Standard 2 of 5 barcodes.
 	 * Used in airline ticket marking, photofinishing
 	 * Contains digits (0 to 9) and encodes the data only in the width of bars.
-	 * @param string $code code to represent.
-	 * @param boolean $checksum if true add a checksum to the code
+	 * @param $code (string) code to represent.
+	 * @param $checksum (boolean) if true add a checksum to the code
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_s25($code, $checksum=false) {
 		$chr['0'] = '10101110111010';
@@ -689,11 +684,12 @@ class TCPDFBarcode {
 	}
 
 	/**
-	 * Convert binary barcode sequence to TCPDF barcode array
-	 * @param string $seq barcode as binary sequence
+	 * Convert binary barcode sequence to TCPDF barcode array.
+	 * @param $seq (string) barcode as binary sequence.
+	 * @param $bararray (array) barcode array.
 	 * òparam array $bararray TCPDF barcode array to fill up
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function binseq_to_array($seq, $bararray) {
 		$len = strlen($seq);
@@ -720,10 +716,10 @@ class TCPDFBarcode {
 	 * Interleaved 2 of 5 barcodes.
 	 * Compact numeric code, widely used in industry, air cargo
 	 * Contains digits (0 to 9) and encodes the data in the width of both bars and spaces.
-	 * @param string $code code to represent.
-	 * @param boolean $checksum if true add a checksum to the code
+	 * @param $code (string) code to represent.
+	 * @param $checksum (boolean) if true add a checksum to the code
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_i25($code, $checksum=false) {
 		$chr['0'] = '11221';
@@ -784,10 +780,10 @@ class TCPDFBarcode {
 	/**
 	 * C128 barcodes.
 	 * Very capable code, excellent density, high reliability; in very wide use world-wide
-	 * @param string $code code to represent.
-	 * @param string $type barcode type: A, B or C
+	 * @param $code (string) code to represent.
+	 * @param $type (string) barcode type: A, B or C
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_c128($code, $type='B') {
 		$chr = array(
@@ -980,10 +976,10 @@ class TCPDFBarcode {
 	 * EAN13: European Article Numbering international retail product code
 	 * UPC-A: Universal product code seen on almost all retail products in the USA and Canada
 	 * UPC-E: Short version of UPC symbol
-	 * @param string $code code to represent.
-	 * @param string $len barcode type: 6 = UPC-E, 8 = EAN8, 13 = EAN13, 12 = UPC-A
+	 * @param $code (string) code to represent.
+	 * @param $len (string) barcode type: 6 = UPC-E, 8 = EAN8, 13 = EAN13, 12 = UPC-A
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_eanupc($code, $len=13) {
 		$upce = false;
@@ -1173,10 +1169,10 @@ class TCPDFBarcode {
 	 * UPC-Based Extentions
 	 * 2-Digit Ext.: Used to indicate magazines and newspaper issue numbers
 	 * 5-Digit Ext.: Used to mark suggested retail price of books
-	 * @param string $code code to represent.
-	 * @param string $len barcode type: 2 = 2-Digit, 5 = 5-Digit
+	 * @param $code (string) code to represent.
+	 * @param $len (string) barcode type: 2 = 2-Digit, 5 = 5-Digit
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_eanext($code, $len=5) {
 		//Padding
@@ -1248,10 +1244,10 @@ class TCPDFBarcode {
 	/**
 	 * POSTNET and PLANET barcodes.
 	 * Used by U.S. Postal Service for automated mail sorting
-	 * @param string $code zip code to represent. Must be a string containing a zip code of the form DDDDD or DDDDD-DDDD.
-	 * @param boolean $planet if true print the PLANET barcode, otherwise print POSTNET
+	 * @param $code (string) zip code to represent. Must be a string containing a zip code of the form DDDDD or DDDDD-DDDD.
+	 * @param $planet (boolean) if true print the PLANET barcode, otherwise print POSTNET
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_postnet($code, $planet=false) {
 		// bar lenght
@@ -1321,10 +1317,10 @@ class TCPDFBarcode {
 	 * RMS4CC - CBC - KIX
 	 * RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code) - KIX (Klant index - Customer index)
 	 * RM4SCC is the name of the barcode symbology used by the Royal Mail for its Cleanmail service.
-	 * @param string $code code to print
-	 * @param boolean $kix if true prints the KIX variation (doesn't use the start and end symbols, and the checksum) - in this case the house number must be sufficed with an X and placed at the end of the code.
+	 * @param $code (string) code to print
+	 * @param $kix (boolean) if true prints the KIX variation (doesn't use the start and end symbols, and the checksum) - in this case the house number must be sufficed with an X and placed at the end of the code.
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_rms4cc($code, $kix=false) {
 		$notkix = !$kix;
@@ -1473,9 +1469,9 @@ class TCPDFBarcode {
 	/**
 	 * CODABAR barcodes.
 	 * Older code often used in library systems, sometimes in blood banks
-	 * @param string $code code to represent.
+	 * @param $code (string) code to represent.
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_codabar($code) {
 		$chr = array(
@@ -1529,9 +1525,9 @@ class TCPDFBarcode {
 	/**
 	 * CODE11 barcodes.
 	 * Used primarily for labeling telecommunications equipment
-	 * @param string $code code to represent.
+	 * @param $code (string) code to represent.
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_code11($code) {
 		$chr = array(
@@ -1621,9 +1617,9 @@ class TCPDFBarcode {
 	/**
 	 * Pharmacode
 	 * Contains digits (0 to 9)
-	 * @param string $code code to represent.
+	 * @param $code (string) code to represent.
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_pharmacode($code) {
 		$seq = '';
@@ -1647,9 +1643,9 @@ class TCPDFBarcode {
 	/**
 	 * Pharmacode two-track
 	 * Contains digits (0 to 9)
-	 * @param string $code code to represent.
+	 * @param $code (string) code to represent.
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_pharmacode2t($code) {
 		$seq = '';
@@ -1710,9 +1706,9 @@ class TCPDFBarcode {
 	 * (requires PHP bcmath extension)
 	 * Intelligent Mail barcode is a 65-bar code for use on mail in the United States.
 	 * The fields are described as follows:<ul><li>The Barcode Identifier shall be assigned by USPS to encode the presort identification that is currently printed in human readable form on the optional endorsement line (OEL) as well as for future USPS use. This shall be two digits, with the second digit in the range of 0–4. The allowable encoding ranges shall be 00–04, 10–14, 20–24, 30–34, 40–44, 50–54, 60–64, 70–74, 80–84, and 90–94.</li><li>The Service Type Identifier shall be assigned by USPS for any combination of services requested on the mailpiece. The allowable encoding range shall be 000http://it2.php.net/manual/en/function.dechex.php–999. Each 3-digit value shall correspond to a particular mail class with a particular combination of service(s). Each service program, such as OneCode Confirm and OneCode ACS, shall provide the list of Service Type Identifier values.</li><li>The Mailer or Customer Identifier shall be assigned by USPS as a unique, 6 or 9 digit number that identifies a business entity. The allowable encoding range for the 6 digit Mailer ID shall be 000000- 899999, while the allowable encoding range for the 9 digit Mailer ID shall be 900000000-999999999.</li><li>The Serial or Sequence Number shall be assigned by the mailer for uniquely identifying and tracking mailpieces. The allowable encoding range shall be 000000000–999999999 when used with a 6 digit Mailer ID and 000000-999999 when used with a 9 digit Mailer ID. e. The Delivery Point ZIP Code shall be assigned by the mailer for routing the mailpiece. This shall replace POSTNET for routing the mailpiece to its final delivery point. The length may be 0, 5, 9, or 11 digits. The allowable encoding ranges shall be no ZIP Code, 00000–99999,  000000000–999999999, and 00000000000–99999999999.</li></ul>
-	 * @param string $code code to print, separate the ZIP (routing code) from the rest using a minus char '-' (BarcodeID_ServiceTypeID_MailerID_SerialNumber-RoutingCode)
+	 * @param $code (string) code to print, separate the ZIP (routing code) from the rest using a minus char '-' (BarcodeID_ServiceTypeID_MailerID_SerialNumber-RoutingCode)
 	 * @return array barcode representation.
-	 * @access protected
+	 * @protected
 	 */
 	protected function barcode_imb($code) {
 		$asc_chr = array(4,0,2,6,3,5,1,9,8,7,1,2,0,6,4,8,2,9,5,3,0,1,3,7,4,6,8,9,2,0,5,1,9,4,3,8,6,7,1,2,4,3,9,5,7,8,3,0,2,1,4,0,9,1,7,0,2,4,6,3,7,1,9,5,8);
@@ -1835,7 +1831,7 @@ class TCPDFBarcode {
 	/**
 	 * Convert large integer number to hexadecimal representation.
 	 * (requires PHP bcmath extension)
-	 * @param string $number number to convert specified as a string
+	 * @param $number (string) number to convert specified as a string
 	 * @return string hexadecimal representation
 	 */
 	public function dec_to_hex($number) {
@@ -1859,7 +1855,7 @@ class TCPDFBarcode {
 	/**
 	 * Convert large hexadecimal number to decimal representation (string).
 	 * (requires PHP bcmath extension)
-	 * @param string $hex hexadecimal number to convert specified as a string
+	 * @param $hex (string) hexadecimal number to convert specified as a string
 	 * @return string hexadecimal representation
 	 */
 	public function hex_to_dec($hex) {
@@ -1875,9 +1871,9 @@ class TCPDFBarcode {
 
 	/**
 	 * Intelligent Mail Barcode calculation of Frame Check Sequence
-	 * @param string $code_arr array of hexadecimal values (13 bytes holding 102 bits right justified).
+	 * @param $code_arr (string) array of hexadecimal values (13 bytes holding 102 bits right justified).
 	 * @return int 11 bit Frame Check Sequence as integer (decimal base)
-	 * @access protected
+	 * @protected
 	 */
 	protected function imb_crc11fcs($code_arr) {
 		$genpoly = 0x0F35; // generator polynomial
@@ -1911,9 +1907,9 @@ class TCPDFBarcode {
 
 	/**
 	 * Reverse unsigned short value
-	 * @param int $num value to reversr
+	 * @param $num (int) value to reversr
 	 * @return int reversed value
-	 * @access protected
+	 * @protected
 	 */
 	protected function imb_reverse_us($num) {
 		$rev = 0;
@@ -1927,10 +1923,10 @@ class TCPDFBarcode {
 
 	/**
 	 * generate Nof13 tables used for Intelligent Mail Barcode
-	 * @param int $n is the type of table: 2 for 2of13 table, 5 for 5of13table
-	 * @param int $size size of table (78 for n=2 and 1287 for n=5)
+	 * @param $n (int) is the type of table: 2 for 2of13 table, 5 for 5of13table
+	 * @param $size (int) size of table (78 for n=2 and 1287 for n=5)
 	 * @return array requested table
-	 * @access protected
+	 * @protected
 	 */
 	protected function imb_tables($n, $size) {
 		$table = array();
@@ -1964,8 +1960,6 @@ class TCPDFBarcode {
 	}
 
 } // end of class
-
 //============================================================+
 // END OF FILE
 //============================================================+
-?>
diff --git a/libs/tcpdf/config/lang/bra.php b/libs/tcpdf/config/lang/bra.php
deleted file mode 100644
index 81c17d76a03e7685febd99d2c873e5e738347828..0000000000000000000000000000000000000000
--- a/libs/tcpdf/config/lang/bra.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-//============================================================+
-// File name   : eng.php
-// Begin       : 2004-03-03
-// Last Update : 2010-02-17
-// 
-// Description : Language module for TCPDF
-//               (contains translated texts)
-// 
-// Author: Nicola Asuni
-// 
-// (c) Copyright:
-//               Nicola Asuni
-//               Tecnick.com s.r.l.
-//               Via Della Pace, 11
-//               09044 Quartucciu (CA)
-//               ITALY
-//               www.tecnick.com
-//               info@tecnick.com
-//============================================================+
-
-/**
- * TCPDF language file (contains translated texts).
- * @package com.tecnick.tcpdf
- * @abstract TCPDF language file.
- * @author Nicola Asuni
- * @copyright 2004-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
- * @link http://tcpdf.sourceforge.net
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
- * @since 2004-03-03
- */
- 
-// ENGLISH
-
-global $l;
-$l = Array();
-
-// PAGE META DESCRIPTORS --------------------------------------
-
-$l['a_meta_charset'] = 'UTF-8';
-$l['a_meta_dir'] = 'ltr';
-$l['a_meta_language'] = 'pt';
-
-// TRANSLATIONS --------------------------------------
-$l['w_page'] = 'página';
-
-//============================================================+
-// END OF FILE                                                 
-//============================================================+
-?>
diff --git a/libs/tcpdf/config/lang/eng.php b/libs/tcpdf/config/lang/eng.php
index 6469105198a1c75feca61df5defe872854fd32a7..97fa7500fa1df39ed3d59657dc37bdb7bf5b1f67 100644
--- a/libs/tcpdf/config/lang/eng.php
+++ b/libs/tcpdf/config/lang/eng.php
@@ -2,13 +2,14 @@
 //============================================================+
 // File name   : eng.php
 // Begin       : 2004-03-03
-// Last Update : 2010-02-17
-// 
+// Last Update : 2010-10-26
+//
 // Description : Language module for TCPDF
 //               (contains translated texts)
-// 
+//               English
+//
 // Author: Nicola Asuni
-// 
+//
 // (c) Copyright:
 //               Nicola Asuni
 //               Tecnick.com s.r.l.
@@ -22,15 +23,12 @@
 /**
  * TCPDF language file (contains translated texts).
  * @package com.tecnick.tcpdf
- * @abstract TCPDF language file.
+ * @brief TCPDF language file: English
  * @author Nicola Asuni
- * @copyright 2004-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
- * @link http://tcpdf.sourceforge.net
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
  * @since 2004-03-03
  */
- 
-// ENGLISH
+
+// English
 
 global $l;
 $l = Array();
@@ -45,6 +43,5 @@ $l['a_meta_language'] = 'en';
 $l['w_page'] = 'page';
 
 //============================================================+
-// END OF FILE                                                 
+// END OF FILE
 //============================================================+
-?>
diff --git a/libs/tcpdf/config/lang/ger.php b/libs/tcpdf/config/lang/ger.php
deleted file mode 100644
index 2a703527c718497f07b28a80cd8686b5b86fa49b..0000000000000000000000000000000000000000
--- a/libs/tcpdf/config/lang/ger.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-//============================================================+
-// File name   : eng.php
-// Begin       : 2004-03-03
-// Last Update : 2010-02-17
-// 
-// Description : Language module for TCPDF
-//               (contains translated texts)
-// 
-// Author: Nicola Asuni
-// 
-// (c) Copyright:
-//               Nicola Asuni
-//               Tecnick.com s.r.l.
-//               Via Della Pace, 11
-//               09044 Quartucciu (CA)
-//               ITALY
-//               www.tecnick.com
-//               info@tecnick.com
-//============================================================+
-
-/**
- * TCPDF language file (contains translated texts).
- * @package com.tecnick.tcpdf
- * @abstract TCPDF language file.
- * @author Nicola Asuni
- * @copyright 2004-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
- * @link http://tcpdf.sourceforge.net
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
- * @since 2004-03-03
- */
- 
-// ENGLISH
-
-global $l;
-$l = Array();
-
-// PAGE META DESCRIPTORS --------------------------------------
-
-$l['a_meta_charset'] = 'UTF-8';
-$l['a_meta_dir'] = 'ltr';
-$l['a_meta_language'] = 'de';
-
-// TRANSLATIONS --------------------------------------
-$l['w_page'] = 'seite';
-
-//============================================================+
-// END OF FILE                                                 
-//============================================================+
-?>
diff --git a/libs/tcpdf/config/lang/ita.php b/libs/tcpdf/config/lang/ita.php
deleted file mode 100644
index 25f95487d468f838394a8d567e854df269d6209f..0000000000000000000000000000000000000000
--- a/libs/tcpdf/config/lang/ita.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-//============================================================+
-// File name   : ita.php
-// Begin       : 2004-03-03
-// Last Update : 2010-02-17
-// 
-// Description : Language module for TCPDF
-//               (contains translated texts)
-// 
-// Author: Nicola Asuni
-// 
-// (c) Copyright:
-//               Nicola Asuni
-//               Tecnick.com s.r.l.
-//               Via Della Pace, 11
-//               09044 Quartucciu (CA)
-//               ITALY
-//               www.tecnick.com
-//               info@tecnick.com
-//============================================================+
-
-/**
- * TCPDF language file (contains translated texts).
- * @package com.tecnick.tcpdf
- * @abstract TCPDF language file.
- * @author Nicola Asuni
- * @copyright 2004-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
- * @link http://tcpdf.sourceforge.net
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
- * @since 2004-03-03
- */
- 
-// ENGLISH
-
-global $l;
-$l = Array();
-
-// PAGE META DESCRIPTORS --------------------------------------
-
-$l['a_meta_charset'] = 'UTF-8';
-$l['a_meta_dir'] = 'ltr';
-$l['a_meta_language'] = 'it';
-
-// TRANSLATIONS --------------------------------------
-$l['w_page'] = 'pagina';
-
-//============================================================+
-// END OF FILE                                                 
-//============================================================+
-?>
diff --git a/libs/tcpdf/config/tcpdf_config.php b/libs/tcpdf/config/tcpdf_config.php
index d824f5b5bd3788684132471eac1c5d52819240bb..bb9a1a8fca4571ece9e01a893fe372c6bc380a51 100644
--- a/libs/tcpdf/config/tcpdf_config.php
+++ b/libs/tcpdf/config/tcpdf_config.php
@@ -2,7 +2,7 @@
 //============================================================+
 // File name   : tcpdf_config.php
 // Begin       : 2004-06-11
-// Last Update : 2010-04-28
+// Last Update : 2010-12-16
 //
 // Description : Configuration file for TCPDF.
 //
@@ -21,11 +21,8 @@
 /**
  * Configuration file for TCPDF.
  * @author Nicola Asuni
- * @copyright 2004-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
  * @version 4.9.005
- * @link http://tcpdf.sourceforge.net
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
  * @since 2004-10-27
  */
 
@@ -66,7 +63,7 @@ if (!defined('K_TCPDF_EXTERNAL_CONFIG')) {
 			$k_path_url = 'http://';
 		}
 		$k_path_url .= $_SERVER['HTTP_HOST'];
-		$k_path_url .= str_replace( '\\', '/', substr($_SERVER['PHP_SELF'], 0, -24));
+		$k_path_url .= str_replace( '\\', '/', substr(K_PATH_MAIN, (strlen($_SERVER['DOCUMENT_ROOT']) - 1)));
 	}
 
 	/**
@@ -241,4 +238,3 @@ if (!defined('K_TCPDF_EXTERNAL_CONFIG')) {
 //============================================================+
 // END OF FILE
 //============================================================+
-?>
diff --git a/libs/tcpdf/config/tcpdf_config_alt.php b/libs/tcpdf/config/tcpdf_config_alt.php
index 471c2ccba80509d9ddbbec90b18abb88e08139a0..73394a9ae1ca63b9221a2bd96b358fa494b55d99 100644
--- a/libs/tcpdf/config/tcpdf_config_alt.php
+++ b/libs/tcpdf/config/tcpdf_config_alt.php
@@ -2,7 +2,7 @@
 //============================================================+
 // File name   : tcpdf_config.php
 // Begin       : 2004-06-11
-// Last Update : 2010-04-28
+// Last Update : 2010-12-16
 //
 // Description : Alternative configuration file for TCPDF.
 //
@@ -21,11 +21,8 @@
 /**
  * Alternative configuration file for TCPDF.
  * @author Nicola Asuni
- * @copyright 2004-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
  * @version 4.9.005
- * @link http://tcpdf.sourceforge.net
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
  * @since 2004-10-27
  */
 
@@ -61,7 +58,7 @@ if (isset($_SERVER['HTTP_HOST']) AND (!empty($_SERVER['HTTP_HOST']))) {
 		$k_path_url = 'http://';
 	}
 	$k_path_url .= $_SERVER['HTTP_HOST'];
-	$k_path_url .= str_replace( '\\', '/', substr($_SERVER['PHP_SELF'], 0, -24));
+	$k_path_url .= str_replace( '\\', '/', substr(K_PATH_MAIN, (strlen($_SERVER['DOCUMENT_ROOT']) - 1)));
 }
 
 /**
@@ -235,4 +232,3 @@ define('K_TCPDF_CALLS_IN_HTML', true);
 //============================================================+
 // END OF FILE
 //============================================================+
-?>
diff --git a/libs/tcpdf/fonts/almohanad.ctg.z b/libs/tcpdf/fonts/almohanad.ctg.z
new file mode 100644
index 0000000000000000000000000000000000000000..8e9b577e4e757b151a2600f315264feb99db0a19
Binary files /dev/null and b/libs/tcpdf/fonts/almohanad.ctg.z differ
diff --git a/libs/tcpdf/fonts/almohanad.php b/libs/tcpdf/fonts/almohanad.php
index cec1fb3298e7a2225370bdd0c13052dd02e5e8fe..74114c8ceb4b9e65a9c343e219a9e3cb6f059d68 100644
--- a/libs/tcpdf/fonts/almohanad.php
+++ b/libs/tcpdf/fonts/almohanad.php
@@ -1,102 +1,102 @@
-<?php
-$type='TrueTypeUnicode';
-$name='AlMohanad';
-$desc=array('Ascent'=>1093,'Descent'=>-509,'CapHeight'=>1093,'Flags'=>32,'FontBBox'=>'[-278 -507 1124 1093]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
-$up=-136;
-$ut=64;
-$dw=600;
-$cw=array(
-	0=>0,32=>139,33=>185,34=>308,35=>278,36=>278,37=>556,38=>463,39=>154,40=>185,41=>185,42=>278,43=>317,44=>139,45=>185,46=>139,
-	47=>154,48=>278,49=>278,50=>278,51=>278,52=>278,53=>278,54=>278,55=>278,56=>278,57=>278,58=>185,59=>185,60=>317,61=>317,62=>317,
-	63=>278,64=>517,65=>401,66=>371,67=>401,68=>402,69=>371,70=>339,71=>432,72=>430,73=>214,74=>278,75=>424,76=>369,77=>524,78=>401,
-	79=>432,80=>339,81=>432,82=>396,83=>309,84=>371,85=>401,86=>401,87=>556,88=>401,89=>401,90=>371,91=>185,92=>154,93=>185,94=>323,
-	95=>278,96=>185,97=>278,98=>309,99=>247,100=>309,101=>247,102=>185,103=>278,104=>309,105=>154,106=>185,107=>309,108=>154,109=>463,110=>309,
-	111=>278,112=>309,113=>309,114=>247,115=>216,116=>185,117=>309,118=>278,119=>401,120=>278,121=>278,122=>247,123=>219,124=>122,125=>219,126=>289,
-	8364=>278,1027=>339,8218=>185,1107=>254,8222=>278,8230=>556,8224=>278,8225=>278,710=>185,8240=>556,352=>309,8249=>185,338=>556,1036=>432,381=>371,1039=>432,
-	8216=>185,8217=>185,8220=>278,8221=>278,8226=>194,8211=>278,8212=>556,732=>185,8482=>556,353=>216,8250=>185,339=>401,1116=>297,382=>247,376=>401,161=>185,
-	162=>278,163=>278,164=>278,165=>278,166=>122,167=>278,168=>185,169=>415,170=>167,171=>278,172=>317,174=>415,175=>185,176=>222,177=>317,178=>167,
-	179=>167,180=>185,181=>309,182=>300,183=>139,184=>185,185=>167,186=>183,187=>278,188=>417,189=>417,190=>417,191=>278,192=>401,193=>401,194=>401,
-	195=>401,196=>401,197=>401,198=>556,199=>401,200=>371,201=>371,202=>371,203=>371,204=>216,205=>216,206=>216,207=>216,208=>401,209=>401,210=>432,
-	211=>432,212=>432,213=>432,214=>432,215=>317,216=>432,217=>401,218=>401,219=>401,220=>401,221=>401,222=>339,223=>309,224=>278,225=>278,226=>278,
-	227=>278,228=>278,229=>278,230=>401,231=>247,232=>247,233=>247,234=>247,235=>247,236=>154,237=>154,238=>154,239=>154,240=>278,241=>309,242=>278,
-	243=>278,244=>278,245=>278,246=>278,247=>317,248=>278,249=>309,250=>309,251=>309,252=>309,253=>278,254=>309,255=>278,256=>401,257=>278,258=>401,
-	259=>278,260=>401,261=>278,262=>401,263=>247,264=>401,265=>247,266=>401,267=>247,268=>401,269=>247,270=>401,271=>309,272=>401,273=>309,274=>371,
-	275=>247,276=>371,277=>247,278=>371,279=>247,280=>371,281=>247,282=>371,283=>247,284=>432,285=>278,286=>432,287=>278,288=>432,289=>278,290=>432,
-	291=>278,292=>432,293=>309,294=>432,295=>309,296=>216,297=>154,298=>216,299=>154,300=>216,301=>154,302=>216,303=>154,304=>216,305=>154,306=>490,
-	307=>270,308=>278,309=>185,310=>432,311=>309,312=>297,313=>371,314=>154,315=>371,316=>154,317=>371,318=>154,319=>371,320=>293,321=>371,322=>154,
-	323=>401,324=>309,325=>401,326=>309,327=>401,328=>309,329=>391,330=>401,331=>309,332=>432,333=>278,334=>432,335=>278,336=>432,337=>278,340=>401,
-	341=>247,342=>401,343=>247,344=>401,345=>247,346=>309,347=>216,348=>309,349=>216,350=>309,351=>216,354=>371,355=>185,356=>371,357=>185,358=>371,
-	359=>185,360=>401,361=>309,362=>401,363=>309,364=>401,365=>309,366=>401,367=>309,368=>401,369=>309,370=>401,371=>309,372=>556,373=>401,374=>401,
-	375=>278,377=>371,378=>247,379=>371,380=>247,383=>185,450=>317,477=>247,484=>432,485=>278,536=>309,537=>216,538=>371,539=>185,658=>282,711=>185,
-	728=>185,729=>185,730=>185,731=>185,733=>185,768=>0,769=>0,770=>0,771=>0,772=>0,773=>0,774=>0,775=>0,776=>0,777=>0,778=>0,
-	779=>0,780=>0,781=>0,782=>0,783=>0,784=>0,785=>0,786=>0,787=>0,788=>0,789=>0,790=>0,791=>0,792=>0,793=>0,794=>0,
-	795=>0,796=>0,797=>0,798=>0,799=>0,800=>0,801=>0,802=>0,803=>0,804=>0,805=>0,806=>0,807=>0,808=>0,809=>0,810=>0,
-	811=>0,812=>0,813=>0,814=>0,815=>0,816=>0,817=>0,818=>0,819=>0,820=>0,821=>0,822=>0,823=>0,824=>0,825=>0,826=>0,
-	827=>0,828=>0,829=>0,830=>0,831=>0,864=>0,865=>0,884=>111,885=>111,890=>0,894=>185,900=>100,901=>183,902=>401,903=>139,904=>451,
-	905=>532,906=>316,908=>451,910=>501,911=>451,912=>183,913=>401,914=>371,915=>339,916=>422,917=>371,918=>371,919=>432,920=>432,921=>216,922=>432,
-	923=>401,924=>524,925=>401,926=>361,927=>432,928=>451,929=>339,931=>361,932=>371,933=>401,934=>482,935=>401,936=>482,937=>451,938=>0,939=>401,
-	940=>336,941=>244,942=>336,943=>183,944=>306,945=>336,946=>306,947=>306,948=>306,949=>244,950=>275,951=>336,952=>306,953=>183,954=>338,955=>275,
-	956=>336,957=>275,958=>275,959=>306,960=>336,961=>306,962=>244,963=>306,964=>244,965=>306,966=>367,967=>275,968=>397,969=>397,970=>183,971=>306,
-	972=>306,973=>306,974=>397,976=>306,977=>306,978=>401,979=>401,980=>401,981=>367,982=>336,986=>283,987=>237,988=>339,989=>261,1024=>371,1025=>371,
-	1026=>371,1028=>401,1029=>309,1030=>216,1031=>216,1032=>278,1033=>573,1034=>573,1035=>449,1037=>432,1038=>401,1040=>401,1041=>371,1042=>371,1043=>328,1044=>432,
-	1045=>371,1046=>615,1047=>313,1048=>429,1049=>429,1050=>424,1051=>432,1052=>524,1053=>432,1054=>432,1055=>430,1056=>339,1057=>401,1058=>371,1059=>401,1060=>444,
-	1061=>401,1062=>429,1063=>432,1064=>618,1065=>618,1066=>482,1067=>539,1068=>350,1069=>401,1070=>619,1071=>408,1072=>278,1073=>278,1074=>279,1075=>246,1076=>309,
-	1077=>247,1078=>417,1079=>227,1080=>319,1081=>319,1082=>297,1083=>302,1084=>376,1085=>309,1086=>278,1087=>309,1088=>309,1089=>247,1090=>274,1091=>278,1092=>458,
-	1093=>278,1094=>309,1095=>309,1096=>454,1097=>454,1098=>340,1099=>423,1100=>284,1101=>247,1102=>439,1103=>284,1104=>247,1105=>247,1106=>309,1108=>247,1109=>216,
-	1110=>154,1111=>154,1112=>185,1113=>440,1114=>437,1115=>309,1117=>309,1118=>278,1119=>309,1164=>339,1165=>284,1166=>339,1167=>309,1168=>339,1169=>254,1170=>339,
-	1171=>254,1172=>339,1173=>254,1174=>615,1175=>417,1176=>322,1177=>216,1178=>432,1179=>297,1180=>432,1181=>297,1182=>432,1183=>297,1184=>537,1185=>352,1186=>432,
-	1187=>309,1188=>563,1189=>408,1190=>432,1191=>461,1192=>401,1193=>247,1194=>401,1195=>247,1196=>371,1197=>274,1198=>401,1199=>278,1200=>401,1201=>278,1202=>401,
-	1203=>278,1204=>581,1205=>432,1206=>432,1207=>309,1208=>432,1209=>309,1210=>432,1211=>309,1212=>367,1213=>247,1214=>367,1215=>247,1216=>216,1217=>615,1218=>417,
-	1219=>432,1220=>297,1223=>432,1224=>309,1227=>432,1228=>309,1232=>401,1233=>278,1234=>401,1235=>278,1236=>556,1237=>401,1238=>371,1239=>247,1240=>367,1241=>247,
-	1242=>367,1243=>247,1244=>615,1245=>417,1246=>313,1247=>227,1248=>322,1249=>216,1250=>432,1251=>309,1252=>432,1253=>309,1254=>432,1255=>278,1256=>432,1257=>278,
-	1258=>432,1259=>278,1260=>401,1261=>247,1262=>401,1263=>278,1264=>401,1265=>278,1266=>401,1267=>278,1268=>432,1269=>309,1272=>548,1273=>423,1488=>280,1489=>280,
-	1490=>174,1491=>280,1492=>280,1493=>158,1494=>158,1495=>280,1496=>280,1497=>158,1498=>287,1499=>280,1500=>280,1501=>280,1502=>280,1503=>156,1504=>158,1505=>280,
-	1506=>280,1507=>292,1508=>280,1509=>273,1510=>280,1511=>305,1512=>285,1513=>299,1514=>280,1548=>195,1563=>246,1567=>340,1569=>392,1570=>306,1571=>247,1572=>447,
-	1573=>247,1574=>602,1575=>192,1576=>635,1577=>369,1578=>635,1579=>635,1580=>548,1581=>1173,1582=>548,1583=>363,1584=>363,1585=>439,1586=>442,1587=>875,1588=>875,
-	1589=>1061,1590=>1061,1591=>811,1592=>811,1593=>549,1594=>547,1600=>389,1601=>755,1602=>574,1603=>717,1604=>555,1605=>423,1606=>532,1607=>371,1608=>454,1609=>633,
-	1610=>643,1611=>-19,1612=>-26,1613=>-20,1614=>-19,1615=>-18,1616=>-19,1617=>-19,1618=>-15,1632=>383,1633=>383,1634=>383,1635=>383,1636=>383,1637=>383,1638=>383,
-	1639=>383,1640=>383,1641=>383,1642=>383,1645=>398,7936=>336,7937=>336,7938=>336,7939=>336,7940=>336,7941=>336,7942=>336,7943=>336,7944=>401,7945=>401,7946=>401,
-	7947=>401,7948=>401,7949=>401,7950=>401,7951=>401,7952=>244,7953=>244,7954=>244,7955=>244,7956=>244,7957=>244,7960=>371,7961=>371,7962=>371,7963=>371,7964=>371,
-	7965=>371,7968=>336,7969=>336,7970=>336,7971=>336,7972=>336,7973=>336,7974=>336,7975=>336,7976=>432,7977=>432,7978=>432,7979=>432,7980=>432,7981=>432,7982=>432,
-	7983=>432,7984=>183,7985=>183,7986=>183,7987=>183,7988=>183,7989=>183,7990=>183,7991=>183,7992=>216,7993=>216,7994=>216,7995=>216,7996=>216,7997=>216,7998=>216,
-	7999=>216,8000=>306,8001=>306,8002=>306,8003=>306,8004=>306,8005=>306,8008=>432,8009=>432,8010=>432,8011=>432,8012=>432,8013=>432,8016=>306,8017=>306,8018=>306,
-	8019=>306,8020=>306,8021=>306,8022=>306,8023=>306,8025=>401,8027=>401,8029=>401,8031=>401,8032=>397,8033=>397,8034=>397,8035=>397,8036=>397,8037=>397,8038=>397,
-	8039=>397,8040=>451,8041=>451,8042=>451,8043=>451,8044=>451,8045=>451,8046=>451,8047=>451,8048=>336,8049=>336,8050=>244,8051=>244,8052=>336,8053=>336,8054=>183,
-	8055=>183,8056=>306,8057=>306,8058=>306,8059=>306,8060=>397,8061=>397,8064=>336,8065=>336,8066=>336,8067=>336,8068=>336,8069=>336,8070=>336,8071=>336,8072=>401,
-	8073=>401,8074=>401,8075=>401,8076=>401,8077=>401,8078=>401,8079=>401,8080=>336,8081=>336,8082=>336,8083=>336,8084=>336,8085=>336,8086=>336,8087=>336,8088=>432,
-	8089=>432,8090=>432,8091=>432,8092=>432,8093=>432,8094=>432,8095=>432,8096=>397,8097=>397,8098=>397,8099=>397,8100=>397,8101=>397,8102=>397,8103=>397,8104=>451,
-	8105=>451,8106=>451,8107=>451,8108=>451,8109=>451,8110=>451,8111=>451,8112=>336,8113=>336,8114=>336,8115=>336,8116=>336,8118=>336,8119=>336,8120=>401,8121=>401,
-	8122=>401,8123=>401,8124=>401,8125=>278,8126=>0,8127=>278,8128=>278,8129=>306,8130=>336,8131=>336,8132=>336,8134=>336,8135=>336,8136=>371,8137=>371,8138=>432,
-	8139=>432,8140=>432,8141=>278,8142=>278,8143=>278,8144=>183,8145=>183,8146=>183,8147=>183,8150=>183,8151=>183,8152=>216,8153=>216,8154=>216,8155=>216,8157=>278,
-	8158=>278,8159=>278,8160=>306,8161=>306,8162=>306,8163=>306,8164=>306,8165=>306,8166=>306,8167=>306,8168=>401,8169=>401,8170=>401,8171=>401,8172=>339,8173=>306,
-	8174=>306,8175=>278,8178=>397,8179=>397,8180=>397,8182=>397,8183=>397,8184=>432,8185=>432,8186=>451,8187=>451,8188=>451,8189=>278,8190=>278,8208=>185,8209=>185,
-	8219=>185,8223=>278,8227=>311,8241=>1011,8248=>261,8251=>404,8253=>386,8255=>529,8256=>529,8257=>188,8258=>517,8259=>185,8260=>93,8261=>184,8262=>184,8267=>300,
-	8308=>167,8309=>556,8321=>167,8322=>167,8323=>167,8324=>167,8352=>394,8353=>401,8354=>435,8355=>339,8356=>278,8357=>463,8358=>401,8359=>389,8361=>556,8470=>530,
-	8471=>415,8479=>401,8483=>401,8486=>451,8487=>451,8494=>306,8498=>339,8543=>417,8706=>274,8710=>340,8721=>396,8722=>317,8730=>305,8734=>418,8800=>317,8804=>317,
-	8805=>317,9674=>274,12353=>556,12354=>556,12355=>556,12356=>556,12357=>556,12358=>556,12359=>556,12360=>556,12361=>556,12362=>556,12363=>556,12364=>556,12365=>556,12366=>556,
-	12367=>556,12368=>556,12369=>556,12370=>556,12371=>556,12372=>556,12373=>556,12374=>556,12375=>556,12376=>556,12377=>556,12378=>556,12379=>556,12380=>556,12381=>556,12382=>556,
-	12383=>556,12384=>556,12385=>556,12386=>556,12387=>556,12388=>556,12389=>556,12390=>556,12391=>556,12392=>556,12393=>556,12394=>556,12395=>556,12396=>556,12397=>556,12398=>556,
-	12399=>556,12400=>556,12401=>556,12402=>556,12403=>556,12404=>556,12405=>556,12406=>556,12407=>556,12408=>556,12409=>556,12410=>556,12411=>556,12412=>556,12413=>556,12414=>556,
-	12415=>556,12416=>556,12417=>556,12418=>556,12419=>556,12420=>556,12421=>556,12422=>556,12423=>556,12424=>556,12425=>556,12426=>556,12427=>556,12428=>556,12429=>556,12430=>556,
-	12431=>556,12432=>556,12433=>556,12434=>556,12435=>556,12449=>556,12450=>556,12451=>556,12452=>556,12453=>556,12454=>556,12455=>556,12456=>556,12457=>556,12458=>556,12459=>556,
-	12460=>556,12461=>556,12462=>556,12463=>556,12464=>556,12465=>556,12466=>556,12467=>556,12468=>556,12469=>556,12470=>556,12471=>556,12472=>556,12473=>556,12474=>556,12475=>556,
-	12476=>556,12477=>556,12478=>556,12479=>556,12480=>556,12481=>556,12482=>556,12483=>556,12484=>556,12485=>556,12486=>556,12487=>556,12488=>556,12489=>556,12490=>556,12491=>556,
-	12492=>556,12493=>556,12494=>556,12495=>556,12496=>556,12497=>556,12498=>556,12499=>556,12500=>556,12501=>556,12502=>556,12503=>556,12504=>556,12505=>556,12506=>556,12507=>556,
-	12508=>556,12509=>556,12510=>556,12511=>556,12512=>556,12513=>556,12514=>556,12515=>556,12516=>556,12517=>556,12518=>556,12519=>556,12520=>556,12521=>556,12522=>556,12523=>556,
-	12524=>556,12525=>556,12526=>556,12527=>556,12528=>556,12529=>556,12530=>556,12531=>556,12532=>556,12533=>556,12534=>556,63033=>278,63034=>278,63035=>278,63036=>278,63037=>278,
-	63038=>278,63039=>278,63040=>278,63041=>278,63171=>185,63196=>278,64256=>309,64257=>309,64258=>309,64259=>463,64260=>463,64262=>402,64606=>0,64607=>0,64608=>0,64609=>0,
-	64610=>0,64830=>467,64831=>467,65010=>814,65152=>392,65153=>306,65154=>281,65155=>247,65156=>250,65157=>447,65158=>412,65159=>247,65160=>222,65161=>602,65162=>535,65163=>360,
-	65164=>329,65165=>192,65166=>220,65167=>635,65168=>644,65169=>338,65170=>321,65171=>369,65172=>419,65173=>635,65174=>644,65175=>345,65176=>336,65177=>635,65178=>644,65179=>393,
-	65180=>345,65181=>548,65182=>553,65183=>637,65184=>652,65185=>548,65186=>546,65187=>637,65188=>656,65189=>548,65190=>544,65191=>637,65192=>656,65193=>363,65194=>439,65195=>363,
-	65196=>439,65197=>440,65198=>471,65199=>439,65200=>474,65201=>875,65202=>871,65203=>608,65204=>588,65205=>875,65206=>871,65207=>609,65208=>587,65209=>1061,65210=>1033,65211=>794,
-	65212=>758,65213=>1061,65214=>1033,65215=>794,65216=>761,65217=>811,65218=>793,65219=>659,65220=>647,65221=>811,65222=>793,65223=>659,65224=>642,65225=>549,65226=>481,65227=>512,
-	65228=>409,65229=>547,65230=>476,65231=>512,65232=>409,65233=>755,65234=>748,65235=>416,65236=>442,65237=>574,65238=>550,65239=>416,65240=>442,65241=>717,65242=>687,65243=>883,
-	65244=>409,65245=>555,65246=>511,65247=>338,65248=>297,65249=>423,65250=>478,65251=>489,65252=>476,65253=>532,65254=>548,65255=>336,65256=>326,65257=>371,65258=>391,65259=>524,
-	65260=>412,65261=>454,65262=>412,65263=>633,65264=>566,65265=>643,65266=>560,65267=>357,65268=>333,65269=>623,65270=>617,65271=>603,65272=>621,65273=>576,65274=>617,65275=>576,
-	65276=>625);
-$enc='';
-$diff='';
-$file='almohanad.z';
-$ctg='almohanad.ctg.z';
-$originalsize=227760;
-?>
+<?php
+$type='TrueTypeUnicode';
+$name='AlMohanad';
+$desc=array('Ascent'=>1093,'Descent'=>-509,'CapHeight'=>1093,'Flags'=>32,'FontBBox'=>'[-278 -507 1124 1093]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
+$up=-136;
+$ut=64;
+$dw=600;
+$cw=array(
+	0=>0,32=>139,33=>185,34=>308,35=>278,36=>278,37=>556,38=>463,39=>154,40=>185,41=>185,42=>278,43=>317,44=>139,45=>185,46=>139,
+	47=>154,48=>278,49=>278,50=>278,51=>278,52=>278,53=>278,54=>278,55=>278,56=>278,57=>278,58=>185,59=>185,60=>317,61=>317,62=>317,
+	63=>278,64=>517,65=>401,66=>371,67=>401,68=>402,69=>371,70=>339,71=>432,72=>430,73=>214,74=>278,75=>424,76=>369,77=>524,78=>401,
+	79=>432,80=>339,81=>432,82=>396,83=>309,84=>371,85=>401,86=>401,87=>556,88=>401,89=>401,90=>371,91=>185,92=>154,93=>185,94=>323,
+	95=>278,96=>185,97=>278,98=>309,99=>247,100=>309,101=>247,102=>185,103=>278,104=>309,105=>154,106=>185,107=>309,108=>154,109=>463,110=>309,
+	111=>278,112=>309,113=>309,114=>247,115=>216,116=>185,117=>309,118=>278,119=>401,120=>278,121=>278,122=>247,123=>219,124=>122,125=>219,126=>289,
+	8364=>278,1027=>339,8218=>185,1107=>254,8222=>278,8230=>556,8224=>278,8225=>278,710=>185,8240=>556,352=>309,8249=>185,338=>556,1036=>432,381=>371,1039=>432,
+	8216=>185,8217=>185,8220=>278,8221=>278,8226=>194,8211=>278,8212=>556,732=>185,8482=>556,353=>216,8250=>185,339=>401,1116=>297,382=>247,376=>401,161=>185,
+	162=>278,163=>278,164=>278,165=>278,166=>122,167=>278,168=>185,169=>415,170=>167,171=>278,172=>317,174=>415,175=>185,176=>222,177=>317,178=>167,
+	179=>167,180=>185,181=>309,182=>300,183=>139,184=>185,185=>167,186=>183,187=>278,188=>417,189=>417,190=>417,191=>278,192=>401,193=>401,194=>401,
+	195=>401,196=>401,197=>401,198=>556,199=>401,200=>371,201=>371,202=>371,203=>371,204=>216,205=>216,206=>216,207=>216,208=>401,209=>401,210=>432,
+	211=>432,212=>432,213=>432,214=>432,215=>317,216=>432,217=>401,218=>401,219=>401,220=>401,221=>401,222=>339,223=>309,224=>278,225=>278,226=>278,
+	227=>278,228=>278,229=>278,230=>401,231=>247,232=>247,233=>247,234=>247,235=>247,236=>154,237=>154,238=>154,239=>154,240=>278,241=>309,242=>278,
+	243=>278,244=>278,245=>278,246=>278,247=>317,248=>278,249=>309,250=>309,251=>309,252=>309,253=>278,254=>309,255=>278,256=>401,257=>278,258=>401,
+	259=>278,260=>401,261=>278,262=>401,263=>247,264=>401,265=>247,266=>401,267=>247,268=>401,269=>247,270=>401,271=>309,272=>401,273=>309,274=>371,
+	275=>247,276=>371,277=>247,278=>371,279=>247,280=>371,281=>247,282=>371,283=>247,284=>432,285=>278,286=>432,287=>278,288=>432,289=>278,290=>432,
+	291=>278,292=>432,293=>309,294=>432,295=>309,296=>216,297=>154,298=>216,299=>154,300=>216,301=>154,302=>216,303=>154,304=>216,305=>154,306=>490,
+	307=>270,308=>278,309=>185,310=>432,311=>309,312=>297,313=>371,314=>154,315=>371,316=>154,317=>371,318=>154,319=>371,320=>293,321=>371,322=>154,
+	323=>401,324=>309,325=>401,326=>309,327=>401,328=>309,329=>391,330=>401,331=>309,332=>432,333=>278,334=>432,335=>278,336=>432,337=>278,340=>401,
+	341=>247,342=>401,343=>247,344=>401,345=>247,346=>309,347=>216,348=>309,349=>216,350=>309,351=>216,354=>371,355=>185,356=>371,357=>185,358=>371,
+	359=>185,360=>401,361=>309,362=>401,363=>309,364=>401,365=>309,366=>401,367=>309,368=>401,369=>309,370=>401,371=>309,372=>556,373=>401,374=>401,
+	375=>278,377=>371,378=>247,379=>371,380=>247,383=>185,450=>317,477=>247,484=>432,485=>278,536=>309,537=>216,538=>371,539=>185,658=>282,711=>185,
+	728=>185,729=>185,730=>185,731=>185,733=>185,768=>0,769=>0,770=>0,771=>0,772=>0,773=>0,774=>0,775=>0,776=>0,777=>0,778=>0,
+	779=>0,780=>0,781=>0,782=>0,783=>0,784=>0,785=>0,786=>0,787=>0,788=>0,789=>0,790=>0,791=>0,792=>0,793=>0,794=>0,
+	795=>0,796=>0,797=>0,798=>0,799=>0,800=>0,801=>0,802=>0,803=>0,804=>0,805=>0,806=>0,807=>0,808=>0,809=>0,810=>0,
+	811=>0,812=>0,813=>0,814=>0,815=>0,816=>0,817=>0,818=>0,819=>0,820=>0,821=>0,822=>0,823=>0,824=>0,825=>0,826=>0,
+	827=>0,828=>0,829=>0,830=>0,831=>0,864=>0,865=>0,884=>111,885=>111,890=>0,894=>185,900=>100,901=>183,902=>401,903=>139,904=>451,
+	905=>532,906=>316,908=>451,910=>501,911=>451,912=>183,913=>401,914=>371,915=>339,916=>422,917=>371,918=>371,919=>432,920=>432,921=>216,922=>432,
+	923=>401,924=>524,925=>401,926=>361,927=>432,928=>451,929=>339,931=>361,932=>371,933=>401,934=>482,935=>401,936=>482,937=>451,938=>0,939=>401,
+	940=>336,941=>244,942=>336,943=>183,944=>306,945=>336,946=>306,947=>306,948=>306,949=>244,950=>275,951=>336,952=>306,953=>183,954=>338,955=>275,
+	956=>336,957=>275,958=>275,959=>306,960=>336,961=>306,962=>244,963=>306,964=>244,965=>306,966=>367,967=>275,968=>397,969=>397,970=>183,971=>306,
+	972=>306,973=>306,974=>397,976=>306,977=>306,978=>401,979=>401,980=>401,981=>367,982=>336,986=>283,987=>237,988=>339,989=>261,1024=>371,1025=>371,
+	1026=>371,1028=>401,1029=>309,1030=>216,1031=>216,1032=>278,1033=>573,1034=>573,1035=>449,1037=>432,1038=>401,1040=>401,1041=>371,1042=>371,1043=>328,1044=>432,
+	1045=>371,1046=>615,1047=>313,1048=>429,1049=>429,1050=>424,1051=>432,1052=>524,1053=>432,1054=>432,1055=>430,1056=>339,1057=>401,1058=>371,1059=>401,1060=>444,
+	1061=>401,1062=>429,1063=>432,1064=>618,1065=>618,1066=>482,1067=>539,1068=>350,1069=>401,1070=>619,1071=>408,1072=>278,1073=>278,1074=>279,1075=>246,1076=>309,
+	1077=>247,1078=>417,1079=>227,1080=>319,1081=>319,1082=>297,1083=>302,1084=>376,1085=>309,1086=>278,1087=>309,1088=>309,1089=>247,1090=>274,1091=>278,1092=>458,
+	1093=>278,1094=>309,1095=>309,1096=>454,1097=>454,1098=>340,1099=>423,1100=>284,1101=>247,1102=>439,1103=>284,1104=>247,1105=>247,1106=>309,1108=>247,1109=>216,
+	1110=>154,1111=>154,1112=>185,1113=>440,1114=>437,1115=>309,1117=>309,1118=>278,1119=>309,1164=>339,1165=>284,1166=>339,1167=>309,1168=>339,1169=>254,1170=>339,
+	1171=>254,1172=>339,1173=>254,1174=>615,1175=>417,1176=>322,1177=>216,1178=>432,1179=>297,1180=>432,1181=>297,1182=>432,1183=>297,1184=>537,1185=>352,1186=>432,
+	1187=>309,1188=>563,1189=>408,1190=>432,1191=>461,1192=>401,1193=>247,1194=>401,1195=>247,1196=>371,1197=>274,1198=>401,1199=>278,1200=>401,1201=>278,1202=>401,
+	1203=>278,1204=>581,1205=>432,1206=>432,1207=>309,1208=>432,1209=>309,1210=>432,1211=>309,1212=>367,1213=>247,1214=>367,1215=>247,1216=>216,1217=>615,1218=>417,
+	1219=>432,1220=>297,1223=>432,1224=>309,1227=>432,1228=>309,1232=>401,1233=>278,1234=>401,1235=>278,1236=>556,1237=>401,1238=>371,1239=>247,1240=>367,1241=>247,
+	1242=>367,1243=>247,1244=>615,1245=>417,1246=>313,1247=>227,1248=>322,1249=>216,1250=>432,1251=>309,1252=>432,1253=>309,1254=>432,1255=>278,1256=>432,1257=>278,
+	1258=>432,1259=>278,1260=>401,1261=>247,1262=>401,1263=>278,1264=>401,1265=>278,1266=>401,1267=>278,1268=>432,1269=>309,1272=>548,1273=>423,1488=>280,1489=>280,
+	1490=>174,1491=>280,1492=>280,1493=>158,1494=>158,1495=>280,1496=>280,1497=>158,1498=>287,1499=>280,1500=>280,1501=>280,1502=>280,1503=>156,1504=>158,1505=>280,
+	1506=>280,1507=>292,1508=>280,1509=>273,1510=>280,1511=>305,1512=>285,1513=>299,1514=>280,1548=>195,1563=>246,1567=>340,1569=>392,1570=>306,1571=>247,1572=>447,
+	1573=>247,1574=>602,1575=>192,1576=>635,1577=>369,1578=>635,1579=>635,1580=>548,1581=>1173,1582=>548,1583=>363,1584=>363,1585=>439,1586=>442,1587=>875,1588=>875,
+	1589=>1061,1590=>1061,1591=>811,1592=>811,1593=>549,1594=>547,1600=>389,1601=>755,1602=>574,1603=>717,1604=>555,1605=>423,1606=>532,1607=>371,1608=>454,1609=>633,
+	1610=>643,1611=>-19,1612=>-26,1613=>-20,1614=>-19,1615=>-18,1616=>-19,1617=>-19,1618=>-15,1632=>383,1633=>383,1634=>383,1635=>383,1636=>383,1637=>383,1638=>383,
+	1639=>383,1640=>383,1641=>383,1642=>383,1645=>398,7936=>336,7937=>336,7938=>336,7939=>336,7940=>336,7941=>336,7942=>336,7943=>336,7944=>401,7945=>401,7946=>401,
+	7947=>401,7948=>401,7949=>401,7950=>401,7951=>401,7952=>244,7953=>244,7954=>244,7955=>244,7956=>244,7957=>244,7960=>371,7961=>371,7962=>371,7963=>371,7964=>371,
+	7965=>371,7968=>336,7969=>336,7970=>336,7971=>336,7972=>336,7973=>336,7974=>336,7975=>336,7976=>432,7977=>432,7978=>432,7979=>432,7980=>432,7981=>432,7982=>432,
+	7983=>432,7984=>183,7985=>183,7986=>183,7987=>183,7988=>183,7989=>183,7990=>183,7991=>183,7992=>216,7993=>216,7994=>216,7995=>216,7996=>216,7997=>216,7998=>216,
+	7999=>216,8000=>306,8001=>306,8002=>306,8003=>306,8004=>306,8005=>306,8008=>432,8009=>432,8010=>432,8011=>432,8012=>432,8013=>432,8016=>306,8017=>306,8018=>306,
+	8019=>306,8020=>306,8021=>306,8022=>306,8023=>306,8025=>401,8027=>401,8029=>401,8031=>401,8032=>397,8033=>397,8034=>397,8035=>397,8036=>397,8037=>397,8038=>397,
+	8039=>397,8040=>451,8041=>451,8042=>451,8043=>451,8044=>451,8045=>451,8046=>451,8047=>451,8048=>336,8049=>336,8050=>244,8051=>244,8052=>336,8053=>336,8054=>183,
+	8055=>183,8056=>306,8057=>306,8058=>306,8059=>306,8060=>397,8061=>397,8064=>336,8065=>336,8066=>336,8067=>336,8068=>336,8069=>336,8070=>336,8071=>336,8072=>401,
+	8073=>401,8074=>401,8075=>401,8076=>401,8077=>401,8078=>401,8079=>401,8080=>336,8081=>336,8082=>336,8083=>336,8084=>336,8085=>336,8086=>336,8087=>336,8088=>432,
+	8089=>432,8090=>432,8091=>432,8092=>432,8093=>432,8094=>432,8095=>432,8096=>397,8097=>397,8098=>397,8099=>397,8100=>397,8101=>397,8102=>397,8103=>397,8104=>451,
+	8105=>451,8106=>451,8107=>451,8108=>451,8109=>451,8110=>451,8111=>451,8112=>336,8113=>336,8114=>336,8115=>336,8116=>336,8118=>336,8119=>336,8120=>401,8121=>401,
+	8122=>401,8123=>401,8124=>401,8125=>278,8126=>0,8127=>278,8128=>278,8129=>306,8130=>336,8131=>336,8132=>336,8134=>336,8135=>336,8136=>371,8137=>371,8138=>432,
+	8139=>432,8140=>432,8141=>278,8142=>278,8143=>278,8144=>183,8145=>183,8146=>183,8147=>183,8150=>183,8151=>183,8152=>216,8153=>216,8154=>216,8155=>216,8157=>278,
+	8158=>278,8159=>278,8160=>306,8161=>306,8162=>306,8163=>306,8164=>306,8165=>306,8166=>306,8167=>306,8168=>401,8169=>401,8170=>401,8171=>401,8172=>339,8173=>306,
+	8174=>306,8175=>278,8178=>397,8179=>397,8180=>397,8182=>397,8183=>397,8184=>432,8185=>432,8186=>451,8187=>451,8188=>451,8189=>278,8190=>278,8208=>185,8209=>185,
+	8219=>185,8223=>278,8227=>311,8241=>1011,8248=>261,8251=>404,8253=>386,8255=>529,8256=>529,8257=>188,8258=>517,8259=>185,8260=>93,8261=>184,8262=>184,8267=>300,
+	8308=>167,8309=>556,8321=>167,8322=>167,8323=>167,8324=>167,8352=>394,8353=>401,8354=>435,8355=>339,8356=>278,8357=>463,8358=>401,8359=>389,8361=>556,8470=>530,
+	8471=>415,8479=>401,8483=>401,8486=>451,8487=>451,8494=>306,8498=>339,8543=>417,8706=>274,8710=>340,8721=>396,8722=>317,8730=>305,8734=>418,8800=>317,8804=>317,
+	8805=>317,9674=>274,12353=>556,12354=>556,12355=>556,12356=>556,12357=>556,12358=>556,12359=>556,12360=>556,12361=>556,12362=>556,12363=>556,12364=>556,12365=>556,12366=>556,
+	12367=>556,12368=>556,12369=>556,12370=>556,12371=>556,12372=>556,12373=>556,12374=>556,12375=>556,12376=>556,12377=>556,12378=>556,12379=>556,12380=>556,12381=>556,12382=>556,
+	12383=>556,12384=>556,12385=>556,12386=>556,12387=>556,12388=>556,12389=>556,12390=>556,12391=>556,12392=>556,12393=>556,12394=>556,12395=>556,12396=>556,12397=>556,12398=>556,
+	12399=>556,12400=>556,12401=>556,12402=>556,12403=>556,12404=>556,12405=>556,12406=>556,12407=>556,12408=>556,12409=>556,12410=>556,12411=>556,12412=>556,12413=>556,12414=>556,
+	12415=>556,12416=>556,12417=>556,12418=>556,12419=>556,12420=>556,12421=>556,12422=>556,12423=>556,12424=>556,12425=>556,12426=>556,12427=>556,12428=>556,12429=>556,12430=>556,
+	12431=>556,12432=>556,12433=>556,12434=>556,12435=>556,12449=>556,12450=>556,12451=>556,12452=>556,12453=>556,12454=>556,12455=>556,12456=>556,12457=>556,12458=>556,12459=>556,
+	12460=>556,12461=>556,12462=>556,12463=>556,12464=>556,12465=>556,12466=>556,12467=>556,12468=>556,12469=>556,12470=>556,12471=>556,12472=>556,12473=>556,12474=>556,12475=>556,
+	12476=>556,12477=>556,12478=>556,12479=>556,12480=>556,12481=>556,12482=>556,12483=>556,12484=>556,12485=>556,12486=>556,12487=>556,12488=>556,12489=>556,12490=>556,12491=>556,
+	12492=>556,12493=>556,12494=>556,12495=>556,12496=>556,12497=>556,12498=>556,12499=>556,12500=>556,12501=>556,12502=>556,12503=>556,12504=>556,12505=>556,12506=>556,12507=>556,
+	12508=>556,12509=>556,12510=>556,12511=>556,12512=>556,12513=>556,12514=>556,12515=>556,12516=>556,12517=>556,12518=>556,12519=>556,12520=>556,12521=>556,12522=>556,12523=>556,
+	12524=>556,12525=>556,12526=>556,12527=>556,12528=>556,12529=>556,12530=>556,12531=>556,12532=>556,12533=>556,12534=>556,63033=>278,63034=>278,63035=>278,63036=>278,63037=>278,
+	63038=>278,63039=>278,63040=>278,63041=>278,63171=>185,63196=>278,64256=>309,64257=>309,64258=>309,64259=>463,64260=>463,64262=>402,64606=>0,64607=>0,64608=>0,64609=>0,
+	64610=>0,64830=>467,64831=>467,65010=>814,65152=>392,65153=>306,65154=>281,65155=>247,65156=>250,65157=>447,65158=>412,65159=>247,65160=>222,65161=>602,65162=>535,65163=>360,
+	65164=>329,65165=>192,65166=>220,65167=>635,65168=>644,65169=>338,65170=>321,65171=>369,65172=>419,65173=>635,65174=>644,65175=>345,65176=>336,65177=>635,65178=>644,65179=>393,
+	65180=>345,65181=>548,65182=>553,65183=>637,65184=>652,65185=>548,65186=>546,65187=>637,65188=>656,65189=>548,65190=>544,65191=>637,65192=>656,65193=>363,65194=>439,65195=>363,
+	65196=>439,65197=>440,65198=>471,65199=>439,65200=>474,65201=>875,65202=>871,65203=>608,65204=>588,65205=>875,65206=>871,65207=>609,65208=>587,65209=>1061,65210=>1033,65211=>794,
+	65212=>758,65213=>1061,65214=>1033,65215=>794,65216=>761,65217=>811,65218=>793,65219=>659,65220=>647,65221=>811,65222=>793,65223=>659,65224=>642,65225=>549,65226=>481,65227=>512,
+	65228=>409,65229=>547,65230=>476,65231=>512,65232=>409,65233=>755,65234=>748,65235=>416,65236=>442,65237=>574,65238=>550,65239=>416,65240=>442,65241=>717,65242=>687,65243=>883,
+	65244=>409,65245=>555,65246=>511,65247=>338,65248=>297,65249=>423,65250=>478,65251=>489,65252=>476,65253=>532,65254=>548,65255=>336,65256=>326,65257=>371,65258=>391,65259=>524,
+	65260=>412,65261=>454,65262=>412,65263=>633,65264=>566,65265=>643,65266=>560,65267=>357,65268=>333,65269=>623,65270=>617,65271=>603,65272=>621,65273=>576,65274=>617,65275=>576,
+	65276=>625);
+$enc='';
+$diff='';
+$file='almohanad.z';
+$ctg='almohanad.ctg.z';
+$originalsize=227760;
+// --- EOF ---
diff --git a/libs/tcpdf/fonts/almohanad.z b/libs/tcpdf/fonts/almohanad.z
new file mode 100644
index 0000000000000000000000000000000000000000..27426a68f01cc1f1ecda64f9a9924f847fdb47ac
Binary files /dev/null and b/libs/tcpdf/fonts/almohanad.z differ
diff --git a/libs/tcpdf/fonts/dejavusans.ctg.z b/libs/tcpdf/fonts/dejavusans.ctg.z
new file mode 100644
index 0000000000000000000000000000000000000000..010e8babe48ce1bcae960627de110dfce5a71887
Binary files /dev/null and b/libs/tcpdf/fonts/dejavusans.ctg.z differ
diff --git a/libs/tcpdf/fonts/dejavusans.php b/libs/tcpdf/fonts/dejavusans.php
new file mode 100644
index 0000000000000000000000000000000000000000..7fd0e1081cc9e7004fa90f0bf30f9d6bc2014763
--- /dev/null
+++ b/libs/tcpdf/fonts/dejavusans.php
@@ -0,0 +1,531 @@
+<?php
+$type='TrueTypeUnicode';
+$name='DejaVuSans';
+$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>30,'Flags'=>96,'FontBBox'=>'[-1021 -415 1681 1167]','ItalicAngle'=>20.8,'StemV'=>70,'MissingWidth'=>600);
+$up=-63;
+$ut=44;
+$dw=600;
+$cw=array(
+0=>600,32=>318,33=>401,34=>460,35=>838,36=>636,37=>950,38=>780,39=>275,40=>390,
+41=>390,42=>500,43=>838,44=>318,45=>361,46=>318,47=>337,48=>636,49=>636,50=>636,
+51=>636,52=>636,53=>636,54=>636,55=>636,56=>636,57=>636,58=>337,59=>337,60=>838,
+61=>838,62=>838,63=>531,64=>1000,65=>684,66=>686,67=>698,68=>770,69=>632,70=>575,
+71=>775,72=>752,73=>295,74=>295,75=>656,76=>557,77=>863,78=>748,79=>787,80=>603,
+81=>787,82=>695,83=>635,84=>611,85=>732,86=>684,87=>989,88=>685,89=>611,90=>685,
+91=>390,92=>337,93=>390,94=>838,95=>500,96=>500,97=>613,98=>635,99=>550,100=>635,
+101=>615,102=>352,103=>635,104=>634,105=>278,106=>278,107=>579,108=>278,109=>974,110=>634,
+111=>612,112=>635,113=>635,114=>411,115=>521,116=>392,117=>634,118=>592,119=>818,120=>592,
+121=>592,122=>525,123=>636,124=>337,125=>636,126=>838,8364=>636,8218=>318,402=>352,8222=>518,
+8230=>1000,8224=>500,8225=>500,710=>500,8240=>1342,352=>635,8249=>400,338=>1070,381=>685,8216=>318,
+8217=>318,8220=>518,8221=>518,8226=>590,8211=>500,8212=>1000,732=>500,8482=>1000,353=>521,8250=>400,
+339=>1023,382=>525,376=>611,160=>318,161=>401,162=>636,163=>636,164=>636,165=>636,166=>337,
+167=>500,168=>500,169=>1000,170=>471,171=>612,172=>838,173=>361,174=>1000,175=>500,176=>500,
+177=>838,178=>401,179=>401,180=>500,181=>636,182=>636,183=>318,184=>500,185=>401,186=>471,
+187=>612,188=>969,189=>969,190=>969,191=>531,192=>684,193=>684,194=>684,195=>684,196=>684,
+197=>684,198=>974,199=>698,200=>632,201=>632,202=>632,203=>632,204=>295,205=>295,206=>295,
+207=>295,208=>775,209=>748,210=>787,211=>787,212=>787,213=>787,214=>787,215=>838,216=>787,
+217=>732,218=>732,219=>732,220=>732,221=>611,222=>605,223=>630,224=>613,225=>613,226=>613,
+227=>613,228=>613,229=>613,230=>982,231=>550,232=>615,233=>615,234=>615,235=>615,236=>278,
+237=>278,238=>278,239=>278,240=>612,241=>634,242=>612,243=>612,244=>612,245=>612,246=>612,
+247=>838,248=>612,249=>634,250=>634,251=>634,252=>634,253=>592,254=>635,255=>592,256=>684,
+257=>613,258=>684,259=>613,260=>684,261=>613,262=>698,263=>550,264=>698,265=>550,266=>698,
+267=>550,268=>698,269=>550,270=>770,271=>635,272=>775,273=>635,274=>632,275=>615,276=>632,
+277=>615,278=>632,279=>615,280=>632,281=>615,282=>632,283=>615,284=>775,285=>635,286=>775,
+287=>635,288=>775,289=>635,290=>775,291=>635,292=>752,293=>634,294=>916,295=>695,296=>295,
+297=>278,298=>295,299=>278,300=>295,301=>278,302=>295,303=>278,304=>295,305=>278,306=>590,
+307=>556,308=>295,309=>278,310=>656,311=>579,312=>579,313=>557,314=>278,315=>557,316=>278,
+317=>557,318=>375,319=>557,320=>342,321=>562,322=>284,323=>748,324=>634,325=>748,326=>634,
+327=>748,328=>634,329=>813,330=>748,331=>634,332=>787,333=>612,334=>787,335=>612,336=>787,
+337=>612,340=>695,341=>411,342=>695,343=>411,344=>695,345=>411,346=>635,347=>521,348=>635,
+349=>521,350=>635,351=>521,354=>611,355=>392,356=>611,357=>392,358=>611,359=>392,360=>732,
+361=>634,362=>732,363=>634,364=>732,365=>634,366=>732,367=>634,368=>732,369=>634,370=>732,
+371=>634,372=>989,373=>818,374=>611,375=>592,377=>685,378=>525,379=>685,380=>525,383=>352,
+384=>635,385=>735,386=>686,387=>635,388=>686,389=>635,390=>703,391=>698,392=>550,393=>775,
+394=>819,395=>686,396=>635,397=>612,398=>632,399=>787,400=>614,401=>575,403=>775,404=>687,
+405=>984,406=>354,407=>295,408=>746,409=>579,410=>278,411=>592,412=>974,413=>748,414=>634,
+415=>787,416=>913,417=>612,418=>949,419=>759,420=>652,421=>635,422=>695,423=>635,424=>521,
+425=>632,426=>336,427=>392,428=>611,429=>392,430=>611,431=>858,432=>634,433=>764,434=>721,
+435=>744,436=>730,437=>685,438=>525,439=>666,440=>666,441=>578,442=>525,443=>636,444=>666,
+445=>578,446=>510,447=>635,448=>295,449=>492,450=>459,451=>295,452=>1422,453=>1299,454=>1154,
+455=>835,456=>787,457=>457,458=>931,459=>924,460=>797,461=>684,462=>613,463=>295,464=>278,
+465=>787,466=>612,467=>732,468=>634,469=>732,470=>634,471=>732,472=>634,473=>732,474=>634,
+475=>732,476=>634,477=>615,478=>684,479=>613,480=>684,481=>613,482=>974,483=>982,484=>775,
+485=>635,486=>775,487=>635,488=>656,489=>579,490=>787,491=>612,492=>787,493=>612,494=>666,
+495=>578,496=>278,497=>1422,498=>1299,499=>1154,500=>775,501=>635,502=>1113,503=>682,504=>748,
+505=>634,506=>684,507=>613,508=>974,509=>982,510=>787,511=>612,512=>684,513=>613,514=>684,
+515=>613,516=>632,517=>615,518=>632,519=>615,520=>295,521=>278,522=>295,523=>278,524=>787,
+525=>612,526=>787,527=>612,528=>695,529=>411,530=>695,531=>411,532=>732,533=>634,534=>732,
+535=>634,536=>635,537=>521,538=>611,539=>392,540=>627,541=>521,542=>752,543=>634,544=>735,
+545=>838,546=>698,547=>610,548=>685,549=>525,550=>684,551=>613,552=>632,553=>615,554=>787,
+555=>612,556=>787,557=>612,558=>787,559=>612,560=>787,561=>612,562=>611,563=>592,564=>475,
+565=>843,566=>477,567=>278,568=>998,569=>998,570=>684,571=>698,572=>550,573=>557,574=>611,
+575=>521,576=>525,577=>603,578=>479,579=>686,580=>732,581=>684,582=>632,583=>615,584=>295,
+585=>278,586=>781,587=>635,588=>695,589=>411,590=>611,591=>592,592=>600,593=>635,594=>635,
+595=>635,596=>549,597=>550,598=>635,599=>696,600=>615,601=>615,602=>819,603=>541,604=>532,
+605=>775,606=>664,607=>278,608=>696,609=>635,610=>629,611=>596,612=>596,613=>634,614=>634,
+615=>634,616=>278,617=>338,618=>372,619=>396,620=>487,621=>278,622=>706,623=>974,624=>974,
+625=>974,626=>646,627=>642,628=>634,629=>612,630=>858,631=>728,632=>660,633=>414,634=>414,
+635=>414,636=>411,637=>411,638=>530,639=>530,640=>604,641=>604,642=>521,643=>336,644=>336,
+645=>461,646=>336,647=>392,648=>392,649=>634,650=>618,651=>598,652=>592,653=>818,654=>592,
+655=>611,656=>525,657=>525,658=>578,659=>578,660=>510,661=>510,662=>510,663=>510,664=>787,
+665=>580,666=>664,667=>708,668=>654,669=>292,670=>667,671=>507,672=>727,673=>510,674=>510,
+675=>1014,676=>1058,677=>1013,678=>824,679=>610,680=>778,681=>848,682=>641,683=>654,684=>515,
+685=>515,686=>661,687=>664,688=>404,689=>399,690=>175,691=>259,692=>295,693=>296,694=>379,
+695=>515,696=>373,697=>278,698=>460,699=>318,700=>318,701=>318,702=>307,703=>307,704=>370,
+705=>370,706=>500,707=>500,708=>500,709=>500,711=>500,712=>275,713=>500,714=>500,715=>500,
+716=>275,717=>500,718=>500,719=>500,720=>337,721=>337,722=>307,723=>307,724=>500,725=>500,
+726=>390,727=>317,728=>500,729=>500,730=>500,731=>500,733=>500,734=>315,735=>500,736=>426,
+737=>166,738=>373,739=>444,740=>370,741=>493,742=>493,743=>493,744=>493,745=>493,748=>500,
+749=>500,750=>518,755=>500,759=>500,768=>0,769=>0,770=>0,771=>0,772=>0,773=>0,
+774=>0,775=>0,776=>0,777=>0,778=>0,779=>0,780=>0,781=>0,782=>0,783=>0,
+784=>0,785=>0,786=>0,787=>0,788=>0,789=>0,790=>0,791=>0,792=>0,793=>0,
+794=>0,795=>0,796=>0,797=>0,798=>0,799=>0,800=>0,801=>0,802=>0,803=>0,
+804=>0,805=>0,806=>0,807=>0,808=>0,809=>0,810=>0,811=>0,812=>0,813=>0,
+814=>0,815=>0,816=>0,817=>0,818=>0,819=>0,820=>0,821=>0,822=>0,823=>0,
+824=>0,825=>0,826=>0,827=>0,828=>0,829=>0,830=>0,831=>0,832=>0,833=>0,
+834=>0,835=>0,836=>0,837=>0,838=>0,839=>0,840=>0,841=>0,842=>0,843=>0,
+844=>0,845=>0,846=>0,847=>0,849=>0,850=>0,851=>0,855=>0,856=>0,858=>0,
+860=>0,861=>0,862=>0,863=>0,864=>0,865=>0,866=>0,880=>654,881=>568,882=>862,
+883=>647,884=>278,885=>278,886=>748,887=>650,890=>500,891=>549,892=>550,893=>549,894=>337,
+900=>500,901=>500,902=>692,903=>318,904=>746,905=>871,906=>408,908=>813,910=>825,911=>826,
+912=>338,913=>684,914=>686,915=>557,916=>684,917=>632,918=>685,919=>752,920=>787,921=>295,
+922=>656,923=>684,924=>863,925=>748,926=>632,927=>787,928=>752,929=>603,931=>632,932=>611,
+933=>611,934=>787,935=>685,936=>787,937=>764,938=>295,939=>611,940=>659,941=>541,942=>634,
+943=>338,944=>579,945=>659,946=>638,947=>592,948=>612,949=>541,950=>544,951=>634,952=>612,
+953=>338,954=>589,955=>592,956=>636,957=>559,958=>558,959=>612,960=>602,961=>635,962=>587,
+963=>634,964=>602,965=>579,966=>660,967=>578,968=>660,969=>837,970=>338,971=>579,972=>612,
+973=>579,974=>837,975=>656,976=>614,977=>619,978=>699,979=>842,980=>699,981=>660,982=>837,
+983=>664,984=>787,985=>612,986=>648,987=>587,988=>575,989=>458,990=>660,991=>660,992=>865,
+993=>627,994=>934,995=>837,996=>758,997=>659,998=>792,999=>615,1000=>687,1001=>607,1002=>768,
+1003=>625,1004=>699,1005=>612,1006=>611,1007=>536,1008=>664,1009=>635,1010=>550,1011=>278,1012=>787,
+1013=>615,1014=>615,1015=>605,1016=>635,1017=>698,1018=>863,1019=>651,1020=>635,1021=>703,1022=>698,
+1023=>703,1024=>632,1025=>632,1026=>786,1027=>610,1028=>698,1029=>635,1030=>295,1031=>295,1032=>295,
+1033=>1094,1034=>1045,1035=>786,1036=>710,1037=>748,1038=>609,1039=>752,1040=>684,1041=>686,1042=>686,
+1043=>610,1044=>781,1045=>632,1046=>1077,1047=>641,1048=>748,1049=>748,1050=>710,1051=>752,1052=>863,
+1053=>752,1054=>787,1055=>752,1056=>603,1057=>698,1058=>611,1059=>609,1060=>861,1061=>685,1062=>776,
+1063=>686,1064=>1069,1065=>1094,1066=>833,1067=>882,1068=>686,1069=>698,1070=>1080,1071=>695,1072=>613,
+1073=>617,1074=>589,1075=>525,1076=>691,1077=>615,1078=>901,1079=>532,1080=>650,1081=>650,1082=>604,
+1083=>639,1084=>754,1085=>654,1086=>612,1087=>654,1088=>635,1089=>550,1090=>583,1091=>592,1092=>855,
+1093=>592,1094=>681,1095=>591,1096=>915,1097=>942,1098=>707,1099=>790,1100=>589,1101=>549,1102=>842,
+1103=>602,1104=>615,1105=>615,1106=>625,1107=>525,1108=>549,1109=>521,1110=>278,1111=>278,1112=>278,
+1113=>902,1114=>898,1115=>652,1116=>604,1117=>650,1118=>592,1119=>654,1120=>934,1121=>837,1122=>771,
+1123=>672,1124=>942,1125=>749,1126=>879,1127=>783,1128=>1160,1129=>1001,1130=>787,1131=>612,1132=>1027,
+1133=>824,1134=>636,1135=>541,1136=>856,1137=>876,1138=>787,1139=>612,1140=>781,1141=>665,1142=>781,
+1143=>665,1144=>992,1145=>904,1146=>953,1147=>758,1148=>1180,1149=>1028,1150=>934,1151=>837,1152=>698,
+1153=>550,1154=>502,1155=>0,1156=>0,1157=>0,1158=>0,1159=>0,1160=>418,1161=>418,1162=>772,
+1163=>677,1164=>686,1165=>589,1166=>603,1167=>635,1168=>610,1169=>525,1170=>675,1171=>590,1172=>624,
+1173=>530,1174=>1077,1175=>901,1176=>641,1177=>532,1178=>710,1179=>604,1180=>710,1181=>604,1182=>710,
+1183=>604,1184=>856,1185=>832,1186=>752,1187=>661,1188=>1014,1189=>877,1190=>1081,1191=>916,1192=>878,
+1193=>693,1194=>698,1195=>550,1196=>611,1197=>583,1198=>611,1199=>592,1200=>611,1201=>592,1202=>685,
+1203=>592,1204=>934,1205=>807,1206=>686,1207=>591,1208=>686,1209=>591,1210=>686,1211=>634,1212=>941,
+1213=>728,1214=>941,1215=>728,1216=>295,1217=>1077,1218=>901,1219=>656,1220=>604,1221=>776,1222=>670,
+1223=>752,1224=>661,1225=>776,1226=>681,1227=>686,1228=>591,1229=>888,1230=>774,1231=>278,1232=>684,
+1233=>613,1234=>684,1235=>613,1236=>974,1237=>982,1238=>632,1239=>615,1240=>787,1241=>615,1242=>787,
+1243=>615,1244=>1077,1245=>901,1246=>641,1247=>532,1248=>666,1249=>578,1250=>748,1251=>650,1252=>748,
+1253=>650,1254=>787,1255=>612,1256=>787,1257=>612,1258=>787,1259=>612,1260=>698,1261=>549,1262=>609,
+1263=>592,1264=>609,1265=>592,1266=>609,1267=>592,1268=>686,1269=>591,1270=>610,1271=>525,1272=>882,
+1273=>790,1274=>675,1275=>590,1276=>685,1277=>592,1278=>685,1279=>592,1280=>686,1281=>589,1282=>1006,
+1283=>897,1284=>975,1285=>869,1286=>679,1287=>588,1288=>1072,1289=>957,1290=>1113,1291=>967,1292=>775,
+1293=>660,1294=>773,1295=>711,1296=>614,1297=>541,1298=>752,1299=>639,1300=>1169,1301=>994,1302=>894,
+1303=>864,1304=>1032,1305=>986,1306=>787,1307=>635,1308=>989,1309=>818,1312=>1081,1313=>905,1314=>1081,
+1315=>912,1316=>793,1317=>683,1329=>867,1330=>732,1331=>882,1332=>882,1333=>732,1334=>644,1335=>682,
+1336=>732,1337=>851,1338=>882,1339=>732,1340=>557,1341=>824,1342=>986,1343=>732,1344=>707,1345=>644,
+1346=>882,1347=>777,1348=>882,1349=>732,1350=>840,1351=>732,1352=>732,1353=>732,1354=>791,1355=>644,
+1356=>882,1357=>732,1358=>882,1359=>635,1360=>732,1361=>732,1362=>799,1363=>787,1364=>790,1365=>787,
+1366=>635,1369=>307,1370=>318,1371=>500,1372=>500,1373=>392,1374=>526,1375=>500,1377=>974,1378=>634,
+1379=>762,1380=>767,1381=>634,1382=>697,1383=>533,1384=>634,1385=>700,1386=>697,1387=>634,1388=>404,
+1389=>894,1390=>641,1391=>634,1392=>634,1393=>635,1394=>702,1395=>634,1396=>659,1397=>278,1398=>760,
+1399=>516,1400=>634,1401=>453,1402=>974,1403=>516,1404=>769,1405=>634,1406=>696,1407=>974,1408=>634,
+1409=>635,1410=>501,1411=>974,1412=>648,1413=>612,1414=>629,1415=>763,1417=>337,1418=>433,1456=>0,
+1457=>0,1458=>0,1459=>0,1460=>0,1461=>0,1462=>0,1463=>0,1464=>0,1465=>0,1466=>0,
+1467=>0,1468=>0,1469=>0,1470=>361,1471=>0,1472=>295,1473=>0,1474=>0,1475=>295,1478=>441,
+1479=>0,1488=>629,1489=>608,1490=>448,1491=>594,1492=>640,1493=>272,1494=>374,1495=>640,1496=>648,
+1497=>272,1498=>592,1499=>556,1500=>599,1501=>640,1502=>659,1503=>272,1504=>441,1505=>700,1506=>563,
+1507=>640,1508=>604,1509=>521,1510=>581,1511=>663,1512=>592,1513=>808,1514=>657,1520=>471,1521=>454,
+1522=>471,1523=>416,1524=>645,1542=>637,1543=>637,1545=>757,1546=>977,1548=>323,1557=>0,1563=>318,
+1567=>531,1569=>470,1570=>278,1571=>278,1572=>483,1573=>278,1574=>783,1575=>278,1576=>941,1577=>524,
+1578=>941,1579=>941,1580=>646,1581=>646,1582=>646,1583=>445,1584=>445,1585=>483,1586=>483,1587=>1221,
+1588=>1221,1589=>1209,1590=>1209,1591=>925,1592=>925,1593=>597,1594=>597,1600=>293,1601=>1037,1602=>776,
+1603=>824,1604=>727,1605=>619,1606=>734,1607=>524,1608=>483,1609=>783,1610=>783,1611=>0,1612=>0,
+1613=>0,1614=>0,1615=>0,1616=>0,1617=>0,1618=>0,1619=>0,1620=>0,1621=>0,1623=>0,
+1626=>500,1632=>537,1633=>537,1634=>537,1635=>537,1636=>537,1637=>537,1638=>537,1639=>537,1640=>537,
+1641=>537,1642=>537,1643=>325,1644=>318,1645=>545,1646=>941,1647=>776,1648=>0,1652=>292,1657=>941,
+1658=>941,1659=>941,1660=>941,1661=>941,1662=>941,1663=>941,1664=>941,1665=>646,1666=>646,1667=>646,
+1668=>646,1669=>646,1670=>646,1671=>646,1672=>445,1673=>445,1674=>445,1675=>445,1676=>445,1677=>445,
+1678=>445,1679=>445,1680=>445,1681=>483,1682=>483,1683=>498,1684=>530,1685=>610,1686=>530,1687=>483,
+1688=>483,1689=>483,1690=>1221,1691=>1221,1692=>1221,1693=>1209,1694=>1209,1695=>925,1696=>597,1697=>1037,
+1698=>1037,1699=>1037,1700=>1037,1701=>1037,1702=>1037,1703=>776,1704=>776,1705=>895,1706=>1054,1707=>895,
+1708=>824,1709=>824,1710=>824,1711=>895,1712=>895,1713=>895,1714=>895,1715=>895,1716=>895,1717=>727,
+1718=>727,1719=>727,1720=>727,1721=>734,1722=>734,1723=>734,1724=>734,1725=>734,1726=>698,1727=>646,
+1734=>483,1740=>783,1742=>783,1749=>524,1776=>537,1777=>537,1778=>537,1779=>537,1780=>537,1781=>537,
+1782=>537,1783=>537,1784=>537,1785=>537,1984=>636,1985=>636,1986=>636,1987=>636,1988=>636,1989=>636,
+1990=>636,1991=>636,1992=>636,1993=>636,1994=>278,1995=>571,1996=>424,1997=>592,1998=>654,1999=>654,
+2000=>594,2001=>654,2002=>829,2003=>438,2004=>438,2005=>559,2006=>612,2007=>350,2008=>959,2009=>473,
+2010=>783,2011=>654,2012=>625,2013=>734,2014=>530,2015=>724,2016=>473,2017=>625,2018=>594,2019=>530,
+2020=>530,2021=>522,2022=>594,2023=>594,2027=>0,2028=>0,2029=>0,2030=>0,2031=>0,2032=>0,
+2033=>0,2034=>0,2035=>0,2036=>313,2037=>313,2040=>560,2041=>560,2042=>361,3647=>636,3713=>670,
+3714=>684,3716=>688,3719=>482,3720=>628,3722=>684,3725=>688,3732=>669,3733=>642,3734=>645,3735=>655,
+3737=>659,3738=>625,3739=>625,3740=>745,3741=>767,3742=>687,3743=>687,3745=>702,3746=>688,3747=>684,
+3749=>649,3751=>632,3754=>703,3755=>819,3757=>633,3758=>684,3759=>788,3760=>632,3761=>0,3762=>539,
+3763=>539,3764=>0,3765=>0,3766=>0,3767=>0,3768=>0,3769=>0,3771=>0,3772=>0,3773=>663,
+3776=>375,3777=>657,3778=>460,3779=>547,3780=>491,3782=>674,3784=>0,3785=>0,3786=>0,3787=>0,
+3788=>0,3789=>0,3792=>636,3793=>641,3794=>641,3795=>670,3796=>625,3797=>625,3798=>703,3799=>670,
+3800=>674,3801=>677,3804=>1028,3805=>1028,4256=>840,4257=>690,4258=>642,4259=>759,4260=>591,4261=>686,
+4262=>789,4263=>811,4264=>467,4265=>565,4266=>789,4267=>793,4268=>584,4269=>837,4270=>750,4271=>688,
+4272=>811,4273=>584,4274=>584,4275=>837,4276=>837,4277=>646,4278=>604,4279=>584,4280=>596,4281=>584,
+4282=>721,4283=>795,4284=>584,4285=>566,4286=>584,4287=>669,4288=>799,4289=>542,4290=>664,4291=>542,
+4292=>565,4293=>674,4304=>508,4305=>508,4306=>533,4307=>785,4308=>522,4309=>517,4310=>508,4311=>797,
+4312=>507,4313=>518,4314=>1058,4315=>522,4316=>523,4317=>783,4318=>518,4319=>523,4320=>792,4321=>523,
+4322=>656,4323=>524,4324=>788,4325=>523,4326=>782,4327=>523,4328=>522,4329=>522,4330=>566,4331=>523,
+4332=>523,4333=>489,4334=>522,4335=>498,4336=>517,4337=>560,4338=>508,4339=>508,4340=>508,4341=>563,
+4342=>824,4343=>595,4344=>522,4345=>554,4346=>553,4347=>586,4348=>304,5121=>684,5122=>684,5123=>684,
+5124=>684,5125=>769,5126=>769,5127=>769,5129=>769,5130=>769,5131=>769,5132=>835,5133=>834,5134=>835,
+5135=>834,5136=>835,5137=>834,5138=>967,5139=>1007,5140=>967,5141=>1007,5142=>769,5143=>967,5144=>1007,
+5145=>967,5146=>1007,5147=>769,5149=>256,5150=>543,5151=>423,5152=>423,5153=>389,5154=>389,5155=>393,
+5156=>389,5157=>466,5158=>385,5159=>256,5160=>389,5161=>389,5162=>389,5163=>1090,5164=>909,5165=>953,
+5166=>1117,5167=>684,5168=>684,5169=>684,5170=>684,5171=>729,5172=>729,5173=>729,5175=>729,5176=>729,
+5177=>729,5178=>835,5179=>684,5180=>835,5181=>834,5182=>835,5183=>834,5184=>967,5185=>1007,5186=>967,
+5187=>1007,5188=>967,5189=>1007,5190=>967,5191=>1007,5192=>729,5193=>508,5194=>192,5196=>732,5197=>732,
+5198=>732,5199=>732,5200=>730,5201=>730,5202=>730,5204=>730,5205=>730,5206=>730,5207=>921,5208=>889,
+5209=>921,5210=>889,5211=>921,5212=>889,5213=>928,5214=>900,5215=>928,5216=>900,5217=>947,5218=>900,
+5219=>947,5220=>900,5221=>947,5222=>434,5223=>877,5224=>877,5225=>866,5226=>890,5227=>628,5228=>628,
+5229=>628,5230=>628,5231=>628,5232=>628,5233=>628,5234=>628,5235=>628,5236=>860,5237=>771,5238=>815,
+5239=>816,5240=>815,5241=>816,5242=>860,5243=>771,5244=>860,5245=>771,5246=>815,5247=>816,5248=>815,
+5249=>816,5250=>815,5251=>407,5252=>407,5253=>750,5254=>775,5255=>750,5256=>775,5257=>628,5258=>628,
+5259=>628,5260=>628,5261=>628,5262=>628,5263=>628,5264=>628,5265=>628,5266=>860,5267=>771,5268=>815,
+5269=>816,5270=>815,5271=>816,5272=>860,5273=>771,5274=>860,5275=>771,5276=>815,5277=>816,5278=>815,
+5279=>816,5280=>815,5281=>435,5282=>435,5283=>610,5284=>557,5285=>557,5286=>557,5287=>610,5288=>610,
+5289=>610,5290=>557,5291=>557,5292=>749,5293=>769,5294=>746,5295=>764,5296=>746,5297=>764,5298=>749,
+5299=>769,5300=>749,5301=>769,5302=>746,5303=>764,5304=>746,5305=>764,5306=>746,5307=>386,5308=>508,
+5309=>386,5312=>852,5313=>852,5314=>852,5315=>852,5316=>852,5317=>852,5318=>852,5319=>852,5320=>852,
+5321=>1069,5322=>1035,5323=>1059,5324=>852,5325=>1059,5326=>852,5327=>852,5328=>600,5329=>453,5330=>600,
+5331=>852,5332=>852,5333=>852,5334=>852,5335=>852,5336=>852,5337=>852,5338=>852,5339=>852,5340=>1069,
+5341=>1035,5342=>1059,5343=>1030,5344=>1059,5345=>1030,5346=>1069,5347=>1035,5348=>1069,5349=>1035,5350=>1083,
+5351=>1030,5352=>1083,5353=>1030,5354=>600,5356=>729,5357=>603,5358=>603,5359=>603,5360=>603,5361=>603,
+5362=>603,5363=>603,5364=>603,5365=>603,5366=>834,5367=>754,5368=>792,5369=>771,5370=>792,5371=>771,
+5372=>834,5373=>754,5374=>834,5375=>754,5376=>792,5377=>771,5378=>792,5379=>771,5380=>792,5381=>418,
+5382=>420,5383=>418,5392=>712,5393=>712,5394=>712,5395=>892,5396=>892,5397=>892,5398=>892,5399=>910,
+5400=>872,5401=>910,5402=>872,5403=>910,5404=>872,5405=>1140,5406=>1100,5407=>1140,5408=>1100,5409=>1140,
+5410=>1100,5411=>1140,5412=>1100,5413=>641,5414=>627,5415=>627,5416=>627,5417=>627,5418=>627,5419=>627,
+5420=>627,5421=>627,5422=>627,5423=>844,5424=>781,5425=>816,5426=>818,5427=>816,5428=>818,5429=>844,
+5430=>781,5431=>844,5432=>781,5433=>816,5434=>818,5435=>816,5436=>818,5437=>816,5438=>418,5440=>389,
+5441=>484,5442=>916,5443=>916,5444=>916,5445=>916,5446=>916,5447=>916,5448=>603,5449=>603,5450=>603,
+5451=>603,5452=>603,5453=>603,5454=>834,5455=>754,5456=>418,5458=>729,5459=>684,5460=>684,5461=>684,
+5462=>684,5463=>726,5464=>726,5465=>726,5466=>726,5467=>924,5468=>1007,5469=>508,5470=>732,5471=>732,
+5472=>732,5473=>732,5474=>732,5475=>732,5476=>730,5477=>730,5478=>730,5479=>730,5480=>947,5481=>900,
+5482=>508,5492=>831,5493=>831,5494=>831,5495=>831,5496=>831,5497=>831,5498=>831,5499=>563,5500=>752,
+5501=>484,5502=>1047,5503=>1047,5504=>1047,5505=>1047,5506=>1047,5507=>1047,5508=>1047,5509=>825,5514=>831,
+5515=>831,5516=>831,5517=>831,5518=>1259,5519=>1259,5520=>1259,5521=>1002,5522=>1002,5523=>1259,5524=>1259,
+5525=>700,5526=>1073,5536=>852,5537=>852,5538=>852,5539=>852,5540=>852,5541=>852,5542=>600,5543=>643,
+5544=>643,5545=>643,5546=>643,5547=>643,5548=>643,5549=>643,5550=>418,5551=>628,5598=>770,5601=>767,
+5702=>468,5703=>468,5742=>444,5743=>1047,5744=>1310,5745=>1632,5746=>1632,5747=>1375,5748=>1375,5749=>1632,
+5750=>1632,5760=>477,5761=>493,5762=>712,5763=>931,5764=>1150,5765=>1370,5766=>493,5767=>712,5768=>931,
+5769=>1150,5770=>1370,5771=>498,5772=>718,5773=>938,5774=>1159,5775=>1379,5776=>493,5777=>712,5778=>930,
+5779=>1149,5780=>1370,5781=>498,5782=>752,5783=>789,5784=>1205,5785=>1150,5786=>683,5787=>507,5788=>507,
+7424=>592,7425=>717,7426=>982,7427=>586,7428=>550,7429=>605,7430=>605,7431=>491,7432=>541,7433=>278,
+7434=>395,7435=>579,7436=>583,7437=>754,7438=>650,7439=>612,7440=>550,7441=>684,7442=>684,7443=>684,
+7444=>1023,7446=>612,7447=>612,7448=>524,7449=>602,7450=>602,7451=>583,7452=>574,7453=>737,7454=>948,
+7455=>638,7456=>592,7457=>818,7458=>525,7459=>526,7462=>583,7463=>592,7464=>564,7465=>524,7466=>590,
+7467=>639,7468=>431,7469=>613,7470=>432,7472=>485,7473=>398,7474=>398,7475=>488,7476=>474,7477=>186,
+7478=>186,7479=>413,7480=>351,7481=>543,7482=>471,7483=>471,7484=>496,7485=>439,7486=>380,7487=>438,
+7488=>385,7489=>461,7490=>623,7491=>392,7492=>392,7493=>405,7494=>648,7495=>428,7496=>405,7497=>417,
+7498=>417,7499=>360,7500=>359,7501=>405,7502=>179,7503=>426,7504=>623,7505=>409,7506=>414,7507=>370,
+7508=>414,7509=>414,7510=>428,7511=>295,7512=>405,7513=>470,7514=>623,7515=>417,7517=>402,7518=>373,
+7519=>385,7520=>416,7521=>364,7522=>179,7523=>259,7524=>405,7525=>417,7526=>402,7527=>373,7528=>412,
+7529=>416,7530=>364,7543=>635,7544=>474,7547=>372,7549=>667,7557=>278,7579=>405,7580=>370,7581=>370,
+7582=>414,7583=>360,7584=>296,7585=>233,7586=>405,7587=>405,7588=>261,7589=>250,7590=>261,7591=>261,
+7592=>234,7593=>250,7594=>235,7595=>376,7596=>623,7597=>623,7598=>411,7599=>479,7600=>409,7601=>414,
+7602=>414,7603=>360,7604=>287,7605=>295,7606=>508,7607=>418,7608=>361,7609=>406,7610=>417,7611=>366,
+7612=>437,7613=>366,7614=>392,7615=>414,7620=>0,7621=>0,7622=>0,7623=>0,7624=>0,7625=>0,
+7680=>684,7681=>613,7682=>686,7683=>635,7684=>686,7685=>635,7686=>686,7687=>635,7688=>698,7689=>550,
+7690=>770,7691=>635,7692=>770,7693=>635,7694=>770,7695=>635,7696=>770,7697=>635,7698=>770,7699=>635,
+7700=>632,7701=>615,7702=>632,7703=>615,7704=>632,7705=>615,7706=>632,7707=>615,7708=>632,7709=>615,
+7710=>575,7711=>352,7712=>775,7713=>635,7714=>752,7715=>634,7716=>752,7717=>634,7718=>752,7719=>634,
+7720=>752,7721=>634,7722=>752,7723=>634,7724=>295,7725=>278,7726=>295,7727=>278,7728=>656,7729=>579,
+7730=>656,7731=>579,7732=>656,7733=>579,7734=>557,7735=>288,7736=>557,7737=>288,7738=>557,7739=>278,
+7740=>557,7741=>278,7742=>863,7743=>974,7744=>863,7745=>974,7746=>863,7747=>974,7748=>748,7749=>634,
+7750=>748,7751=>634,7752=>748,7753=>634,7754=>748,7755=>634,7756=>787,7757=>612,7758=>787,7759=>612,
+7760=>787,7761=>612,7762=>787,7763=>612,7764=>603,7765=>635,7766=>603,7767=>635,7768=>695,7769=>411,
+7770=>695,7771=>411,7772=>695,7773=>411,7774=>695,7775=>411,7776=>635,7777=>521,7778=>635,7779=>521,
+7780=>635,7781=>521,7782=>635,7783=>521,7784=>635,7785=>521,7786=>611,7787=>392,7788=>611,7789=>392,
+7790=>611,7791=>392,7792=>611,7793=>392,7794=>732,7795=>634,7796=>732,7797=>634,7798=>732,7799=>634,
+7800=>732,7801=>634,7802=>732,7803=>634,7804=>684,7805=>592,7806=>684,7807=>592,7808=>989,7809=>818,
+7810=>989,7811=>818,7812=>989,7813=>818,7814=>989,7815=>818,7816=>989,7817=>818,7818=>685,7819=>592,
+7820=>685,7821=>592,7822=>611,7823=>592,7824=>685,7825=>525,7826=>685,7827=>525,7828=>685,7829=>525,
+7830=>634,7831=>392,7832=>818,7833=>592,7834=>613,7835=>352,7836=>352,7837=>352,7838=>769,7839=>612,
+7840=>684,7841=>613,7842=>684,7843=>613,7844=>684,7845=>613,7846=>684,7847=>613,7848=>684,7849=>613,
+7850=>684,7851=>613,7852=>684,7853=>613,7854=>684,7855=>613,7856=>684,7857=>613,7858=>684,7859=>613,
+7860=>684,7861=>613,7862=>684,7863=>613,7864=>632,7865=>615,7866=>632,7867=>615,7868=>632,7869=>615,
+7870=>632,7871=>615,7872=>632,7873=>615,7874=>632,7875=>615,7876=>632,7877=>615,7878=>632,7879=>615,
+7880=>295,7881=>278,7882=>295,7883=>278,7884=>787,7885=>612,7886=>787,7887=>612,7888=>787,7889=>612,
+7890=>787,7891=>612,7892=>787,7893=>612,7894=>787,7895=>612,7896=>787,7897=>612,7898=>913,7899=>612,
+7900=>913,7901=>612,7902=>913,7903=>612,7904=>913,7905=>612,7906=>913,7907=>612,7908=>732,7909=>634,
+7910=>732,7911=>634,7912=>858,7913=>634,7914=>858,7915=>634,7916=>858,7917=>634,7918=>858,7919=>634,
+7920=>858,7921=>634,7922=>611,7923=>592,7924=>611,7925=>592,7926=>611,7927=>592,7928=>611,7929=>592,
+7930=>769,7931=>477,7936=>659,7937=>659,7938=>659,7939=>659,7940=>659,7941=>659,7942=>659,7943=>659,
+7944=>684,7945=>684,7946=>877,7947=>877,7948=>769,7949=>801,7950=>708,7951=>743,7952=>541,7953=>541,
+7954=>541,7955=>541,7956=>541,7957=>541,7960=>711,7961=>711,7962=>966,7963=>975,7964=>898,7965=>928,
+7968=>634,7969=>634,7970=>634,7971=>634,7972=>634,7973=>634,7974=>634,7975=>634,7976=>837,7977=>835,
+7978=>1086,7979=>1089,7980=>1027,7981=>1051,7982=>934,7983=>947,7984=>338,7985=>338,7986=>338,7987=>338,
+7988=>338,7989=>338,7990=>338,7991=>338,7992=>380,7993=>374,7994=>635,7995=>635,7996=>570,7997=>600,
+7998=>489,7999=>493,8000=>612,8001=>612,8002=>612,8003=>612,8004=>612,8005=>612,8008=>804,8009=>848,
+8010=>1095,8011=>1100,8012=>938,8013=>970,8016=>579,8017=>579,8018=>579,8019=>579,8020=>579,8021=>579,
+8022=>579,8023=>579,8025=>784,8027=>998,8029=>1012,8031=>897,8032=>837,8033=>837,8034=>837,8035=>837,
+8036=>837,8037=>837,8038=>837,8039=>837,8040=>802,8041=>843,8042=>1089,8043=>1095,8044=>946,8045=>972,
+8046=>921,8047=>952,8048=>659,8049=>659,8050=>541,8051=>548,8052=>634,8053=>654,8054=>338,8055=>338,
+8056=>612,8057=>612,8058=>579,8059=>579,8060=>837,8061=>837,8064=>659,8065=>659,8066=>659,8067=>659,
+8068=>659,8069=>659,8070=>659,8071=>659,8072=>684,8073=>684,8074=>877,8075=>877,8076=>769,8077=>801,
+8078=>708,8079=>743,8080=>634,8081=>634,8082=>634,8083=>634,8084=>634,8085=>634,8086=>634,8087=>634,
+8088=>837,8089=>835,8090=>1086,8091=>1089,8092=>1027,8093=>1051,8094=>934,8095=>947,8096=>837,8097=>837,
+8098=>837,8099=>837,8100=>837,8101=>837,8102=>837,8103=>837,8104=>802,8105=>843,8106=>1089,8107=>1095,
+8108=>946,8109=>972,8110=>921,8111=>952,8112=>659,8113=>659,8114=>659,8115=>659,8116=>659,8118=>659,
+8119=>659,8120=>684,8121=>684,8122=>716,8123=>692,8124=>684,8125=>500,8126=>500,8127=>500,8128=>500,
+8129=>500,8130=>634,8131=>634,8132=>654,8134=>634,8135=>634,8136=>805,8137=>746,8138=>931,8139=>871,
+8140=>752,8141=>500,8142=>500,8143=>500,8144=>338,8145=>338,8146=>338,8147=>338,8150=>338,8151=>338,
+8152=>295,8153=>295,8154=>475,8155=>408,8157=>500,8158=>500,8159=>500,8160=>579,8161=>579,8162=>579,
+8163=>579,8164=>635,8165=>635,8166=>579,8167=>579,8168=>611,8169=>611,8170=>845,8171=>825,8172=>685,
+8173=>500,8174=>500,8175=>500,8178=>837,8179=>837,8180=>837,8182=>837,8183=>837,8184=>941,8185=>813,
+8186=>922,8187=>826,8188=>764,8189=>500,8190=>500,8192=>500,8193=>1000,8194=>500,8195=>1000,8196=>330,
+8197=>250,8198=>167,8199=>636,8200=>318,8201=>200,8202=>100,8203=>0,8204=>0,8205=>0,8206=>0,
+8207=>0,8208=>361,8209=>361,8210=>636,8213=>1000,8214=>500,8215=>500,8219=>318,8223=>518,8227=>590,
+8228=>334,8229=>667,8231=>318,8232=>0,8233=>0,8234=>0,8235=>0,8236=>0,8237=>0,8238=>0,
+8239=>200,8241=>1735,8242=>227,8243=>374,8244=>520,8245=>227,8246=>374,8247=>520,8248=>339,8251=>838,
+8252=>485,8253=>531,8254=>500,8255=>804,8256=>804,8257=>250,8258=>1000,8259=>500,8260=>167,8261=>390,
+8262=>390,8263=>922,8264=>733,8265=>733,8266=>497,8267=>636,8268=>500,8269=>500,8270=>500,8271=>337,
+8272=>804,8273=>500,8274=>450,8275=>1000,8276=>804,8277=>838,8278=>586,8279=>663,8280=>838,8281=>838,
+8282=>318,8283=>797,8284=>838,8285=>318,8286=>318,8287=>222,8288=>0,8289=>0,8290=>0,8291=>0,
+8292=>0,8298=>0,8299=>0,8300=>0,8301=>0,8302=>0,8303=>0,8304=>401,8305=>179,8308=>401,
+8309=>401,8310=>401,8311=>401,8312=>401,8313=>401,8314=>528,8315=>528,8316=>528,8317=>246,8318=>246,
+8319=>398,8320=>401,8321=>401,8322=>401,8323=>401,8324=>401,8325=>401,8326=>401,8327=>401,8328=>401,
+8329=>401,8330=>528,8331=>528,8332=>528,8333=>246,8334=>246,8336=>392,8337=>417,8338=>414,8339=>444,
+8340=>417,8352=>877,8353=>636,8354=>636,8355=>636,8356=>636,8357=>974,8358=>748,8359=>1272,8360=>1074,
+8361=>989,8362=>784,8363=>636,8365=>636,8366=>636,8367=>1272,8368=>636,8369=>636,8370=>636,8371=>636,
+8372=>774,8373=>636,8376=>636,8377=>636,8400=>0,8401=>0,8406=>0,8407=>0,8411=>0,8412=>0,
+8417=>0,8448=>1019,8449=>1019,8450=>698,8451=>1123,8452=>642,8453=>1019,8454=>1067,8455=>614,8456=>698,
+8457=>952,8459=>988,8460=>754,8461=>850,8462=>634,8463=>634,8464=>470,8465=>697,8466=>720,8467=>413,
+8468=>818,8469=>801,8470=>1040,8471=>1000,8472=>697,8473=>701,8474=>787,8475=>798,8476=>814,8477=>792,
+8478=>896,8479=>684,8480=>1020,8481=>1074,8483=>684,8484=>745,8485=>578,8486=>764,8487=>764,8488=>616,
+8489=>338,8490=>656,8491=>684,8492=>786,8493=>703,8494=>854,8495=>592,8496=>605,8497=>786,8498=>575,
+8499=>1069,8500=>462,8501=>745,8502=>674,8503=>466,8504=>645,8505=>380,8506=>926,8507=>1194,8508=>702,
+8509=>728,8510=>654,8511=>849,8512=>811,8513=>775,8514=>557,8515=>557,8516=>611,8517=>819,8518=>708,
+8519=>615,8520=>351,8521=>351,8523=>780,8526=>526,8528=>969,8529=>969,8530=>1370,8531=>969,8532=>969,
+8533=>969,8534=>969,8535=>969,8536=>969,8537=>969,8538=>969,8539=>969,8540=>969,8541=>969,8542=>969,
+8543=>568,8544=>295,8545=>492,8546=>689,8547=>923,8548=>684,8549=>922,8550=>1120,8551=>1317,8552=>917,
+8553=>685,8554=>933,8555=>1131,8556=>557,8557=>698,8558=>770,8559=>863,8560=>278,8561=>458,8562=>637,
+8563=>812,8564=>592,8565=>811,8566=>991,8567=>1170,8568=>819,8569=>592,8570=>822,8571=>1002,8572=>278,
+8573=>550,8574=>635,8575=>974,8576=>1245,8577=>770,8578=>1245,8579=>703,8580=>549,8581=>698,8585=>969,
+8592=>838,8593=>838,8594=>838,8595=>838,8596=>838,8597=>838,8598=>838,8599=>838,8600=>838,8601=>838,
+8602=>838,8603=>838,8604=>838,8605=>838,8606=>838,8607=>838,8608=>838,8609=>838,8610=>838,8611=>838,
+8612=>838,8613=>838,8614=>838,8615=>838,8616=>838,8617=>838,8618=>838,8619=>838,8620=>838,8621=>838,
+8622=>838,8623=>838,8624=>838,8625=>838,8626=>838,8627=>838,8628=>838,8629=>838,8630=>838,8631=>838,
+8632=>838,8633=>838,8634=>838,8635=>838,8636=>838,8637=>838,8638=>838,8639=>838,8640=>838,8641=>838,
+8642=>838,8643=>838,8644=>838,8645=>838,8646=>838,8647=>838,8648=>838,8649=>838,8650=>838,8651=>838,
+8652=>838,8653=>838,8654=>838,8655=>838,8656=>838,8657=>838,8658=>838,8659=>838,8660=>838,8661=>838,
+8662=>838,8663=>838,8664=>838,8665=>838,8666=>838,8667=>838,8668=>838,8669=>838,8670=>838,8671=>838,
+8672=>838,8673=>838,8674=>838,8675=>838,8676=>838,8677=>838,8678=>838,8679=>838,8680=>838,8681=>838,
+8682=>838,8683=>838,8684=>838,8685=>838,8686=>838,8687=>838,8688=>838,8689=>838,8690=>838,8691=>838,
+8692=>838,8693=>838,8694=>838,8695=>838,8696=>838,8697=>838,8698=>838,8699=>838,8700=>838,8701=>838,
+8702=>838,8703=>838,8704=>684,8705=>636,8706=>517,8707=>632,8708=>632,8709=>871,8710=>669,8711=>669,
+8712=>871,8713=>871,8714=>718,8715=>871,8716=>871,8717=>718,8718=>636,8719=>757,8720=>757,8721=>674,
+8722=>838,8723=>838,8724=>838,8725=>337,8726=>637,8727=>838,8728=>626,8729=>626,8730=>637,8731=>637,
+8732=>637,8733=>714,8734=>833,8735=>838,8736=>896,8737=>896,8738=>838,8739=>500,8740=>500,8741=>500,
+8742=>500,8743=>732,8744=>732,8745=>732,8746=>732,8747=>521,8748=>789,8749=>1057,8750=>521,8751=>789,
+8752=>1057,8753=>521,8754=>521,8755=>521,8756=>636,8757=>636,8758=>260,8759=>636,8760=>838,8761=>838,
+8762=>838,8763=>838,8764=>838,8765=>838,8766=>838,8767=>838,8768=>375,8769=>838,8770=>838,8771=>838,
+8772=>838,8773=>838,8774=>838,8775=>838,8776=>838,8777=>838,8778=>838,8779=>838,8780=>838,8781=>838,
+8782=>838,8783=>838,8784=>838,8785=>838,8786=>839,8787=>839,8788=>1000,8789=>1000,8790=>838,8791=>838,
+8792=>838,8793=>838,8794=>838,8795=>838,8796=>838,8797=>838,8798=>838,8799=>838,8800=>838,8801=>838,
+8802=>838,8803=>838,8804=>838,8805=>838,8806=>838,8807=>838,8808=>838,8809=>838,8810=>1047,8811=>1047,
+8812=>464,8813=>838,8814=>838,8815=>838,8816=>838,8817=>838,8818=>838,8819=>838,8820=>838,8821=>838,
+8822=>838,8823=>838,8824=>838,8825=>838,8826=>838,8827=>838,8828=>838,8829=>838,8830=>838,8831=>838,
+8832=>838,8833=>838,8834=>838,8835=>838,8836=>838,8837=>838,8838=>838,8839=>838,8840=>838,8841=>838,
+8842=>838,8843=>838,8844=>732,8845=>732,8846=>732,8847=>838,8848=>838,8849=>838,8850=>838,8851=>780,
+8852=>780,8853=>838,8854=>838,8855=>838,8856=>838,8857=>838,8858=>838,8859=>838,8860=>838,8861=>838,
+8862=>838,8863=>838,8864=>838,8865=>838,8866=>871,8867=>871,8868=>871,8869=>871,8870=>521,8871=>521,
+8872=>871,8873=>871,8874=>871,8875=>871,8876=>871,8877=>871,8878=>871,8879=>871,8880=>838,8881=>838,
+8882=>838,8883=>838,8884=>838,8885=>838,8886=>1000,8887=>1000,8888=>838,8889=>838,8890=>521,8891=>732,
+8892=>732,8893=>732,8894=>838,8895=>838,8896=>820,8897=>820,8898=>820,8899=>820,8900=>494,8901=>318,
+8902=>626,8903=>838,8904=>1000,8905=>1000,8906=>1000,8907=>1000,8908=>1000,8909=>838,8910=>732,8911=>732,
+8912=>838,8913=>838,8914=>838,8915=>838,8916=>838,8917=>838,8918=>838,8919=>838,8920=>1422,8921=>1422,
+8922=>838,8923=>838,8924=>838,8925=>838,8926=>838,8927=>838,8928=>838,8929=>838,8930=>838,8931=>838,
+8932=>838,8933=>838,8934=>838,8935=>838,8936=>838,8937=>838,8938=>838,8939=>838,8940=>838,8941=>838,
+8942=>1000,8943=>1000,8944=>1000,8945=>1000,8946=>1000,8947=>871,8948=>718,8949=>871,8950=>871,8951=>718,
+8952=>871,8953=>871,8954=>1000,8955=>871,8956=>718,8957=>871,8958=>718,8959=>871,8960=>602,8961=>602,
+8962=>635,8963=>838,8964=>838,8965=>838,8966=>838,8967=>488,8968=>390,8969=>390,8970=>390,8971=>390,
+8972=>809,8973=>809,8974=>809,8975=>809,8976=>838,8977=>513,8984=>1000,8985=>838,8988=>469,8989=>469,
+8990=>469,8991=>469,8992=>521,8993=>521,8996=>1152,8997=>1152,8998=>1414,8999=>1152,9000=>1443,9003=>1414,
+9004=>873,9075=>338,9076=>635,9077=>837,9082=>659,9085=>757,9095=>1152,9108=>873,9115=>500,9116=>500,
+9117=>500,9118=>500,9119=>500,9120=>500,9121=>500,9122=>500,9123=>500,9124=>500,9125=>500,9126=>500,
+9127=>750,9128=>750,9129=>750,9130=>750,9131=>750,9132=>750,9133=>750,9134=>521,9166=>838,9167=>945,
+9187=>873,9189=>769,9192=>636,9250=>635,9251=>635,9312=>896,9313=>896,9314=>896,9315=>896,9316=>896,
+9317=>896,9318=>896,9319=>896,9320=>896,9321=>896,9472=>602,9473=>602,9474=>602,9475=>602,9476=>602,
+9477=>602,9478=>602,9479=>602,9480=>602,9481=>602,9482=>602,9483=>602,9484=>602,9485=>602,9486=>602,
+9487=>602,9488=>602,9489=>602,9490=>602,9491=>602,9492=>602,9493=>602,9494=>602,9495=>602,9496=>602,
+9497=>602,9498=>602,9499=>602,9500=>602,9501=>602,9502=>602,9503=>602,9504=>602,9505=>602,9506=>602,
+9507=>602,9508=>602,9509=>602,9510=>602,9511=>602,9512=>602,9513=>602,9514=>602,9515=>602,9516=>602,
+9517=>602,9518=>602,9519=>602,9520=>602,9521=>602,9522=>602,9523=>602,9524=>602,9525=>602,9526=>602,
+9527=>602,9528=>602,9529=>602,9530=>602,9531=>602,9532=>602,9533=>602,9534=>602,9535=>602,9536=>602,
+9537=>602,9538=>602,9539=>602,9540=>602,9541=>602,9542=>602,9543=>602,9544=>602,9545=>602,9546=>602,
+9547=>602,9548=>602,9549=>602,9550=>602,9551=>602,9552=>602,9553=>602,9554=>602,9555=>602,9556=>602,
+9557=>602,9558=>602,9559=>602,9560=>602,9561=>602,9562=>602,9563=>602,9564=>602,9565=>602,9566=>602,
+9567=>602,9568=>602,9569=>602,9570=>602,9571=>602,9572=>602,9573=>602,9574=>602,9575=>602,9576=>602,
+9577=>602,9578=>602,9579=>602,9580=>602,9581=>602,9582=>602,9583=>602,9584=>602,9585=>602,9586=>602,
+9587=>602,9588=>602,9589=>602,9590=>602,9591=>602,9592=>602,9593=>602,9594=>602,9595=>602,9596=>602,
+9597=>602,9598=>602,9599=>602,9600=>769,9601=>769,9602=>769,9603=>769,9604=>769,9605=>769,9606=>769,
+9607=>769,9608=>769,9609=>769,9610=>769,9611=>769,9612=>769,9613=>769,9614=>769,9615=>769,9616=>769,
+9617=>769,9618=>769,9619=>769,9620=>769,9621=>769,9622=>769,9623=>769,9624=>769,9625=>769,9626=>769,
+9627=>769,9628=>769,9629=>769,9630=>769,9631=>769,9632=>945,9633=>945,9634=>945,9635=>945,9636=>945,
+9637=>945,9638=>945,9639=>945,9640=>945,9641=>945,9642=>678,9643=>678,9644=>945,9645=>945,9646=>550,
+9647=>550,9648=>769,9649=>769,9650=>769,9651=>769,9652=>502,9653=>502,9654=>769,9655=>769,9656=>502,
+9657=>502,9658=>769,9659=>769,9660=>769,9661=>769,9662=>502,9663=>502,9664=>769,9665=>769,9666=>502,
+9667=>502,9668=>769,9669=>769,9670=>769,9671=>769,9672=>769,9673=>873,9674=>494,9675=>873,9676=>873,
+9677=>873,9678=>873,9679=>873,9680=>873,9681=>873,9682=>873,9683=>873,9684=>873,9685=>873,9686=>527,
+9687=>527,9688=>791,9689=>970,9690=>970,9691=>970,9692=>387,9693=>387,9694=>387,9695=>387,9696=>873,
+9697=>873,9698=>769,9699=>769,9700=>769,9701=>769,9702=>590,9703=>945,9704=>945,9705=>945,9706=>945,
+9707=>945,9708=>769,9709=>769,9710=>769,9711=>1119,9712=>945,9713=>945,9714=>945,9715=>945,9716=>873,
+9717=>873,9718=>873,9719=>873,9720=>769,9721=>769,9722=>769,9723=>830,9724=>830,9725=>732,9726=>732,
+9727=>769,9728=>896,9729=>1000,9730=>896,9731=>896,9732=>896,9733=>896,9734=>896,9735=>573,9736=>896,
+9737=>896,9738=>888,9739=>888,9740=>671,9741=>1013,9742=>1246,9743=>1250,9744=>896,9745=>896,9746=>896,
+9747=>532,9748=>896,9749=>896,9750=>896,9751=>896,9752=>896,9753=>896,9754=>896,9755=>896,9756=>896,
+9757=>609,9758=>896,9759=>609,9760=>896,9761=>896,9762=>896,9763=>896,9764=>669,9765=>746,9766=>649,
+9767=>784,9768=>545,9769=>896,9770=>896,9771=>896,9772=>710,9773=>896,9774=>896,9775=>896,9776=>896,
+9777=>896,9778=>896,9779=>896,9780=>896,9781=>896,9782=>896,9783=>896,9784=>896,9785=>896,9786=>896,
+9787=>896,9788=>896,9789=>896,9790=>896,9791=>614,9792=>732,9793=>732,9794=>896,9795=>896,9796=>896,
+9797=>896,9798=>896,9799=>896,9800=>896,9801=>896,9802=>896,9803=>896,9804=>896,9805=>896,9806=>896,
+9807=>896,9808=>896,9809=>896,9810=>896,9811=>896,9812=>896,9813=>896,9814=>896,9815=>896,9816=>896,
+9817=>896,9818=>896,9819=>896,9820=>896,9821=>896,9822=>896,9823=>896,9824=>896,9825=>896,9826=>896,
+9827=>896,9828=>896,9829=>896,9830=>896,9831=>896,9832=>896,9833=>472,9834=>638,9835=>896,9836=>896,
+9837=>472,9838=>357,9839=>484,9840=>748,9841=>766,9842=>896,9843=>896,9844=>896,9845=>896,9846=>896,
+9847=>896,9848=>896,9849=>896,9850=>896,9851=>896,9852=>896,9853=>896,9854=>896,9855=>896,9856=>869,
+9857=>869,9858=>869,9859=>869,9860=>869,9861=>869,9862=>896,9863=>896,9864=>896,9865=>896,9866=>896,
+9867=>896,9868=>896,9869=>896,9870=>896,9871=>896,9872=>896,9873=>896,9874=>896,9875=>896,9876=>896,
+9877=>541,9878=>896,9879=>896,9880=>896,9881=>896,9882=>896,9883=>896,9884=>896,9888=>896,9889=>702,
+9890=>1004,9891=>1089,9892=>1175,9893=>903,9894=>838,9895=>838,9896=>838,9897=>838,9898=>838,9899=>838,
+9900=>838,9901=>838,9902=>838,9903=>838,9904=>844,9905=>838,9906=>732,9907=>732,9908=>732,9909=>732,
+9910=>850,9911=>732,9912=>732,9920=>838,9921=>838,9922=>838,9923=>838,9985=>838,9986=>838,9987=>838,
+9988=>838,9990=>838,9991=>838,9992=>838,9993=>838,9996=>838,9997=>838,9998=>838,9999=>838,10000=>838,
+10001=>838,10002=>838,10003=>838,10004=>838,10005=>838,10006=>838,10007=>838,10008=>838,10009=>838,10010=>838,
+10011=>838,10012=>838,10013=>838,10014=>838,10015=>838,10016=>838,10017=>838,10018=>838,10019=>838,10020=>838,
+10021=>838,10022=>838,10023=>838,10025=>838,10026=>838,10027=>838,10028=>838,10029=>838,10030=>838,10031=>838,
+10032=>838,10033=>838,10034=>838,10035=>838,10036=>838,10037=>838,10038=>838,10039=>838,10040=>838,10041=>838,
+10042=>838,10043=>838,10044=>838,10045=>838,10046=>838,10047=>838,10048=>838,10049=>838,10050=>838,10051=>838,
+10052=>838,10053=>838,10054=>838,10055=>838,10056=>838,10057=>838,10058=>838,10059=>838,10061=>896,10063=>896,
+10064=>896,10065=>896,10066=>896,10070=>896,10072=>838,10073=>838,10074=>838,10075=>322,10076=>322,10077=>538,
+10078=>538,10081=>838,10082=>838,10083=>838,10084=>838,10085=>838,10086=>838,10087=>838,10088=>838,10089=>838,
+10090=>838,10091=>838,10092=>838,10093=>838,10094=>838,10095=>838,10096=>838,10097=>838,10098=>838,10099=>838,
+10100=>838,10101=>838,10102=>896,10103=>896,10104=>896,10105=>896,10106=>896,10107=>896,10108=>896,10109=>896,
+10110=>896,10111=>896,10112=>838,10113=>838,10114=>838,10115=>838,10116=>838,10117=>838,10118=>838,10119=>838,
+10120=>838,10121=>838,10122=>838,10123=>838,10124=>838,10125=>838,10126=>838,10127=>838,10128=>838,10129=>838,
+10130=>838,10131=>838,10132=>838,10136=>838,10137=>838,10138=>838,10139=>838,10140=>838,10141=>838,10142=>838,
+10143=>838,10144=>838,10145=>838,10146=>838,10147=>838,10148=>838,10149=>838,10150=>838,10151=>838,10152=>838,
+10153=>838,10154=>838,10155=>838,10156=>838,10157=>838,10158=>838,10159=>838,10161=>838,10162=>838,10163=>838,
+10164=>838,10165=>838,10166=>838,10167=>838,10168=>838,10169=>838,10170=>838,10171=>838,10172=>838,10173=>838,
+10174=>838,10181=>390,10182=>390,10208=>494,10214=>495,10215=>495,10216=>390,10217=>390,10218=>556,10219=>556,
+10224=>838,10225=>838,10226=>838,10227=>838,10228=>1157,10229=>1434,10230=>1434,10231=>1434,10232=>1434,10233=>1434,
+10234=>1434,10235=>1434,10236=>1434,10237=>1434,10238=>1434,10239=>1434,10240=>732,10241=>732,10242=>732,10243=>732,
+10244=>732,10245=>732,10246=>732,10247=>732,10248=>732,10249=>732,10250=>732,10251=>732,10252=>732,10253=>732,
+10254=>732,10255=>732,10256=>732,10257=>732,10258=>732,10259=>732,10260=>732,10261=>732,10262=>732,10263=>732,
+10264=>732,10265=>732,10266=>732,10267=>732,10268=>732,10269=>732,10270=>732,10271=>732,10272=>732,10273=>732,
+10274=>732,10275=>732,10276=>732,10277=>732,10278=>732,10279=>732,10280=>732,10281=>732,10282=>732,10283=>732,
+10284=>732,10285=>732,10286=>732,10287=>732,10288=>732,10289=>732,10290=>732,10291=>732,10292=>732,10293=>732,
+10294=>732,10295=>732,10296=>732,10297=>732,10298=>732,10299=>732,10300=>732,10301=>732,10302=>732,10303=>732,
+10304=>732,10305=>732,10306=>732,10307=>732,10308=>732,10309=>732,10310=>732,10311=>732,10312=>732,10313=>732,
+10314=>732,10315=>732,10316=>732,10317=>732,10318=>732,10319=>732,10320=>732,10321=>732,10322=>732,10323=>732,
+10324=>732,10325=>732,10326=>732,10327=>732,10328=>732,10329=>732,10330=>732,10331=>732,10332=>732,10333=>732,
+10334=>732,10335=>732,10336=>732,10337=>732,10338=>732,10339=>732,10340=>732,10341=>732,10342=>732,10343=>732,
+10344=>732,10345=>732,10346=>732,10347=>732,10348=>732,10349=>732,10350=>732,10351=>732,10352=>732,10353=>732,
+10354=>732,10355=>732,10356=>732,10357=>732,10358=>732,10359=>732,10360=>732,10361=>732,10362=>732,10363=>732,
+10364=>732,10365=>732,10366=>732,10367=>732,10368=>732,10369=>732,10370=>732,10371=>732,10372=>732,10373=>732,
+10374=>732,10375=>732,10376=>732,10377=>732,10378=>732,10379=>732,10380=>732,10381=>732,10382=>732,10383=>732,
+10384=>732,10385=>732,10386=>732,10387=>732,10388=>732,10389=>732,10390=>732,10391=>732,10392=>732,10393=>732,
+10394=>732,10395=>732,10396=>732,10397=>732,10398=>732,10399=>732,10400=>732,10401=>732,10402=>732,10403=>732,
+10404=>732,10405=>732,10406=>732,10407=>732,10408=>732,10409=>732,10410=>732,10411=>732,10412=>732,10413=>732,
+10414=>732,10415=>732,10416=>732,10417=>732,10418=>732,10419=>732,10420=>732,10421=>732,10422=>732,10423=>732,
+10424=>732,10425=>732,10426=>732,10427=>732,10428=>732,10429=>732,10430=>732,10431=>732,10432=>732,10433=>732,
+10434=>732,10435=>732,10436=>732,10437=>732,10438=>732,10439=>732,10440=>732,10441=>732,10442=>732,10443=>732,
+10444=>732,10445=>732,10446=>732,10447=>732,10448=>732,10449=>732,10450=>732,10451=>732,10452=>732,10453=>732,
+10454=>732,10455=>732,10456=>732,10457=>732,10458=>732,10459=>732,10460=>732,10461=>732,10462=>732,10463=>732,
+10464=>732,10465=>732,10466=>732,10467=>732,10468=>732,10469=>732,10470=>732,10471=>732,10472=>732,10473=>732,
+10474=>732,10475=>732,10476=>732,10477=>732,10478=>732,10479=>732,10480=>732,10481=>732,10482=>732,10483=>732,
+10484=>732,10485=>732,10486=>732,10487=>732,10488=>732,10489=>732,10490=>732,10491=>732,10492=>732,10493=>732,
+10494=>732,10495=>732,10502=>838,10503=>838,10506=>838,10507=>838,10560=>683,10561=>683,10627=>734,10628=>734,
+10702=>838,10703=>1000,10704=>1000,10705=>1000,10706=>1000,10707=>1000,10708=>1000,10709=>1000,10731=>494,10746=>838,
+10747=>838,10752=>1000,10753=>1000,10754=>1000,10764=>1325,10765=>521,10766=>521,10767=>521,10768=>521,10769=>521,
+10770=>521,10771=>521,10772=>521,10773=>521,10774=>521,10775=>521,10776=>521,10777=>521,10778=>521,10779=>521,
+10780=>521,10799=>838,10877=>838,10878=>838,10879=>838,10880=>838,10881=>838,10882=>838,10883=>838,10884=>838,
+10885=>838,10886=>838,10887=>838,10888=>838,10889=>838,10890=>838,10891=>838,10892=>838,10893=>838,10894=>838,
+10895=>838,10896=>838,10897=>838,10898=>838,10899=>838,10900=>838,10901=>838,10902=>838,10903=>838,10904=>838,
+10905=>838,10906=>838,10907=>838,10908=>838,10909=>838,10910=>838,10911=>838,10912=>838,10926=>838,10927=>838,
+10928=>838,10929=>838,10930=>838,10931=>838,10932=>838,10933=>838,10934=>838,10935=>838,10936=>838,10937=>838,
+10938=>838,11001=>838,11002=>838,11008=>838,11009=>838,11010=>838,11011=>838,11012=>838,11013=>838,11014=>838,
+11015=>838,11016=>838,11017=>838,11018=>838,11019=>838,11020=>838,11021=>838,11022=>836,11023=>836,11024=>836,
+11025=>836,11026=>945,11027=>945,11028=>945,11029=>945,11030=>769,11031=>769,11032=>769,11033=>769,11034=>945,
+11039=>869,11040=>869,11041=>873,11042=>873,11043=>873,11044=>1119,11091=>869,11092=>869,11360=>557,11361=>278,
+11362=>557,11363=>603,11364=>695,11365=>613,11366=>392,11367=>752,11368=>634,11369=>656,11370=>579,11371=>685,
+11372=>525,11373=>781,11374=>863,11375=>684,11376=>781,11377=>734,11378=>1128,11379=>961,11380=>592,11381=>654,
+11382=>568,11383=>660,11385=>414,11386=>612,11387=>491,11388=>175,11389=>431,11390=>635,11391=>685,11568=>646,
+11569=>888,11570=>888,11571=>682,11572=>684,11573=>635,11574=>562,11575=>684,11576=>684,11577=>632,11578=>632,
+11579=>683,11580=>875,11581=>685,11582=>491,11583=>685,11584=>888,11585=>888,11586=>300,11587=>627,11588=>752,
+11589=>656,11590=>527,11591=>685,11592=>645,11593=>632,11594=>502,11595=>953,11596=>778,11597=>748,11598=>621,
+11599=>295,11600=>778,11601=>295,11602=>752,11603=>633,11604=>888,11605=>888,11606=>752,11607=>320,11608=>749,
+11609=>888,11610=>888,11611=>698,11612=>768,11613=>685,11614=>698,11615=>622,11616=>684,11617=>752,11618=>632,
+11619=>788,11620=>567,11621=>788,11631=>515,11800=>531,11810=>390,11811=>390,11812=>390,11813=>390,11822=>531,
+19904=>896,19905=>896,19906=>896,19907=>896,19908=>896,19909=>896,19910=>896,19911=>896,19912=>896,19913=>896,
+19914=>896,19915=>896,19916=>896,19917=>896,19918=>896,19919=>896,19920=>896,19921=>896,19922=>896,19923=>896,
+19924=>896,19925=>896,19926=>896,19927=>896,19928=>896,19929=>896,19930=>896,19931=>896,19932=>896,19933=>896,
+19934=>896,19935=>896,19936=>896,19937=>896,19938=>896,19939=>896,19940=>896,19941=>896,19942=>896,19943=>896,
+19944=>896,19945=>896,19946=>896,19947=>896,19948=>896,19949=>896,19950=>896,19951=>896,19952=>896,19953=>896,
+19954=>896,19955=>896,19956=>896,19957=>896,19958=>896,19959=>896,19960=>896,19961=>896,19962=>896,19963=>896,
+19964=>896,19965=>896,19966=>896,19967=>896,42564=>635,42565=>521,42566=>354,42567=>338,42572=>1180,42573=>1028,
+42576=>1029,42577=>906,42580=>1080,42581=>842,42582=>977,42583=>843,42594=>1062,42595=>912,42596=>1066,42597=>901,
+42598=>1178,42599=>1008,42600=>787,42601=>612,42602=>855,42603=>712,42604=>1358,42605=>1019,42606=>879,42634=>782,
+42635=>685,42636=>611,42637=>583,42644=>686,42645=>634,42760=>493,42761=>493,42762=>493,42763=>493,42764=>493,
+42765=>493,42766=>493,42767=>493,42768=>493,42769=>493,42770=>493,42771=>493,42772=>493,42773=>493,42774=>493,
+42779=>369,42780=>369,42781=>252,42782=>252,42783=>252,42786=>385,42787=>356,42788=>472,42789=>472,42790=>752,
+42791=>634,42792=>878,42793=>709,42794=>614,42795=>541,42800=>491,42801=>521,42802=>1250,42803=>985,42804=>1203,
+42805=>990,42806=>1142,42807=>981,42808=>971,42809=>818,42810=>971,42811=>818,42812=>959,42813=>818,42814=>703,
+42815=>549,42822=>680,42823=>392,42824=>582,42825=>427,42826=>807,42827=>704,42830=>1358,42831=>1019,42832=>603,
+42833=>635,42834=>734,42835=>774,42838=>787,42839=>635,42852=>605,42853=>635,42854=>605,42855=>635,42880=>557,
+42881=>278,42882=>735,42883=>634,42889=>337,42890=>376,42891=>401,42892=>275,42893=>686,43003=>575,43004=>603,
+43005=>863,43006=>295,43007=>1199,61184=>213,61185=>238,61186=>257,61187=>264,61188=>267,61189=>238,61190=>213,
+61191=>238,61192=>257,61193=>264,61194=>257,61195=>238,61196=>213,61197=>238,61198=>257,61199=>264,61200=>257,
+61201=>238,61202=>213,61203=>238,61204=>267,61205=>264,61206=>257,61207=>238,61208=>213,61209=>275,61440=>977,
+61441=>977,63173=>612,64256=>689,64257=>630,64258=>630,64259=>967,64260=>967,64261=>686,64262=>861,64275=>1202,
+64276=>1202,64277=>1196,64278=>1186,64279=>1529,64285=>272,64286=>0,64287=>471,64288=>636,64289=>856,64290=>774,
+64291=>906,64292=>771,64293=>843,64294=>855,64295=>807,64296=>875,64297=>838,64298=>808,64299=>808,64300=>808,
+64301=>808,64302=>629,64303=>629,64304=>629,64305=>608,64306=>448,64307=>594,64308=>640,64309=>272,64310=>374,
+64312=>648,64313=>336,64314=>592,64315=>556,64316=>599,64318=>659,64320=>441,64321=>700,64323=>640,64324=>604,
+64326=>581,64327=>663,64328=>592,64329=>808,64330=>657,64331=>272,64332=>608,64333=>556,64334=>604,64335=>540,
+64338=>941,64339=>982,64340=>278,64341=>302,64342=>941,64343=>982,64344=>278,64345=>302,64346=>941,64347=>982,
+64348=>278,64349=>302,64350=>941,64351=>982,64352=>278,64353=>302,64354=>941,64355=>982,64356=>278,64357=>302,
+64358=>941,64359=>982,64360=>278,64361=>302,64362=>1037,64363=>1035,64364=>478,64365=>506,64366=>1037,64367=>1035,
+64368=>478,64369=>506,64370=>646,64371=>646,64372=>618,64373=>646,64374=>646,64375=>646,64376=>618,64377=>646,
+64378=>646,64379=>646,64380=>618,64381=>646,64382=>646,64383=>646,64384=>618,64385=>646,64386=>445,64387=>525,
+64388=>445,64389=>525,64390=>445,64391=>525,64392=>445,64393=>525,64394=>483,64395=>552,64396=>483,64397=>552,
+64398=>895,64399=>895,64400=>476,64401=>552,64402=>895,64403=>895,64404=>476,64405=>552,64406=>895,64407=>895,
+64408=>476,64409=>552,64410=>895,64411=>895,64412=>476,64413=>552,64414=>734,64415=>761,64416=>734,64417=>761,
+64418=>278,64419=>302,64426=>698,64427=>632,64428=>527,64429=>461,64467=>824,64468=>843,64469=>476,64470=>552,
+64473=>483,64474=>517,64488=>278,64489=>302,64508=>783,64509=>833,64510=>278,64511=>302,65024=>0,65025=>0,
+65026=>0,65027=>0,65028=>0,65029=>0,65030=>0,65031=>0,65032=>0,65033=>0,65034=>0,65035=>0,
+65036=>0,65037=>0,65038=>0,65039=>0,65056=>0,65057=>0,65058=>0,65059=>0,65136=>293,65137=>293,
+65138=>293,65139=>262,65140=>293,65142=>293,65143=>293,65144=>293,65145=>293,65146=>293,65147=>293,65148=>293,
+65149=>293,65150=>293,65151=>293,65152=>470,65153=>278,65154=>305,65155=>278,65156=>305,65157=>483,65158=>517,
+65159=>278,65160=>305,65161=>783,65162=>833,65163=>278,65164=>302,65165=>278,65166=>305,65167=>941,65168=>982,
+65169=>278,65170=>302,65171=>524,65172=>536,65173=>941,65174=>982,65175=>278,65176=>302,65177=>941,65178=>982,
+65179=>278,65180=>302,65181=>646,65182=>646,65183=>618,65184=>646,65185=>646,65186=>646,65187=>618,65188=>646,
+65189=>646,65190=>646,65191=>618,65192=>646,65193=>445,65194=>525,65195=>445,65196=>525,65197=>483,65198=>552,
+65199=>483,65200=>552,65201=>1221,65202=>1275,65203=>838,65204=>892,65205=>1221,65206=>1275,65207=>838,65208=>892,
+65209=>1209,65210=>1225,65211=>849,65212=>867,65213=>1209,65214=>1225,65215=>849,65216=>867,65217=>925,65218=>949,
+65219=>796,65220=>820,65221=>925,65222=>949,65223=>796,65224=>820,65225=>597,65226=>532,65227=>597,65228=>482,
+65229=>597,65230=>532,65231=>523,65232=>482,65233=>1037,65234=>1035,65235=>478,65236=>506,65237=>776,65238=>834,
+65239=>478,65240=>506,65241=>824,65242=>843,65243=>476,65244=>552,65245=>727,65246=>757,65247=>305,65248=>331,
+65249=>619,65250=>666,65251=>536,65252=>578,65253=>734,65254=>761,65255=>278,65256=>302,65257=>524,65258=>536,
+65259=>527,65260=>461,65261=>483,65262=>517,65263=>783,65264=>833,65265=>783,65266=>833,65267=>278,65268=>302,
+65269=>570,65270=>597,65271=>570,65272=>597,65273=>570,65274=>597,65275=>570,65276=>597,65279=>0,65529=>0,
+65530=>0,65531=>0,65532=>0,65533=>1025);
+$enc='';
+$diff='';
+$file='dejavusans.z';
+$ctg='dejavusans.ctg.z';
+$originalsize=683528;
+// --- EOF ---
\ No newline at end of file
diff --git a/libs/tcpdf/fonts/dejavusans.z b/libs/tcpdf/fonts/dejavusans.z
new file mode 100644
index 0000000000000000000000000000000000000000..4ef7dfd07906d1bc6dec394f1c01fd203aac9158
Binary files /dev/null and b/libs/tcpdf/fonts/dejavusans.z differ
diff --git a/libs/tcpdf/fonts/hysmyeongjostdmedium.php b/libs/tcpdf/fonts/hysmyeongjostdmedium.php
new file mode 100644
index 0000000000000000000000000000000000000000..9e8b23b426da0fce9355aa309d9a805c239480e5
--- /dev/null
+++ b/libs/tcpdf/fonts/hysmyeongjostdmedium.php
@@ -0,0 +1,48 @@
+<?php
+$type='cidfont0';
+$name='HYSMyeongJoStd-Medium-Acro'; // AdobeMyungjoStd-Medium-Acro in acrobat 6
+$displayname = 'MyungJo Medium (Korean)';
+$desc = array(
+	'Ascent' => 880,
+	'Descent' => -120,
+	'CapHeight' => 720,
+	'Flags' => 6,
+	'FontBBox' => '[-28 -148 1001 880]',
+	'ItalicAngle' => 0,
+	'StemV' => 60,
+	'Style' => '<< /Panose <000000000600000000000000> >>',
+);
+$cidinfo = array(
+	'Registry' => 'Adobe',
+	'Ordering' => 'Korea1',
+	'Supplement' => '1',
+);
+$enc = 'UniKS-UCS2-H';
+
+// underline position, needs checking:
+$up = -130;
+$ut = 40;
+
+$dw = 1000;
+$cw = array(
+	32 => 333, 33 => 416, 34 => 416, 35 => 833, 36 => 625, 37 => 916, 38 => 833, 39 => 250, 40 => 500, 41 => 500,
+	42 => 500, 43 => 833, 44 => 291, 45 => 450, 46 => 291, 47 => 375, 48 => 625, 49 => 625, 50 => 625, 51 => 625,
+	52 => 625, 53 => 625, 54 => 625, 55 => 625, 56 => 625, 57 => 625, 58 => 333, 59 => 333, 60 => 833, 61 => 833,
+	62 => 916, 63 => 500, 64 => 1000, 65 => 791, 66 => 708, 67 => 708, 68 => 750, 69 => 708, 70 => 666, 71 => 750,
+	72 => 791, 73 => 375, 74 => 500, 75 => 791, 76 => 666, 77 => 916, 78 => 791, 79 => 750, 80 => 666, 81 => 750,
+	82 => 708, 83 => 666, 84 => 791, 85 => 791, 86 => 750, 87 => 1000, 88 => 708, 89 => 708, 90 => 666, 91 => 500,
+	92 => 375, 93 => 500, 94 => 500, 95 => 500, 96 => 333, 97 => 541, 98 => 583, 99 => 541, 100 => 583, 101 => 583,
+	102 => 375, 103 => 583, 104 => 583, 105 => 291, 106 => 333, 107 => 583, 108 => 291, 109 => 875, 110 => 583, 111 => 583,
+	112 => 583, 113 => 583, 114 => 458, 115 => 541, 116 => 375, 117 => 583, 118 => 583, 119 => 833, 120 => 625, 121 => 625,
+	122 => 500, 123 => 583, 124 => 583, 125 => 583, 126 => 750,
+);
+$_cr = array(
+	//array(97, 97, 500),
+	array(8094, 8190, 500)
+);
+foreach($_cr as $_r) {
+	for($i = $_r[0]; $i <= $_r[1]; $i++) {
+		$cw[$i+31] = $_r[2];
+	}
+}
+// --- EOF ---
diff --git a/libs/tcpdf/fonts/msungstdlight.php b/libs/tcpdf/fonts/msungstdlight.php
new file mode 100644
index 0000000000000000000000000000000000000000..a71ea29536489529ce6730a5ff3b08888838b5b0
--- /dev/null
+++ b/libs/tcpdf/fonts/msungstdlight.php
@@ -0,0 +1,38 @@
+<?php
+$type = 'cidfont0';
+$name = 'MSungStd-Light-Acro';
+$displayname = 'MSung Light (Trad. Chinese)';
+$desc = array(
+	'Ascent' => 880,
+	'Descent' => -120,
+	'CapHeight' => 880,
+	'Flags' => 6,
+	'FontBBox' => '[-160 -249 1015 1071]',
+	'ItalicAngle' => 0,
+	'StemV' => 93,
+);
+$cidinfo = array(
+	'Registry' => 'Adobe',
+	'Ordering' => 'CNS1',
+	'Supplement' => '3',
+);
+$enc = 'UniCNS-UCS2-H';
+
+$up = -130;
+$ut = 40;
+
+$dw = 1000;
+$cw = array(
+	32 => 250, 33 => 250, 34 => 408, 35 => 668, 36 => 490, 37 => 875, 38 => 698, 39 => 250, 40 => 240, 41 => 240,
+	42 => 417, 43 => 667, 44 => 250, 45 => 313, 46 => 250, 47 => 520, 48 => 500, 49 => 500, 50 => 500, 51 => 500,
+	52 => 500, 53 => 500, 54 => 500, 55 => 500, 56 => 500, 57 => 500, 58 => 250, 59 => 250, 60 => 667, 61 => 667,
+	62 => 667, 63 => 396, 64 => 921, 65 => 677, 66 => 615, 67 => 719, 68 => 760, 69 => 625, 70 => 552, 71 => 771,
+	72 => 802, 73 => 354, 74 => 354, 75 => 781, 76 => 604, 77 => 927, 78 => 750, 79 => 823, 80 => 563, 81 => 823,
+	82 => 729, 83 => 542, 84 => 698, 85 => 771, 86 => 729, 87 => 948, 88 => 771, 89 => 677, 90 => 635, 91 => 344,
+	92 => 520, 93 => 344, 94 => 469, 95 => 500, 96 => 250, 97 => 469, 98 => 521, 99 => 427, 100 => 521, 101 => 438,
+	102 => 271, 103 => 469, 104 => 531, 105 => 250, 106 => 250, 107 => 458, 108 => 240, 109 => 802, 110 => 531, 111 => 500,
+	112 => 521, 113 => 521, 114 => 365, 115 => 333, 116 => 292, 117 => 521, 118 => 458, 119 => 677, 120 => 479, 121 => 458,
+	122 => 427, 123 => 480, 124 => 496, 125 => 480, 126 => 667,
+	17601 => 500,
+);
+// --- EOF ---
diff --git a/libs/tcpdf/fonts/stsongstdlight.php b/libs/tcpdf/fonts/stsongstdlight.php
new file mode 100644
index 0000000000000000000000000000000000000000..1c74c62d668934031640cc04359d95a85ff031a5
--- /dev/null
+++ b/libs/tcpdf/fonts/stsongstdlight.php
@@ -0,0 +1,39 @@
+<?php
+$type = 'cidfont0';
+$name = 'STSongStd-Light-Acro';
+$displayname = 'STSong Light (Simp. Chinese)';
+$desc = array(
+	'Ascent' => 752,
+	'Descent' => -271,
+	'CapHeight' => 737,
+	'Flags' => 6,
+	'FontBBox' => '[-25 -254 1000 880]',
+	'ItalicAngle' => 0,
+	'StemV' => 58,
+	'Style' => '<< /Panose <000000000400000000000000> >>',
+);
+$cidinfo = array(
+	'Registry' => 'Adobe',
+	'Ordering' => 'GB1',
+	'Supplement' => '2',
+);
+$enc = 'UniGB-UCS2-H';
+
+// underline position, needs checking:
+$up = -130;
+$ut = 40;
+
+$dw = 1000;
+$cw = array(
+	32 => 207, 33 => 270, 34 => 342, 35 => 467, 36 => 462, 37 => 797, 38 => 710, 39 => 239, 40 => 374, 41 => 374,
+	42 => 423, 43 => 605, 44 => 238, 45 => 375, 46 => 238, 47 => 334, 48 => 462, 49 => 462, 50 => 462, 51 => 462,
+	52 => 462, 53 => 462, 54 => 462, 55 => 462, 56 => 462, 57 => 462, 58 => 238, 59 => 238, 60 => 605, 61 => 605,
+	62 => 605, 63 => 344, 64 => 748, 65 => 684, 66 => 560, 67 => 695, 68 => 739, 69 => 563, 70 => 511, 71 => 729,
+	72 => 793, 73 => 318, 74 => 312, 75 => 666, 76 => 526, 77 => 896, 78 => 758, 79 => 772, 80 => 544, 81 => 772,
+	82 => 628, 83 => 465, 84 => 607, 85 => 753, 86 => 711, 87 => 972, 88 => 647, 89 => 620, 90 => 607, 91 => 374,
+	92 => 333, 93 => 374, 94 => 606, 95 => 500, 96 => 239, 97 => 417, 98 => 503, 99 => 427, 100 => 529, 101 => 415,
+	102 => 264, 103 => 444, 104 => 518, 105 => 241, 106 => 230, 107 => 495, 108 => 228, 109 => 793, 110 => 527, 111 => 524,
+	112 => 524, 113 => 504, 114 => 338, 115 => 336, 116 => 277, 117 => 517, 118 => 450, 119 => 652, 120 => 466, 121 => 452,
+	122 => 407, 123 => 370, 124 => 258, 125 => 370, 126 => 605
+);
+// --- EOF ---
diff --git a/libs/tcpdf/htmlcolors.php b/libs/tcpdf/htmlcolors.php
index d56634004a1cd40035c61c0cf6cf6f48a7535a69..d1075dd4749b52aa8f3ebeb6858a83853bc0d910 100644
--- a/libs/tcpdf/htmlcolors.php
+++ b/libs/tcpdf/htmlcolors.php
@@ -1,9 +1,9 @@
 <?php
 //============================================================+
 // File name   : htmlcolors.php
-// Version     : 1.0.005
+// Version     : 1.0.008
 // Begin       : 2002-04-09
-// Last Update : 2010-06-03
+// Last Update : 2010-12-16
 // 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)
 // -------------------------------------------------------------------
@@ -32,19 +32,16 @@
 //============================================================+
 
 /**
- * Array of WEB safe colors.
+ * @file
+ * Array of WEB safe colors
  * @author Nicola Asuni
- * @copyright 2002-2009 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
- * @link http://www.tcpdf.org
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
  * @since 2.9.000 (2008-03-26)
-*/
+ */
 
 /**
  * Array of WEB safe colors
  */
-global $webcolor;
 $webcolor = array (
 'aliceblue' => 'f0f8ff',
 'antiquewhite' => 'faebd7',
@@ -200,4 +197,3 @@ $webcolor = array (
 //============================================================+
 // END OF FILE
 //============================================================+
-?>
diff --git a/libs/tcpdf/pdf417.php b/libs/tcpdf/pdf417.php
index 1eb50d444f8eb1903ca7053552f9853b49bbc6fc..995daa261bbf24da371820c58b220f81ed1f762d 100644
--- a/libs/tcpdf/pdf417.php
+++ b/libs/tcpdf/pdf417.php
@@ -1,9 +1,9 @@
 <?php
 //============================================================+
 // File name   : pdf417.php
-// Version     : 1.0.002
+// Version     : 1.0.003
 // Begin       : 2010-06-03
-// Last Update : 2010-06-07
+// Last Update : 2010-12-16
 // 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)
 // -------------------------------------------------------------------
@@ -44,16 +44,13 @@
 //============================================================+
 
 /**
+ * @file
  * Class to create PDF417 barcode arrays for TCPDF class.
  * PDF417 (ISO/IEC 15438:2006) is a 2-dimensional stacked bar code created by Symbol Technologies in 1991.
  * (requires PHP bcmath extension)
  * @package com.tecnick.tcpdf
- * @abstract Class to create PDF417 barcode arrays for TCPDF class.
  * @author Nicola Asuni
- * @copyright 2010-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
- * @link http://www.tcpdf.org
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
- * @version 1.0.002
+ * @version 1.0.003
  */
 
 // definitions
@@ -81,921 +78,914 @@ if (!defined('PDF417DEFS')) {
 	 */
 	define('QUIETV', 2);
 
-
-
 } // end of definitions
 
 // #*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#
 
-if (!class_exists('PDF417', false)) {
+/**
+ * @class PDF417
+ * Class to create PDF417 barcode arrays for TCPDF class.
+ * PDF417 (ISO/IEC 15438:2006) is a 2-dimensional stacked bar code created by Symbol Technologies in 1991.
+ * @package com.tecnick.tcpdf
+ * @author Nicola Asuni
+ * @version 1.0.003
+ */
+class PDF417 {
 
 	/**
-	 * Class to create PDF417 barcode arrays for TCPDF class.
-	 * PDF417 (ISO/IEC 15438:2006) is a 2-dimensional stacked bar code created by Symbol Technologies in 1991.
-	 * @name PDF417
-	 * @package com.tecnick.tcpdf
-	 * @abstract Class to create PDF417 barcode arrays for TCPDF class.
-	 * @author Nicola Asuni
-	 * @copyright 2010-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
-	 * @link http://www.tcpdf.org
-	 * @license http://www.gnu.org/copyleft/lesser.html LGPL
-	 * @version 1.0.002
+	 * Barcode array to be returned which is readable by TCPDF.
+	 * @protected
 	 */
-	class PDF417 {
+	protected $barcode_array = array();
 
-		/**
-		 * @var barcode array to be returned which is readable by TCPDF
-		 * @access protected
-		 */
-		protected $barcode_array = array();
-
-		/**
-		 * @var start pattern
-		 * @access protected
-		 */
-		protected $start_pattern = '11111111010101000';
+	/**
+	 * Start pattern.
+	 * @protected
+	 */
+	protected $start_pattern = '11111111010101000';
 
-		/**
-		 * @var start pattern
-		 * @access protected
-		 */
-		protected $stop_pattern = '111111101000101001';
+	/**
+	 * Stop pattern.
+	 * @protected
+	 */
+	protected $stop_pattern = '111111101000101001';
 
-		/**
-		 * @var Text Compaction Sub-Modes (values 0xFB - 0xFF are used for submode changers)
-		 * @access protected
-		 */
-		protected $textsubmodes = array(
-			array(0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x20,0xFD,0xFE,0xFF), // Alpha
-			array(0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x20,0xFD,0xFE,0xFF), // Lower
-			array(0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x26,0x0d,0x09,0x2c,0x3a,0x23,0x2d,0x2e,0x24,0x2f,0x2b,0x25,0x2a,0x3d,0x5e,0xFB,0x20,0xFD,0xFE,0xFF), // Mixed
-			array(0x3b,0x3c,0x3e,0x40,0x5b,0x5c,0x5d,0x5f,0x60,0x7e,0x21,0x0d,0x09,0x2c,0x3a,0x0a,0x2d,0x2e,0x24,0x2f,0x22,0x7c,0x2a,0x28,0x29,0x3f,0x7b,0x7d,0x27,0xFF) // Puntuaction
-		);
+	/**
+	 * Array of text Compaction Sub-Modes (values 0xFB - 0xFF are used for submode changers).
+	 * @protected
+	 */
+	protected $textsubmodes = array(
+		array(0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x20,0xFD,0xFE,0xFF), // Alpha
+		array(0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x20,0xFD,0xFE,0xFF), // Lower
+		array(0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x26,0x0d,0x09,0x2c,0x3a,0x23,0x2d,0x2e,0x24,0x2f,0x2b,0x25,0x2a,0x3d,0x5e,0xFB,0x20,0xFD,0xFE,0xFF), // Mixed
+		array(0x3b,0x3c,0x3e,0x40,0x5b,0x5c,0x5d,0x5f,0x60,0x7e,0x21,0x0d,0x09,0x2c,0x3a,0x0a,0x2d,0x2e,0x24,0x2f,0x22,0x7c,0x2a,0x28,0x29,0x3f,0x7b,0x7d,0x27,0xFF) // Puntuaction
+	);
 
-		/**
-		 * @var Switching codes for Text Compaction Sub-Modes
-		 * @access protected
-		 */
-		protected $textlatch = array(
-			'01' => array(27), '02' => array(28), '03' => array(28,25), //
-			'10' => array(28,28), '12' => array(28), '13' => array(28,25), //
-			'20' => array(28), '21' => array(27), '23' => array(25), //
-			'30' => array(29), '31' => array(29,27), '32' => array(29,28) //
-		);
+	/**
+	 * Array of switching codes for Text Compaction Sub-Modes.
+	 * @protected
+	 */
+	protected $textlatch = array(
+		'01' => array(27), '02' => array(28), '03' => array(28,25), //
+		'10' => array(28,28), '12' => array(28), '13' => array(28,25), //
+		'20' => array(28), '21' => array(27), '23' => array(25), //
+		'30' => array(29), '31' => array(29,27), '32' => array(29,28) //
+	);
 
-		/**
-		 * @var clusters of codewords (0, 3, 6)<br/>
-		 * Values are hex equivalents of binary representation of bars (1 = bar, 0 = space).<br/>
-		 * The codewords numbered from 900 to 928 have special meaning, some enable to switch between modes in order to optimise the code:<ul>
-		 * <li>900 : Switch to "Text" mode</li>
-		 * <li>901 : Switch to "Byte" mode</li>
-		 * <li>902 : Switch to "Numeric" mode</li>
-		 * <li>903 - 912 : Reserved</li>
-		 * <li>913 : Switch to "Octet" only for the next codeword</li>
-		 * <li>914 - 920 : Reserved</li>
-		 * <li>921 : Initialization</li>
-		 * <li>922 : Terminator codeword for Macro PDF control block</li>
-		 * <li>923 : Sequence tag to identify the beginning of optional fields in the Macro PDF control block</li>
-		 * <li>924 : Switch to "Byte" mode (If the total number of byte is multiple of 6)</li>
-		 * <li>925 : Identifier for a user defined Extended Channel Interpretation (ECI)</li>
-		 * <li>926 : Identifier for a general purpose ECI format</li>
-		 * <li>927 : Identifier for an ECI of a character set or code page</li>
-		 * <li>928 : Macro marker codeword to indicate the beginning of a Macro PDF Control Block</li>
-		 * </ul>
-		 * @access protected
-		 */
-		protected $clusters = array(
-			array( // cluster 0 -----------------------------------------------------------------------
-				0x1d5c0,0x1eaf0,0x1f57c,0x1d4e0,0x1ea78,0x1f53e,0x1a8c0,0x1d470,0x1a860,0x15040, //  10
-				0x1a830,0x15020,0x1adc0,0x1d6f0,0x1eb7c,0x1ace0,0x1d678,0x1eb3e,0x158c0,0x1ac70, //  20
-				0x15860,0x15dc0,0x1aef0,0x1d77c,0x15ce0,0x1ae78,0x1d73e,0x15c70,0x1ae3c,0x15ef0, //  30
-				0x1af7c,0x15e78,0x1af3e,0x15f7c,0x1f5fa,0x1d2e0,0x1e978,0x1f4be,0x1a4c0,0x1d270, //  40
-				0x1e93c,0x1a460,0x1d238,0x14840,0x1a430,0x1d21c,0x14820,0x1a418,0x14810,0x1a6e0, //  50
-				0x1d378,0x1e9be,0x14cc0,0x1a670,0x1d33c,0x14c60,0x1a638,0x1d31e,0x14c30,0x1a61c, //  60
-				0x14ee0,0x1a778,0x1d3be,0x14e70,0x1a73c,0x14e38,0x1a71e,0x14f78,0x1a7be,0x14f3c, //  70
-				0x14f1e,0x1a2c0,0x1d170,0x1e8bc,0x1a260,0x1d138,0x1e89e,0x14440,0x1a230,0x1d11c, //  80
-				0x14420,0x1a218,0x14410,0x14408,0x146c0,0x1a370,0x1d1bc,0x14660,0x1a338,0x1d19e, //  90
-				0x14630,0x1a31c,0x14618,0x1460c,0x14770,0x1a3bc,0x14738,0x1a39e,0x1471c,0x147bc, // 100
-				0x1a160,0x1d0b8,0x1e85e,0x14240,0x1a130,0x1d09c,0x14220,0x1a118,0x1d08e,0x14210, // 110
-				0x1a10c,0x14208,0x1a106,0x14360,0x1a1b8,0x1d0de,0x14330,0x1a19c,0x14318,0x1a18e, // 120
-				0x1430c,0x14306,0x1a1de,0x1438e,0x14140,0x1a0b0,0x1d05c,0x14120,0x1a098,0x1d04e, // 130
-				0x14110,0x1a08c,0x14108,0x1a086,0x14104,0x141b0,0x14198,0x1418c,0x140a0,0x1d02e, // 140
-				0x1a04c,0x1a046,0x14082,0x1cae0,0x1e578,0x1f2be,0x194c0,0x1ca70,0x1e53c,0x19460, // 150
-				0x1ca38,0x1e51e,0x12840,0x19430,0x12820,0x196e0,0x1cb78,0x1e5be,0x12cc0,0x19670, // 160
-				0x1cb3c,0x12c60,0x19638,0x12c30,0x12c18,0x12ee0,0x19778,0x1cbbe,0x12e70,0x1973c, // 170
-				0x12e38,0x12e1c,0x12f78,0x197be,0x12f3c,0x12fbe,0x1dac0,0x1ed70,0x1f6bc,0x1da60, // 180
-				0x1ed38,0x1f69e,0x1b440,0x1da30,0x1ed1c,0x1b420,0x1da18,0x1ed0e,0x1b410,0x1da0c, // 190
-				0x192c0,0x1c970,0x1e4bc,0x1b6c0,0x19260,0x1c938,0x1e49e,0x1b660,0x1db38,0x1ed9e, // 200
-				0x16c40,0x12420,0x19218,0x1c90e,0x16c20,0x1b618,0x16c10,0x126c0,0x19370,0x1c9bc, // 210
-				0x16ec0,0x12660,0x19338,0x1c99e,0x16e60,0x1b738,0x1db9e,0x16e30,0x12618,0x16e18, // 220
-				0x12770,0x193bc,0x16f70,0x12738,0x1939e,0x16f38,0x1b79e,0x16f1c,0x127bc,0x16fbc, // 230
-				0x1279e,0x16f9e,0x1d960,0x1ecb8,0x1f65e,0x1b240,0x1d930,0x1ec9c,0x1b220,0x1d918, // 240
-				0x1ec8e,0x1b210,0x1d90c,0x1b208,0x1b204,0x19160,0x1c8b8,0x1e45e,0x1b360,0x19130, // 250
-				0x1c89c,0x16640,0x12220,0x1d99c,0x1c88e,0x16620,0x12210,0x1910c,0x16610,0x1b30c, // 260
-				0x19106,0x12204,0x12360,0x191b8,0x1c8de,0x16760,0x12330,0x1919c,0x16730,0x1b39c, // 270
-				0x1918e,0x16718,0x1230c,0x12306,0x123b8,0x191de,0x167b8,0x1239c,0x1679c,0x1238e, // 280
-				0x1678e,0x167de,0x1b140,0x1d8b0,0x1ec5c,0x1b120,0x1d898,0x1ec4e,0x1b110,0x1d88c, // 290
-				0x1b108,0x1d886,0x1b104,0x1b102,0x12140,0x190b0,0x1c85c,0x16340,0x12120,0x19098, // 300
-				0x1c84e,0x16320,0x1b198,0x1d8ce,0x16310,0x12108,0x19086,0x16308,0x1b186,0x16304, // 310
-				0x121b0,0x190dc,0x163b0,0x12198,0x190ce,0x16398,0x1b1ce,0x1638c,0x12186,0x16386, // 320
-				0x163dc,0x163ce,0x1b0a0,0x1d858,0x1ec2e,0x1b090,0x1d84c,0x1b088,0x1d846,0x1b084, // 330
-				0x1b082,0x120a0,0x19058,0x1c82e,0x161a0,0x12090,0x1904c,0x16190,0x1b0cc,0x19046, // 340
-				0x16188,0x12084,0x16184,0x12082,0x120d8,0x161d8,0x161cc,0x161c6,0x1d82c,0x1d826, // 350
-				0x1b042,0x1902c,0x12048,0x160c8,0x160c4,0x160c2,0x18ac0,0x1c570,0x1e2bc,0x18a60, // 360
-				0x1c538,0x11440,0x18a30,0x1c51c,0x11420,0x18a18,0x11410,0x11408,0x116c0,0x18b70, // 370
-				0x1c5bc,0x11660,0x18b38,0x1c59e,0x11630,0x18b1c,0x11618,0x1160c,0x11770,0x18bbc, // 380
-				0x11738,0x18b9e,0x1171c,0x117bc,0x1179e,0x1cd60,0x1e6b8,0x1f35e,0x19a40,0x1cd30, // 390
-				0x1e69c,0x19a20,0x1cd18,0x1e68e,0x19a10,0x1cd0c,0x19a08,0x1cd06,0x18960,0x1c4b8, // 400
-				0x1e25e,0x19b60,0x18930,0x1c49c,0x13640,0x11220,0x1cd9c,0x1c48e,0x13620,0x19b18, // 410
-				0x1890c,0x13610,0x11208,0x13608,0x11360,0x189b8,0x1c4de,0x13760,0x11330,0x1cdde, // 420
-				0x13730,0x19b9c,0x1898e,0x13718,0x1130c,0x1370c,0x113b8,0x189de,0x137b8,0x1139c, // 430
-				0x1379c,0x1138e,0x113de,0x137de,0x1dd40,0x1eeb0,0x1f75c,0x1dd20,0x1ee98,0x1f74e, // 440
-				0x1dd10,0x1ee8c,0x1dd08,0x1ee86,0x1dd04,0x19940,0x1ccb0,0x1e65c,0x1bb40,0x19920, // 450
-				0x1eedc,0x1e64e,0x1bb20,0x1dd98,0x1eece,0x1bb10,0x19908,0x1cc86,0x1bb08,0x1dd86, // 460
-				0x19902,0x11140,0x188b0,0x1c45c,0x13340,0x11120,0x18898,0x1c44e,0x17740,0x13320, // 470
-				0x19998,0x1ccce,0x17720,0x1bb98,0x1ddce,0x18886,0x17710,0x13308,0x19986,0x17708, // 480
-				0x11102,0x111b0,0x188dc,0x133b0,0x11198,0x188ce,0x177b0,0x13398,0x199ce,0x17798, // 490
-				0x1bbce,0x11186,0x13386,0x111dc,0x133dc,0x111ce,0x177dc,0x133ce,0x1dca0,0x1ee58, // 500
-				0x1f72e,0x1dc90,0x1ee4c,0x1dc88,0x1ee46,0x1dc84,0x1dc82,0x198a0,0x1cc58,0x1e62e, // 510
-				0x1b9a0,0x19890,0x1ee6e,0x1b990,0x1dccc,0x1cc46,0x1b988,0x19884,0x1b984,0x19882, // 520
-				0x1b982,0x110a0,0x18858,0x1c42e,0x131a0,0x11090,0x1884c,0x173a0,0x13190,0x198cc, // 530
-				0x18846,0x17390,0x1b9cc,0x11084,0x17388,0x13184,0x11082,0x13182,0x110d8,0x1886e, // 540
-				0x131d8,0x110cc,0x173d8,0x131cc,0x110c6,0x173cc,0x131c6,0x110ee,0x173ee,0x1dc50, // 550
-				0x1ee2c,0x1dc48,0x1ee26,0x1dc44,0x1dc42,0x19850,0x1cc2c,0x1b8d0,0x19848,0x1cc26, // 560
-				0x1b8c8,0x1dc66,0x1b8c4,0x19842,0x1b8c2,0x11050,0x1882c,0x130d0,0x11048,0x18826, // 570
-				0x171d0,0x130c8,0x19866,0x171c8,0x1b8e6,0x11042,0x171c4,0x130c2,0x171c2,0x130ec, // 580
-				0x171ec,0x171e6,0x1ee16,0x1dc22,0x1cc16,0x19824,0x19822,0x11028,0x13068,0x170e8, // 590
-				0x11022,0x13062,0x18560,0x10a40,0x18530,0x10a20,0x18518,0x1c28e,0x10a10,0x1850c, // 600
-				0x10a08,0x18506,0x10b60,0x185b8,0x1c2de,0x10b30,0x1859c,0x10b18,0x1858e,0x10b0c, // 610
-				0x10b06,0x10bb8,0x185de,0x10b9c,0x10b8e,0x10bde,0x18d40,0x1c6b0,0x1e35c,0x18d20, // 620
-				0x1c698,0x18d10,0x1c68c,0x18d08,0x1c686,0x18d04,0x10940,0x184b0,0x1c25c,0x11b40, // 630
-				0x10920,0x1c6dc,0x1c24e,0x11b20,0x18d98,0x1c6ce,0x11b10,0x10908,0x18486,0x11b08, // 640
-				0x18d86,0x10902,0x109b0,0x184dc,0x11bb0,0x10998,0x184ce,0x11b98,0x18dce,0x11b8c, // 650
-				0x10986,0x109dc,0x11bdc,0x109ce,0x11bce,0x1cea0,0x1e758,0x1f3ae,0x1ce90,0x1e74c, // 660
-				0x1ce88,0x1e746,0x1ce84,0x1ce82,0x18ca0,0x1c658,0x19da0,0x18c90,0x1c64c,0x19d90, // 670
-				0x1cecc,0x1c646,0x19d88,0x18c84,0x19d84,0x18c82,0x19d82,0x108a0,0x18458,0x119a0, // 680
-				0x10890,0x1c66e,0x13ba0,0x11990,0x18ccc,0x18446,0x13b90,0x19dcc,0x10884,0x13b88, // 690
-				0x11984,0x10882,0x11982,0x108d8,0x1846e,0x119d8,0x108cc,0x13bd8,0x119cc,0x108c6, // 700
-				0x13bcc,0x119c6,0x108ee,0x119ee,0x13bee,0x1ef50,0x1f7ac,0x1ef48,0x1f7a6,0x1ef44, // 710
-				0x1ef42,0x1ce50,0x1e72c,0x1ded0,0x1ef6c,0x1e726,0x1dec8,0x1ef66,0x1dec4,0x1ce42, // 720
-				0x1dec2,0x18c50,0x1c62c,0x19cd0,0x18c48,0x1c626,0x1bdd0,0x19cc8,0x1ce66,0x1bdc8, // 730
-				0x1dee6,0x18c42,0x1bdc4,0x19cc2,0x1bdc2,0x10850,0x1842c,0x118d0,0x10848,0x18426, // 740
-				0x139d0,0x118c8,0x18c66,0x17bd0,0x139c8,0x19ce6,0x10842,0x17bc8,0x1bde6,0x118c2, // 750
-				0x17bc4,0x1086c,0x118ec,0x10866,0x139ec,0x118e6,0x17bec,0x139e6,0x17be6,0x1ef28, // 760
-				0x1f796,0x1ef24,0x1ef22,0x1ce28,0x1e716,0x1de68,0x1ef36,0x1de64,0x1ce22,0x1de62, // 770
-				0x18c28,0x1c616,0x19c68,0x18c24,0x1bce8,0x19c64,0x18c22,0x1bce4,0x19c62,0x1bce2, // 780
-				0x10828,0x18416,0x11868,0x18c36,0x138e8,0x11864,0x10822,0x179e8,0x138e4,0x11862, // 790
-				0x179e4,0x138e2,0x179e2,0x11876,0x179f6,0x1ef12,0x1de34,0x1de32,0x19c34,0x1bc74, // 800
-				0x1bc72,0x11834,0x13874,0x178f4,0x178f2,0x10540,0x10520,0x18298,0x10510,0x10508, // 810
-				0x10504,0x105b0,0x10598,0x1058c,0x10586,0x105dc,0x105ce,0x186a0,0x18690,0x1c34c, // 820
-				0x18688,0x1c346,0x18684,0x18682,0x104a0,0x18258,0x10da0,0x186d8,0x1824c,0x10d90, // 830
-				0x186cc,0x10d88,0x186c6,0x10d84,0x10482,0x10d82,0x104d8,0x1826e,0x10dd8,0x186ee, // 840
-				0x10dcc,0x104c6,0x10dc6,0x104ee,0x10dee,0x1c750,0x1c748,0x1c744,0x1c742,0x18650, // 850
-				0x18ed0,0x1c76c,0x1c326,0x18ec8,0x1c766,0x18ec4,0x18642,0x18ec2,0x10450,0x10cd0, // 860
-				0x10448,0x18226,0x11dd0,0x10cc8,0x10444,0x11dc8,0x10cc4,0x10442,0x11dc4,0x10cc2, // 870
-				0x1046c,0x10cec,0x10466,0x11dec,0x10ce6,0x11de6,0x1e7a8,0x1e7a4,0x1e7a2,0x1c728, // 880
-				0x1cf68,0x1e7b6,0x1cf64,0x1c722,0x1cf62,0x18628,0x1c316,0x18e68,0x1c736,0x19ee8, // 890
-				0x18e64,0x18622,0x19ee4,0x18e62,0x19ee2,0x10428,0x18216,0x10c68,0x18636,0x11ce8, // 900
-				0x10c64,0x10422,0x13de8,0x11ce4,0x10c62,0x13de4,0x11ce2,0x10436,0x10c76,0x11cf6, // 910
-				0x13df6,0x1f7d4,0x1f7d2,0x1e794,0x1efb4,0x1e792,0x1efb2,0x1c714,0x1cf34,0x1c712, // 920
-				0x1df74,0x1cf32,0x1df72,0x18614,0x18e34,0x18612,0x19e74,0x18e32,0x1bef4),        // 929
-			array( // cluster 3 -----------------------------------------------------------------------
-				0x1f560,0x1fab8,0x1ea40,0x1f530,0x1fa9c,0x1ea20,0x1f518,0x1fa8e,0x1ea10,0x1f50c, //  10
-				0x1ea08,0x1f506,0x1ea04,0x1eb60,0x1f5b8,0x1fade,0x1d640,0x1eb30,0x1f59c,0x1d620, //  20
-				0x1eb18,0x1f58e,0x1d610,0x1eb0c,0x1d608,0x1eb06,0x1d604,0x1d760,0x1ebb8,0x1f5de, //  30
-				0x1ae40,0x1d730,0x1eb9c,0x1ae20,0x1d718,0x1eb8e,0x1ae10,0x1d70c,0x1ae08,0x1d706, //  40
-				0x1ae04,0x1af60,0x1d7b8,0x1ebde,0x15e40,0x1af30,0x1d79c,0x15e20,0x1af18,0x1d78e, //  50
-				0x15e10,0x1af0c,0x15e08,0x1af06,0x15f60,0x1afb8,0x1d7de,0x15f30,0x1af9c,0x15f18, //  60
-				0x1af8e,0x15f0c,0x15fb8,0x1afde,0x15f9c,0x15f8e,0x1e940,0x1f4b0,0x1fa5c,0x1e920, //  70
-				0x1f498,0x1fa4e,0x1e910,0x1f48c,0x1e908,0x1f486,0x1e904,0x1e902,0x1d340,0x1e9b0, //  80
-				0x1f4dc,0x1d320,0x1e998,0x1f4ce,0x1d310,0x1e98c,0x1d308,0x1e986,0x1d304,0x1d302, //  90
-				0x1a740,0x1d3b0,0x1e9dc,0x1a720,0x1d398,0x1e9ce,0x1a710,0x1d38c,0x1a708,0x1d386, // 100
-				0x1a704,0x1a702,0x14f40,0x1a7b0,0x1d3dc,0x14f20,0x1a798,0x1d3ce,0x14f10,0x1a78c, // 110
-				0x14f08,0x1a786,0x14f04,0x14fb0,0x1a7dc,0x14f98,0x1a7ce,0x14f8c,0x14f86,0x14fdc, // 120
-				0x14fce,0x1e8a0,0x1f458,0x1fa2e,0x1e890,0x1f44c,0x1e888,0x1f446,0x1e884,0x1e882, // 130
-				0x1d1a0,0x1e8d8,0x1f46e,0x1d190,0x1e8cc,0x1d188,0x1e8c6,0x1d184,0x1d182,0x1a3a0, // 140
-				0x1d1d8,0x1e8ee,0x1a390,0x1d1cc,0x1a388,0x1d1c6,0x1a384,0x1a382,0x147a0,0x1a3d8, // 150
-				0x1d1ee,0x14790,0x1a3cc,0x14788,0x1a3c6,0x14784,0x14782,0x147d8,0x1a3ee,0x147cc, // 160
-				0x147c6,0x147ee,0x1e850,0x1f42c,0x1e848,0x1f426,0x1e844,0x1e842,0x1d0d0,0x1e86c, // 170
-				0x1d0c8,0x1e866,0x1d0c4,0x1d0c2,0x1a1d0,0x1d0ec,0x1a1c8,0x1d0e6,0x1a1c4,0x1a1c2, // 180
-				0x143d0,0x1a1ec,0x143c8,0x1a1e6,0x143c4,0x143c2,0x143ec,0x143e6,0x1e828,0x1f416, // 190
-				0x1e824,0x1e822,0x1d068,0x1e836,0x1d064,0x1d062,0x1a0e8,0x1d076,0x1a0e4,0x1a0e2, // 200
-				0x141e8,0x1a0f6,0x141e4,0x141e2,0x1e814,0x1e812,0x1d034,0x1d032,0x1a074,0x1a072, // 210
-				0x1e540,0x1f2b0,0x1f95c,0x1e520,0x1f298,0x1f94e,0x1e510,0x1f28c,0x1e508,0x1f286, // 220
-				0x1e504,0x1e502,0x1cb40,0x1e5b0,0x1f2dc,0x1cb20,0x1e598,0x1f2ce,0x1cb10,0x1e58c, // 230
-				0x1cb08,0x1e586,0x1cb04,0x1cb02,0x19740,0x1cbb0,0x1e5dc,0x19720,0x1cb98,0x1e5ce, // 240
-				0x19710,0x1cb8c,0x19708,0x1cb86,0x19704,0x19702,0x12f40,0x197b0,0x1cbdc,0x12f20, // 250
-				0x19798,0x1cbce,0x12f10,0x1978c,0x12f08,0x19786,0x12f04,0x12fb0,0x197dc,0x12f98, // 260
-				0x197ce,0x12f8c,0x12f86,0x12fdc,0x12fce,0x1f6a0,0x1fb58,0x16bf0,0x1f690,0x1fb4c, // 270
-				0x169f8,0x1f688,0x1fb46,0x168fc,0x1f684,0x1f682,0x1e4a0,0x1f258,0x1f92e,0x1eda0, // 280
-				0x1e490,0x1fb6e,0x1ed90,0x1f6cc,0x1f246,0x1ed88,0x1e484,0x1ed84,0x1e482,0x1ed82, // 290
-				0x1c9a0,0x1e4d8,0x1f26e,0x1dba0,0x1c990,0x1e4cc,0x1db90,0x1edcc,0x1e4c6,0x1db88, // 300
-				0x1c984,0x1db84,0x1c982,0x1db82,0x193a0,0x1c9d8,0x1e4ee,0x1b7a0,0x19390,0x1c9cc, // 310
-				0x1b790,0x1dbcc,0x1c9c6,0x1b788,0x19384,0x1b784,0x19382,0x1b782,0x127a0,0x193d8, // 320
-				0x1c9ee,0x16fa0,0x12790,0x193cc,0x16f90,0x1b7cc,0x193c6,0x16f88,0x12784,0x16f84, // 330
-				0x12782,0x127d8,0x193ee,0x16fd8,0x127cc,0x16fcc,0x127c6,0x16fc6,0x127ee,0x1f650, // 340
-				0x1fb2c,0x165f8,0x1f648,0x1fb26,0x164fc,0x1f644,0x1647e,0x1f642,0x1e450,0x1f22c, // 350
-				0x1ecd0,0x1e448,0x1f226,0x1ecc8,0x1f666,0x1ecc4,0x1e442,0x1ecc2,0x1c8d0,0x1e46c, // 360
-				0x1d9d0,0x1c8c8,0x1e466,0x1d9c8,0x1ece6,0x1d9c4,0x1c8c2,0x1d9c2,0x191d0,0x1c8ec, // 370
-				0x1b3d0,0x191c8,0x1c8e6,0x1b3c8,0x1d9e6,0x1b3c4,0x191c2,0x1b3c2,0x123d0,0x191ec, // 380
-				0x167d0,0x123c8,0x191e6,0x167c8,0x1b3e6,0x167c4,0x123c2,0x167c2,0x123ec,0x167ec, // 390
-				0x123e6,0x167e6,0x1f628,0x1fb16,0x162fc,0x1f624,0x1627e,0x1f622,0x1e428,0x1f216, // 400
-				0x1ec68,0x1f636,0x1ec64,0x1e422,0x1ec62,0x1c868,0x1e436,0x1d8e8,0x1c864,0x1d8e4, // 410
-				0x1c862,0x1d8e2,0x190e8,0x1c876,0x1b1e8,0x1d8f6,0x1b1e4,0x190e2,0x1b1e2,0x121e8, // 420
-				0x190f6,0x163e8,0x121e4,0x163e4,0x121e2,0x163e2,0x121f6,0x163f6,0x1f614,0x1617e, // 430
-				0x1f612,0x1e414,0x1ec34,0x1e412,0x1ec32,0x1c834,0x1d874,0x1c832,0x1d872,0x19074, // 440
-				0x1b0f4,0x19072,0x1b0f2,0x120f4,0x161f4,0x120f2,0x161f2,0x1f60a,0x1e40a,0x1ec1a, // 450
-				0x1c81a,0x1d83a,0x1903a,0x1b07a,0x1e2a0,0x1f158,0x1f8ae,0x1e290,0x1f14c,0x1e288, // 460
-				0x1f146,0x1e284,0x1e282,0x1c5a0,0x1e2d8,0x1f16e,0x1c590,0x1e2cc,0x1c588,0x1e2c6, // 470
-				0x1c584,0x1c582,0x18ba0,0x1c5d8,0x1e2ee,0x18b90,0x1c5cc,0x18b88,0x1c5c6,0x18b84, // 480
-				0x18b82,0x117a0,0x18bd8,0x1c5ee,0x11790,0x18bcc,0x11788,0x18bc6,0x11784,0x11782, // 490
-				0x117d8,0x18bee,0x117cc,0x117c6,0x117ee,0x1f350,0x1f9ac,0x135f8,0x1f348,0x1f9a6, // 500
-				0x134fc,0x1f344,0x1347e,0x1f342,0x1e250,0x1f12c,0x1e6d0,0x1e248,0x1f126,0x1e6c8, // 510
-				0x1f366,0x1e6c4,0x1e242,0x1e6c2,0x1c4d0,0x1e26c,0x1cdd0,0x1c4c8,0x1e266,0x1cdc8, // 520
-				0x1e6e6,0x1cdc4,0x1c4c2,0x1cdc2,0x189d0,0x1c4ec,0x19bd0,0x189c8,0x1c4e6,0x19bc8, // 530
-				0x1cde6,0x19bc4,0x189c2,0x19bc2,0x113d0,0x189ec,0x137d0,0x113c8,0x189e6,0x137c8, // 540
-				0x19be6,0x137c4,0x113c2,0x137c2,0x113ec,0x137ec,0x113e6,0x137e6,0x1fba8,0x175f0, // 550
-				0x1bafc,0x1fba4,0x174f8,0x1ba7e,0x1fba2,0x1747c,0x1743e,0x1f328,0x1f996,0x132fc, // 560
-				0x1f768,0x1fbb6,0x176fc,0x1327e,0x1f764,0x1f322,0x1767e,0x1f762,0x1e228,0x1f116, // 570
-				0x1e668,0x1e224,0x1eee8,0x1f776,0x1e222,0x1eee4,0x1e662,0x1eee2,0x1c468,0x1e236, // 580
-				0x1cce8,0x1c464,0x1dde8,0x1cce4,0x1c462,0x1dde4,0x1cce2,0x1dde2,0x188e8,0x1c476, // 590
-				0x199e8,0x188e4,0x1bbe8,0x199e4,0x188e2,0x1bbe4,0x199e2,0x1bbe2,0x111e8,0x188f6, // 600
-				0x133e8,0x111e4,0x177e8,0x133e4,0x111e2,0x177e4,0x133e2,0x177e2,0x111f6,0x133f6, // 610
-				0x1fb94,0x172f8,0x1b97e,0x1fb92,0x1727c,0x1723e,0x1f314,0x1317e,0x1f734,0x1f312, // 620
-				0x1737e,0x1f732,0x1e214,0x1e634,0x1e212,0x1ee74,0x1e632,0x1ee72,0x1c434,0x1cc74, // 630
-				0x1c432,0x1dcf4,0x1cc72,0x1dcf2,0x18874,0x198f4,0x18872,0x1b9f4,0x198f2,0x1b9f2, // 640
-				0x110f4,0x131f4,0x110f2,0x173f4,0x131f2,0x173f2,0x1fb8a,0x1717c,0x1713e,0x1f30a, // 650
-				0x1f71a,0x1e20a,0x1e61a,0x1ee3a,0x1c41a,0x1cc3a,0x1dc7a,0x1883a,0x1987a,0x1b8fa, // 660
-				0x1107a,0x130fa,0x171fa,0x170be,0x1e150,0x1f0ac,0x1e148,0x1f0a6,0x1e144,0x1e142, // 670
-				0x1c2d0,0x1e16c,0x1c2c8,0x1e166,0x1c2c4,0x1c2c2,0x185d0,0x1c2ec,0x185c8,0x1c2e6, // 680
-				0x185c4,0x185c2,0x10bd0,0x185ec,0x10bc8,0x185e6,0x10bc4,0x10bc2,0x10bec,0x10be6, // 690
-				0x1f1a8,0x1f8d6,0x11afc,0x1f1a4,0x11a7e,0x1f1a2,0x1e128,0x1f096,0x1e368,0x1e124, // 700
-				0x1e364,0x1e122,0x1e362,0x1c268,0x1e136,0x1c6e8,0x1c264,0x1c6e4,0x1c262,0x1c6e2, // 710
-				0x184e8,0x1c276,0x18de8,0x184e4,0x18de4,0x184e2,0x18de2,0x109e8,0x184f6,0x11be8, // 720
-				0x109e4,0x11be4,0x109e2,0x11be2,0x109f6,0x11bf6,0x1f9d4,0x13af8,0x19d7e,0x1f9d2, // 730
-				0x13a7c,0x13a3e,0x1f194,0x1197e,0x1f3b4,0x1f192,0x13b7e,0x1f3b2,0x1e114,0x1e334, // 740
-				0x1e112,0x1e774,0x1e332,0x1e772,0x1c234,0x1c674,0x1c232,0x1cef4,0x1c672,0x1cef2, // 750
-				0x18474,0x18cf4,0x18472,0x19df4,0x18cf2,0x19df2,0x108f4,0x119f4,0x108f2,0x13bf4, // 760
-				0x119f2,0x13bf2,0x17af0,0x1bd7c,0x17a78,0x1bd3e,0x17a3c,0x17a1e,0x1f9ca,0x1397c, // 770
-				0x1fbda,0x17b7c,0x1393e,0x17b3e,0x1f18a,0x1f39a,0x1f7ba,0x1e10a,0x1e31a,0x1e73a, // 780
-				0x1ef7a,0x1c21a,0x1c63a,0x1ce7a,0x1defa,0x1843a,0x18c7a,0x19cfa,0x1bdfa,0x1087a, // 790
-				0x118fa,0x139fa,0x17978,0x1bcbe,0x1793c,0x1791e,0x138be,0x179be,0x178bc,0x1789e, // 800
-				0x1785e,0x1e0a8,0x1e0a4,0x1e0a2,0x1c168,0x1e0b6,0x1c164,0x1c162,0x182e8,0x1c176, // 810
-				0x182e4,0x182e2,0x105e8,0x182f6,0x105e4,0x105e2,0x105f6,0x1f0d4,0x10d7e,0x1f0d2, // 820
-				0x1e094,0x1e1b4,0x1e092,0x1e1b2,0x1c134,0x1c374,0x1c132,0x1c372,0x18274,0x186f4, // 830
-				0x18272,0x186f2,0x104f4,0x10df4,0x104f2,0x10df2,0x1f8ea,0x11d7c,0x11d3e,0x1f0ca, // 840
-				0x1f1da,0x1e08a,0x1e19a,0x1e3ba,0x1c11a,0x1c33a,0x1c77a,0x1823a,0x1867a,0x18efa, // 850
-				0x1047a,0x10cfa,0x11dfa,0x13d78,0x19ebe,0x13d3c,0x13d1e,0x11cbe,0x13dbe,0x17d70, // 860
-				0x1bebc,0x17d38,0x1be9e,0x17d1c,0x17d0e,0x13cbc,0x17dbc,0x13c9e,0x17d9e,0x17cb8, // 870
-				0x1be5e,0x17c9c,0x17c8e,0x13c5e,0x17cde,0x17c5c,0x17c4e,0x17c2e,0x1c0b4,0x1c0b2, // 880
-				0x18174,0x18172,0x102f4,0x102f2,0x1e0da,0x1c09a,0x1c1ba,0x1813a,0x1837a,0x1027a, // 890
-				0x106fa,0x10ebe,0x11ebc,0x11e9e,0x13eb8,0x19f5e,0x13e9c,0x13e8e,0x11e5e,0x13ede, // 900
-				0x17eb0,0x1bf5c,0x17e98,0x1bf4e,0x17e8c,0x17e86,0x13e5c,0x17edc,0x13e4e,0x17ece, // 910
-				0x17e58,0x1bf2e,0x17e4c,0x17e46,0x13e2e,0x17e6e,0x17e2c,0x17e26,0x10f5e,0x11f5c, // 920
-				0x11f4e,0x13f58,0x19fae,0x13f4c,0x13f46,0x11f2e,0x13f6e,0x13f2c,0x13f26),        // 929
-			array( // cluster 6 -----------------------------------------------------------------------
-				0x1abe0,0x1d5f8,0x153c0,0x1a9f0,0x1d4fc,0x151e0,0x1a8f8,0x1d47e,0x150f0,0x1a87c, //  10
-				0x15078,0x1fad0,0x15be0,0x1adf8,0x1fac8,0x159f0,0x1acfc,0x1fac4,0x158f8,0x1ac7e, //  20
-				0x1fac2,0x1587c,0x1f5d0,0x1faec,0x15df8,0x1f5c8,0x1fae6,0x15cfc,0x1f5c4,0x15c7e, //  30
-				0x1f5c2,0x1ebd0,0x1f5ec,0x1ebc8,0x1f5e6,0x1ebc4,0x1ebc2,0x1d7d0,0x1ebec,0x1d7c8, //  40
-				0x1ebe6,0x1d7c4,0x1d7c2,0x1afd0,0x1d7ec,0x1afc8,0x1d7e6,0x1afc4,0x14bc0,0x1a5f0, //  50
-				0x1d2fc,0x149e0,0x1a4f8,0x1d27e,0x148f0,0x1a47c,0x14878,0x1a43e,0x1483c,0x1fa68, //  60
-				0x14df0,0x1a6fc,0x1fa64,0x14cf8,0x1a67e,0x1fa62,0x14c7c,0x14c3e,0x1f4e8,0x1fa76, //  70
-				0x14efc,0x1f4e4,0x14e7e,0x1f4e2,0x1e9e8,0x1f4f6,0x1e9e4,0x1e9e2,0x1d3e8,0x1e9f6, //  80
-				0x1d3e4,0x1d3e2,0x1a7e8,0x1d3f6,0x1a7e4,0x1a7e2,0x145e0,0x1a2f8,0x1d17e,0x144f0, //  90
-				0x1a27c,0x14478,0x1a23e,0x1443c,0x1441e,0x1fa34,0x146f8,0x1a37e,0x1fa32,0x1467c, // 100
-				0x1463e,0x1f474,0x1477e,0x1f472,0x1e8f4,0x1e8f2,0x1d1f4,0x1d1f2,0x1a3f4,0x1a3f2, // 110
-				0x142f0,0x1a17c,0x14278,0x1a13e,0x1423c,0x1421e,0x1fa1a,0x1437c,0x1433e,0x1f43a, // 120
-				0x1e87a,0x1d0fa,0x14178,0x1a0be,0x1413c,0x1411e,0x141be,0x140bc,0x1409e,0x12bc0, // 130
-				0x195f0,0x1cafc,0x129e0,0x194f8,0x1ca7e,0x128f0,0x1947c,0x12878,0x1943e,0x1283c, // 140
-				0x1f968,0x12df0,0x196fc,0x1f964,0x12cf8,0x1967e,0x1f962,0x12c7c,0x12c3e,0x1f2e8, // 150
-				0x1f976,0x12efc,0x1f2e4,0x12e7e,0x1f2e2,0x1e5e8,0x1f2f6,0x1e5e4,0x1e5e2,0x1cbe8, // 160
-				0x1e5f6,0x1cbe4,0x1cbe2,0x197e8,0x1cbf6,0x197e4,0x197e2,0x1b5e0,0x1daf8,0x1ed7e, // 170
-				0x169c0,0x1b4f0,0x1da7c,0x168e0,0x1b478,0x1da3e,0x16870,0x1b43c,0x16838,0x1b41e, // 180
-				0x1681c,0x125e0,0x192f8,0x1c97e,0x16de0,0x124f0,0x1927c,0x16cf0,0x1b67c,0x1923e, // 190
-				0x16c78,0x1243c,0x16c3c,0x1241e,0x16c1e,0x1f934,0x126f8,0x1937e,0x1fb74,0x1f932, // 200
-				0x16ef8,0x1267c,0x1fb72,0x16e7c,0x1263e,0x16e3e,0x1f274,0x1277e,0x1f6f4,0x1f272, // 210
-				0x16f7e,0x1f6f2,0x1e4f4,0x1edf4,0x1e4f2,0x1edf2,0x1c9f4,0x1dbf4,0x1c9f2,0x1dbf2, // 220
-				0x193f4,0x193f2,0x165c0,0x1b2f0,0x1d97c,0x164e0,0x1b278,0x1d93e,0x16470,0x1b23c, // 230
-				0x16438,0x1b21e,0x1641c,0x1640e,0x122f0,0x1917c,0x166f0,0x12278,0x1913e,0x16678, // 240
-				0x1b33e,0x1663c,0x1221e,0x1661e,0x1f91a,0x1237c,0x1fb3a,0x1677c,0x1233e,0x1673e, // 250
-				0x1f23a,0x1f67a,0x1e47a,0x1ecfa,0x1c8fa,0x1d9fa,0x191fa,0x162e0,0x1b178,0x1d8be, // 260
-				0x16270,0x1b13c,0x16238,0x1b11e,0x1621c,0x1620e,0x12178,0x190be,0x16378,0x1213c, // 270
-				0x1633c,0x1211e,0x1631e,0x121be,0x163be,0x16170,0x1b0bc,0x16138,0x1b09e,0x1611c, // 280
-				0x1610e,0x120bc,0x161bc,0x1209e,0x1619e,0x160b8,0x1b05e,0x1609c,0x1608e,0x1205e, // 290
-				0x160de,0x1605c,0x1604e,0x115e0,0x18af8,0x1c57e,0x114f0,0x18a7c,0x11478,0x18a3e, // 300
-				0x1143c,0x1141e,0x1f8b4,0x116f8,0x18b7e,0x1f8b2,0x1167c,0x1163e,0x1f174,0x1177e, // 310
-				0x1f172,0x1e2f4,0x1e2f2,0x1c5f4,0x1c5f2,0x18bf4,0x18bf2,0x135c0,0x19af0,0x1cd7c, // 320
-				0x134e0,0x19a78,0x1cd3e,0x13470,0x19a3c,0x13438,0x19a1e,0x1341c,0x1340e,0x112f0, // 330
-				0x1897c,0x136f0,0x11278,0x1893e,0x13678,0x19b3e,0x1363c,0x1121e,0x1361e,0x1f89a, // 340
-				0x1137c,0x1f9ba,0x1377c,0x1133e,0x1373e,0x1f13a,0x1f37a,0x1e27a,0x1e6fa,0x1c4fa, // 350
-				0x1cdfa,0x189fa,0x1bae0,0x1dd78,0x1eebe,0x174c0,0x1ba70,0x1dd3c,0x17460,0x1ba38, // 360
-				0x1dd1e,0x17430,0x1ba1c,0x17418,0x1ba0e,0x1740c,0x132e0,0x19978,0x1ccbe,0x176e0, // 370
-				0x13270,0x1993c,0x17670,0x1bb3c,0x1991e,0x17638,0x1321c,0x1761c,0x1320e,0x1760e, // 380
-				0x11178,0x188be,0x13378,0x1113c,0x17778,0x1333c,0x1111e,0x1773c,0x1331e,0x1771e, // 390
-				0x111be,0x133be,0x177be,0x172c0,0x1b970,0x1dcbc,0x17260,0x1b938,0x1dc9e,0x17230, // 400
-				0x1b91c,0x17218,0x1b90e,0x1720c,0x17206,0x13170,0x198bc,0x17370,0x13138,0x1989e, // 410
-				0x17338,0x1b99e,0x1731c,0x1310e,0x1730e,0x110bc,0x131bc,0x1109e,0x173bc,0x1319e, // 420
-				0x1739e,0x17160,0x1b8b8,0x1dc5e,0x17130,0x1b89c,0x17118,0x1b88e,0x1710c,0x17106, // 430
-				0x130b8,0x1985e,0x171b8,0x1309c,0x1719c,0x1308e,0x1718e,0x1105e,0x130de,0x171de, // 440
-				0x170b0,0x1b85c,0x17098,0x1b84e,0x1708c,0x17086,0x1305c,0x170dc,0x1304e,0x170ce, // 450
-				0x17058,0x1b82e,0x1704c,0x17046,0x1302e,0x1706e,0x1702c,0x17026,0x10af0,0x1857c, // 460
-				0x10a78,0x1853e,0x10a3c,0x10a1e,0x10b7c,0x10b3e,0x1f0ba,0x1e17a,0x1c2fa,0x185fa, // 470
-				0x11ae0,0x18d78,0x1c6be,0x11a70,0x18d3c,0x11a38,0x18d1e,0x11a1c,0x11a0e,0x10978, // 480
-				0x184be,0x11b78,0x1093c,0x11b3c,0x1091e,0x11b1e,0x109be,0x11bbe,0x13ac0,0x19d70, // 490
-				0x1cebc,0x13a60,0x19d38,0x1ce9e,0x13a30,0x19d1c,0x13a18,0x19d0e,0x13a0c,0x13a06, // 500
-				0x11970,0x18cbc,0x13b70,0x11938,0x18c9e,0x13b38,0x1191c,0x13b1c,0x1190e,0x13b0e, // 510
-				0x108bc,0x119bc,0x1089e,0x13bbc,0x1199e,0x13b9e,0x1bd60,0x1deb8,0x1ef5e,0x17a40, // 520
-				0x1bd30,0x1de9c,0x17a20,0x1bd18,0x1de8e,0x17a10,0x1bd0c,0x17a08,0x1bd06,0x17a04, // 530
-				0x13960,0x19cb8,0x1ce5e,0x17b60,0x13930,0x19c9c,0x17b30,0x1bd9c,0x19c8e,0x17b18, // 540
-				0x1390c,0x17b0c,0x13906,0x17b06,0x118b8,0x18c5e,0x139b8,0x1189c,0x17bb8,0x1399c, // 550
-				0x1188e,0x17b9c,0x1398e,0x17b8e,0x1085e,0x118de,0x139de,0x17bde,0x17940,0x1bcb0, // 560
-				0x1de5c,0x17920,0x1bc98,0x1de4e,0x17910,0x1bc8c,0x17908,0x1bc86,0x17904,0x17902, // 570
-				0x138b0,0x19c5c,0x179b0,0x13898,0x19c4e,0x17998,0x1bcce,0x1798c,0x13886,0x17986, // 580
-				0x1185c,0x138dc,0x1184e,0x179dc,0x138ce,0x179ce,0x178a0,0x1bc58,0x1de2e,0x17890, // 590
-				0x1bc4c,0x17888,0x1bc46,0x17884,0x17882,0x13858,0x19c2e,0x178d8,0x1384c,0x178cc, // 600
-				0x13846,0x178c6,0x1182e,0x1386e,0x178ee,0x17850,0x1bc2c,0x17848,0x1bc26,0x17844, // 610
-				0x17842,0x1382c,0x1786c,0x13826,0x17866,0x17828,0x1bc16,0x17824,0x17822,0x13816, // 620
-				0x17836,0x10578,0x182be,0x1053c,0x1051e,0x105be,0x10d70,0x186bc,0x10d38,0x1869e, // 630
-				0x10d1c,0x10d0e,0x104bc,0x10dbc,0x1049e,0x10d9e,0x11d60,0x18eb8,0x1c75e,0x11d30, // 640
-				0x18e9c,0x11d18,0x18e8e,0x11d0c,0x11d06,0x10cb8,0x1865e,0x11db8,0x10c9c,0x11d9c, // 650
-				0x10c8e,0x11d8e,0x1045e,0x10cde,0x11dde,0x13d40,0x19eb0,0x1cf5c,0x13d20,0x19e98, // 660
-				0x1cf4e,0x13d10,0x19e8c,0x13d08,0x19e86,0x13d04,0x13d02,0x11cb0,0x18e5c,0x13db0, // 670
-				0x11c98,0x18e4e,0x13d98,0x19ece,0x13d8c,0x11c86,0x13d86,0x10c5c,0x11cdc,0x10c4e, // 680
-				0x13ddc,0x11cce,0x13dce,0x1bea0,0x1df58,0x1efae,0x1be90,0x1df4c,0x1be88,0x1df46, // 690
-				0x1be84,0x1be82,0x13ca0,0x19e58,0x1cf2e,0x17da0,0x13c90,0x19e4c,0x17d90,0x1becc, // 700
-				0x19e46,0x17d88,0x13c84,0x17d84,0x13c82,0x17d82,0x11c58,0x18e2e,0x13cd8,0x11c4c, // 710
-				0x17dd8,0x13ccc,0x11c46,0x17dcc,0x13cc6,0x17dc6,0x10c2e,0x11c6e,0x13cee,0x17dee, // 720
-				0x1be50,0x1df2c,0x1be48,0x1df26,0x1be44,0x1be42,0x13c50,0x19e2c,0x17cd0,0x13c48, // 730
-				0x19e26,0x17cc8,0x1be66,0x17cc4,0x13c42,0x17cc2,0x11c2c,0x13c6c,0x11c26,0x17cec, // 740
-				0x13c66,0x17ce6,0x1be28,0x1df16,0x1be24,0x1be22,0x13c28,0x19e16,0x17c68,0x13c24, // 750
-				0x17c64,0x13c22,0x17c62,0x11c16,0x13c36,0x17c76,0x1be14,0x1be12,0x13c14,0x17c34, // 760
-				0x13c12,0x17c32,0x102bc,0x1029e,0x106b8,0x1835e,0x1069c,0x1068e,0x1025e,0x106de, // 770
-				0x10eb0,0x1875c,0x10e98,0x1874e,0x10e8c,0x10e86,0x1065c,0x10edc,0x1064e,0x10ece, // 780
-				0x11ea0,0x18f58,0x1c7ae,0x11e90,0x18f4c,0x11e88,0x18f46,0x11e84,0x11e82,0x10e58, // 790
-				0x1872e,0x11ed8,0x18f6e,0x11ecc,0x10e46,0x11ec6,0x1062e,0x10e6e,0x11eee,0x19f50, // 800
-				0x1cfac,0x19f48,0x1cfa6,0x19f44,0x19f42,0x11e50,0x18f2c,0x13ed0,0x19f6c,0x18f26, // 810
-				0x13ec8,0x11e44,0x13ec4,0x11e42,0x13ec2,0x10e2c,0x11e6c,0x10e26,0x13eec,0x11e66, // 820
-				0x13ee6,0x1dfa8,0x1efd6,0x1dfa4,0x1dfa2,0x19f28,0x1cf96,0x1bf68,0x19f24,0x1bf64, // 830
-				0x19f22,0x1bf62,0x11e28,0x18f16,0x13e68,0x11e24,0x17ee8,0x13e64,0x11e22,0x17ee4, // 840
-				0x13e62,0x17ee2,0x10e16,0x11e36,0x13e76,0x17ef6,0x1df94,0x1df92,0x19f14,0x1bf34, // 850
-				0x19f12,0x1bf32,0x11e14,0x13e34,0x11e12,0x17e74,0x13e32,0x17e72,0x1df8a,0x19f0a, // 860
-				0x1bf1a,0x11e0a,0x13e1a,0x17e3a,0x1035c,0x1034e,0x10758,0x183ae,0x1074c,0x10746, // 870
-				0x1032e,0x1076e,0x10f50,0x187ac,0x10f48,0x187a6,0x10f44,0x10f42,0x1072c,0x10f6c, // 880
-				0x10726,0x10f66,0x18fa8,0x1c7d6,0x18fa4,0x18fa2,0x10f28,0x18796,0x11f68,0x18fb6, // 890
-				0x11f64,0x10f22,0x11f62,0x10716,0x10f36,0x11f76,0x1cfd4,0x1cfd2,0x18f94,0x19fb4, // 900
-				0x18f92,0x19fb2,0x10f14,0x11f34,0x10f12,0x13f74,0x11f32,0x13f72,0x1cfca,0x18f8a, // 910
-				0x19f9a,0x10f0a,0x11f1a,0x13f3a,0x103ac,0x103a6,0x107a8,0x183d6,0x107a4,0x107a2, // 920
-				0x10396,0x107b6,0x187d4,0x187d2,0x10794,0x10fb4,0x10792,0x10fb2,0x1c7ea)         // 929
-		); // end of $clusters array
+	/**
+	 * Clusters of codewords (0, 3, 6)<br/>
+	 * Values are hex equivalents of binary representation of bars (1 = bar, 0 = space).<br/>
+	 * The codewords numbered from 900 to 928 have special meaning, some enable to switch between modes in order to optimise the code:<ul>
+	 * <li>900 : Switch to "Text" mode</li>
+	 * <li>901 : Switch to "Byte" mode</li>
+	 * <li>902 : Switch to "Numeric" mode</li>
+	 * <li>903 - 912 : Reserved</li>
+	 * <li>913 : Switch to "Octet" only for the next codeword</li>
+	 * <li>914 - 920 : Reserved</li>
+	 * <li>921 : Initialization</li>
+	 * <li>922 : Terminator codeword for Macro PDF control block</li>
+	 * <li>923 : Sequence tag to identify the beginning of optional fields in the Macro PDF control block</li>
+	 * <li>924 : Switch to "Byte" mode (If the total number of byte is multiple of 6)</li>
+	 * <li>925 : Identifier for a user defined Extended Channel Interpretation (ECI)</li>
+	 * <li>926 : Identifier for a general purpose ECI format</li>
+	 * <li>927 : Identifier for an ECI of a character set or code page</li>
+	 * <li>928 : Macro marker codeword to indicate the beginning of a Macro PDF Control Block</li>
+	 * </ul>
+	 * @protected
+	 */
+	protected $clusters = array(
+		array( // cluster 0 -----------------------------------------------------------------------
+			0x1d5c0,0x1eaf0,0x1f57c,0x1d4e0,0x1ea78,0x1f53e,0x1a8c0,0x1d470,0x1a860,0x15040, //  10
+			0x1a830,0x15020,0x1adc0,0x1d6f0,0x1eb7c,0x1ace0,0x1d678,0x1eb3e,0x158c0,0x1ac70, //  20
+			0x15860,0x15dc0,0x1aef0,0x1d77c,0x15ce0,0x1ae78,0x1d73e,0x15c70,0x1ae3c,0x15ef0, //  30
+			0x1af7c,0x15e78,0x1af3e,0x15f7c,0x1f5fa,0x1d2e0,0x1e978,0x1f4be,0x1a4c0,0x1d270, //  40
+			0x1e93c,0x1a460,0x1d238,0x14840,0x1a430,0x1d21c,0x14820,0x1a418,0x14810,0x1a6e0, //  50
+			0x1d378,0x1e9be,0x14cc0,0x1a670,0x1d33c,0x14c60,0x1a638,0x1d31e,0x14c30,0x1a61c, //  60
+			0x14ee0,0x1a778,0x1d3be,0x14e70,0x1a73c,0x14e38,0x1a71e,0x14f78,0x1a7be,0x14f3c, //  70
+			0x14f1e,0x1a2c0,0x1d170,0x1e8bc,0x1a260,0x1d138,0x1e89e,0x14440,0x1a230,0x1d11c, //  80
+			0x14420,0x1a218,0x14410,0x14408,0x146c0,0x1a370,0x1d1bc,0x14660,0x1a338,0x1d19e, //  90
+			0x14630,0x1a31c,0x14618,0x1460c,0x14770,0x1a3bc,0x14738,0x1a39e,0x1471c,0x147bc, // 100
+			0x1a160,0x1d0b8,0x1e85e,0x14240,0x1a130,0x1d09c,0x14220,0x1a118,0x1d08e,0x14210, // 110
+			0x1a10c,0x14208,0x1a106,0x14360,0x1a1b8,0x1d0de,0x14330,0x1a19c,0x14318,0x1a18e, // 120
+			0x1430c,0x14306,0x1a1de,0x1438e,0x14140,0x1a0b0,0x1d05c,0x14120,0x1a098,0x1d04e, // 130
+			0x14110,0x1a08c,0x14108,0x1a086,0x14104,0x141b0,0x14198,0x1418c,0x140a0,0x1d02e, // 140
+			0x1a04c,0x1a046,0x14082,0x1cae0,0x1e578,0x1f2be,0x194c0,0x1ca70,0x1e53c,0x19460, // 150
+			0x1ca38,0x1e51e,0x12840,0x19430,0x12820,0x196e0,0x1cb78,0x1e5be,0x12cc0,0x19670, // 160
+			0x1cb3c,0x12c60,0x19638,0x12c30,0x12c18,0x12ee0,0x19778,0x1cbbe,0x12e70,0x1973c, // 170
+			0x12e38,0x12e1c,0x12f78,0x197be,0x12f3c,0x12fbe,0x1dac0,0x1ed70,0x1f6bc,0x1da60, // 180
+			0x1ed38,0x1f69e,0x1b440,0x1da30,0x1ed1c,0x1b420,0x1da18,0x1ed0e,0x1b410,0x1da0c, // 190
+			0x192c0,0x1c970,0x1e4bc,0x1b6c0,0x19260,0x1c938,0x1e49e,0x1b660,0x1db38,0x1ed9e, // 200
+			0x16c40,0x12420,0x19218,0x1c90e,0x16c20,0x1b618,0x16c10,0x126c0,0x19370,0x1c9bc, // 210
+			0x16ec0,0x12660,0x19338,0x1c99e,0x16e60,0x1b738,0x1db9e,0x16e30,0x12618,0x16e18, // 220
+			0x12770,0x193bc,0x16f70,0x12738,0x1939e,0x16f38,0x1b79e,0x16f1c,0x127bc,0x16fbc, // 230
+			0x1279e,0x16f9e,0x1d960,0x1ecb8,0x1f65e,0x1b240,0x1d930,0x1ec9c,0x1b220,0x1d918, // 240
+			0x1ec8e,0x1b210,0x1d90c,0x1b208,0x1b204,0x19160,0x1c8b8,0x1e45e,0x1b360,0x19130, // 250
+			0x1c89c,0x16640,0x12220,0x1d99c,0x1c88e,0x16620,0x12210,0x1910c,0x16610,0x1b30c, // 260
+			0x19106,0x12204,0x12360,0x191b8,0x1c8de,0x16760,0x12330,0x1919c,0x16730,0x1b39c, // 270
+			0x1918e,0x16718,0x1230c,0x12306,0x123b8,0x191de,0x167b8,0x1239c,0x1679c,0x1238e, // 280
+			0x1678e,0x167de,0x1b140,0x1d8b0,0x1ec5c,0x1b120,0x1d898,0x1ec4e,0x1b110,0x1d88c, // 290
+			0x1b108,0x1d886,0x1b104,0x1b102,0x12140,0x190b0,0x1c85c,0x16340,0x12120,0x19098, // 300
+			0x1c84e,0x16320,0x1b198,0x1d8ce,0x16310,0x12108,0x19086,0x16308,0x1b186,0x16304, // 310
+			0x121b0,0x190dc,0x163b0,0x12198,0x190ce,0x16398,0x1b1ce,0x1638c,0x12186,0x16386, // 320
+			0x163dc,0x163ce,0x1b0a0,0x1d858,0x1ec2e,0x1b090,0x1d84c,0x1b088,0x1d846,0x1b084, // 330
+			0x1b082,0x120a0,0x19058,0x1c82e,0x161a0,0x12090,0x1904c,0x16190,0x1b0cc,0x19046, // 340
+			0x16188,0x12084,0x16184,0x12082,0x120d8,0x161d8,0x161cc,0x161c6,0x1d82c,0x1d826, // 350
+			0x1b042,0x1902c,0x12048,0x160c8,0x160c4,0x160c2,0x18ac0,0x1c570,0x1e2bc,0x18a60, // 360
+			0x1c538,0x11440,0x18a30,0x1c51c,0x11420,0x18a18,0x11410,0x11408,0x116c0,0x18b70, // 370
+			0x1c5bc,0x11660,0x18b38,0x1c59e,0x11630,0x18b1c,0x11618,0x1160c,0x11770,0x18bbc, // 380
+			0x11738,0x18b9e,0x1171c,0x117bc,0x1179e,0x1cd60,0x1e6b8,0x1f35e,0x19a40,0x1cd30, // 390
+			0x1e69c,0x19a20,0x1cd18,0x1e68e,0x19a10,0x1cd0c,0x19a08,0x1cd06,0x18960,0x1c4b8, // 400
+			0x1e25e,0x19b60,0x18930,0x1c49c,0x13640,0x11220,0x1cd9c,0x1c48e,0x13620,0x19b18, // 410
+			0x1890c,0x13610,0x11208,0x13608,0x11360,0x189b8,0x1c4de,0x13760,0x11330,0x1cdde, // 420
+			0x13730,0x19b9c,0x1898e,0x13718,0x1130c,0x1370c,0x113b8,0x189de,0x137b8,0x1139c, // 430
+			0x1379c,0x1138e,0x113de,0x137de,0x1dd40,0x1eeb0,0x1f75c,0x1dd20,0x1ee98,0x1f74e, // 440
+			0x1dd10,0x1ee8c,0x1dd08,0x1ee86,0x1dd04,0x19940,0x1ccb0,0x1e65c,0x1bb40,0x19920, // 450
+			0x1eedc,0x1e64e,0x1bb20,0x1dd98,0x1eece,0x1bb10,0x19908,0x1cc86,0x1bb08,0x1dd86, // 460
+			0x19902,0x11140,0x188b0,0x1c45c,0x13340,0x11120,0x18898,0x1c44e,0x17740,0x13320, // 470
+			0x19998,0x1ccce,0x17720,0x1bb98,0x1ddce,0x18886,0x17710,0x13308,0x19986,0x17708, // 480
+			0x11102,0x111b0,0x188dc,0x133b0,0x11198,0x188ce,0x177b0,0x13398,0x199ce,0x17798, // 490
+			0x1bbce,0x11186,0x13386,0x111dc,0x133dc,0x111ce,0x177dc,0x133ce,0x1dca0,0x1ee58, // 500
+			0x1f72e,0x1dc90,0x1ee4c,0x1dc88,0x1ee46,0x1dc84,0x1dc82,0x198a0,0x1cc58,0x1e62e, // 510
+			0x1b9a0,0x19890,0x1ee6e,0x1b990,0x1dccc,0x1cc46,0x1b988,0x19884,0x1b984,0x19882, // 520
+			0x1b982,0x110a0,0x18858,0x1c42e,0x131a0,0x11090,0x1884c,0x173a0,0x13190,0x198cc, // 530
+			0x18846,0x17390,0x1b9cc,0x11084,0x17388,0x13184,0x11082,0x13182,0x110d8,0x1886e, // 540
+			0x131d8,0x110cc,0x173d8,0x131cc,0x110c6,0x173cc,0x131c6,0x110ee,0x173ee,0x1dc50, // 550
+			0x1ee2c,0x1dc48,0x1ee26,0x1dc44,0x1dc42,0x19850,0x1cc2c,0x1b8d0,0x19848,0x1cc26, // 560
+			0x1b8c8,0x1dc66,0x1b8c4,0x19842,0x1b8c2,0x11050,0x1882c,0x130d0,0x11048,0x18826, // 570
+			0x171d0,0x130c8,0x19866,0x171c8,0x1b8e6,0x11042,0x171c4,0x130c2,0x171c2,0x130ec, // 580
+			0x171ec,0x171e6,0x1ee16,0x1dc22,0x1cc16,0x19824,0x19822,0x11028,0x13068,0x170e8, // 590
+			0x11022,0x13062,0x18560,0x10a40,0x18530,0x10a20,0x18518,0x1c28e,0x10a10,0x1850c, // 600
+			0x10a08,0x18506,0x10b60,0x185b8,0x1c2de,0x10b30,0x1859c,0x10b18,0x1858e,0x10b0c, // 610
+			0x10b06,0x10bb8,0x185de,0x10b9c,0x10b8e,0x10bde,0x18d40,0x1c6b0,0x1e35c,0x18d20, // 620
+			0x1c698,0x18d10,0x1c68c,0x18d08,0x1c686,0x18d04,0x10940,0x184b0,0x1c25c,0x11b40, // 630
+			0x10920,0x1c6dc,0x1c24e,0x11b20,0x18d98,0x1c6ce,0x11b10,0x10908,0x18486,0x11b08, // 640
+			0x18d86,0x10902,0x109b0,0x184dc,0x11bb0,0x10998,0x184ce,0x11b98,0x18dce,0x11b8c, // 650
+			0x10986,0x109dc,0x11bdc,0x109ce,0x11bce,0x1cea0,0x1e758,0x1f3ae,0x1ce90,0x1e74c, // 660
+			0x1ce88,0x1e746,0x1ce84,0x1ce82,0x18ca0,0x1c658,0x19da0,0x18c90,0x1c64c,0x19d90, // 670
+			0x1cecc,0x1c646,0x19d88,0x18c84,0x19d84,0x18c82,0x19d82,0x108a0,0x18458,0x119a0, // 680
+			0x10890,0x1c66e,0x13ba0,0x11990,0x18ccc,0x18446,0x13b90,0x19dcc,0x10884,0x13b88, // 690
+			0x11984,0x10882,0x11982,0x108d8,0x1846e,0x119d8,0x108cc,0x13bd8,0x119cc,0x108c6, // 700
+			0x13bcc,0x119c6,0x108ee,0x119ee,0x13bee,0x1ef50,0x1f7ac,0x1ef48,0x1f7a6,0x1ef44, // 710
+			0x1ef42,0x1ce50,0x1e72c,0x1ded0,0x1ef6c,0x1e726,0x1dec8,0x1ef66,0x1dec4,0x1ce42, // 720
+			0x1dec2,0x18c50,0x1c62c,0x19cd0,0x18c48,0x1c626,0x1bdd0,0x19cc8,0x1ce66,0x1bdc8, // 730
+			0x1dee6,0x18c42,0x1bdc4,0x19cc2,0x1bdc2,0x10850,0x1842c,0x118d0,0x10848,0x18426, // 740
+			0x139d0,0x118c8,0x18c66,0x17bd0,0x139c8,0x19ce6,0x10842,0x17bc8,0x1bde6,0x118c2, // 750
+			0x17bc4,0x1086c,0x118ec,0x10866,0x139ec,0x118e6,0x17bec,0x139e6,0x17be6,0x1ef28, // 760
+			0x1f796,0x1ef24,0x1ef22,0x1ce28,0x1e716,0x1de68,0x1ef36,0x1de64,0x1ce22,0x1de62, // 770
+			0x18c28,0x1c616,0x19c68,0x18c24,0x1bce8,0x19c64,0x18c22,0x1bce4,0x19c62,0x1bce2, // 780
+			0x10828,0x18416,0x11868,0x18c36,0x138e8,0x11864,0x10822,0x179e8,0x138e4,0x11862, // 790
+			0x179e4,0x138e2,0x179e2,0x11876,0x179f6,0x1ef12,0x1de34,0x1de32,0x19c34,0x1bc74, // 800
+			0x1bc72,0x11834,0x13874,0x178f4,0x178f2,0x10540,0x10520,0x18298,0x10510,0x10508, // 810
+			0x10504,0x105b0,0x10598,0x1058c,0x10586,0x105dc,0x105ce,0x186a0,0x18690,0x1c34c, // 820
+			0x18688,0x1c346,0x18684,0x18682,0x104a0,0x18258,0x10da0,0x186d8,0x1824c,0x10d90, // 830
+			0x186cc,0x10d88,0x186c6,0x10d84,0x10482,0x10d82,0x104d8,0x1826e,0x10dd8,0x186ee, // 840
+			0x10dcc,0x104c6,0x10dc6,0x104ee,0x10dee,0x1c750,0x1c748,0x1c744,0x1c742,0x18650, // 850
+			0x18ed0,0x1c76c,0x1c326,0x18ec8,0x1c766,0x18ec4,0x18642,0x18ec2,0x10450,0x10cd0, // 860
+			0x10448,0x18226,0x11dd0,0x10cc8,0x10444,0x11dc8,0x10cc4,0x10442,0x11dc4,0x10cc2, // 870
+			0x1046c,0x10cec,0x10466,0x11dec,0x10ce6,0x11de6,0x1e7a8,0x1e7a4,0x1e7a2,0x1c728, // 880
+			0x1cf68,0x1e7b6,0x1cf64,0x1c722,0x1cf62,0x18628,0x1c316,0x18e68,0x1c736,0x19ee8, // 890
+			0x18e64,0x18622,0x19ee4,0x18e62,0x19ee2,0x10428,0x18216,0x10c68,0x18636,0x11ce8, // 900
+			0x10c64,0x10422,0x13de8,0x11ce4,0x10c62,0x13de4,0x11ce2,0x10436,0x10c76,0x11cf6, // 910
+			0x13df6,0x1f7d4,0x1f7d2,0x1e794,0x1efb4,0x1e792,0x1efb2,0x1c714,0x1cf34,0x1c712, // 920
+			0x1df74,0x1cf32,0x1df72,0x18614,0x18e34,0x18612,0x19e74,0x18e32,0x1bef4),        // 929
+		array( // cluster 3 -----------------------------------------------------------------------
+			0x1f560,0x1fab8,0x1ea40,0x1f530,0x1fa9c,0x1ea20,0x1f518,0x1fa8e,0x1ea10,0x1f50c, //  10
+			0x1ea08,0x1f506,0x1ea04,0x1eb60,0x1f5b8,0x1fade,0x1d640,0x1eb30,0x1f59c,0x1d620, //  20
+			0x1eb18,0x1f58e,0x1d610,0x1eb0c,0x1d608,0x1eb06,0x1d604,0x1d760,0x1ebb8,0x1f5de, //  30
+			0x1ae40,0x1d730,0x1eb9c,0x1ae20,0x1d718,0x1eb8e,0x1ae10,0x1d70c,0x1ae08,0x1d706, //  40
+			0x1ae04,0x1af60,0x1d7b8,0x1ebde,0x15e40,0x1af30,0x1d79c,0x15e20,0x1af18,0x1d78e, //  50
+			0x15e10,0x1af0c,0x15e08,0x1af06,0x15f60,0x1afb8,0x1d7de,0x15f30,0x1af9c,0x15f18, //  60
+			0x1af8e,0x15f0c,0x15fb8,0x1afde,0x15f9c,0x15f8e,0x1e940,0x1f4b0,0x1fa5c,0x1e920, //  70
+			0x1f498,0x1fa4e,0x1e910,0x1f48c,0x1e908,0x1f486,0x1e904,0x1e902,0x1d340,0x1e9b0, //  80
+			0x1f4dc,0x1d320,0x1e998,0x1f4ce,0x1d310,0x1e98c,0x1d308,0x1e986,0x1d304,0x1d302, //  90
+			0x1a740,0x1d3b0,0x1e9dc,0x1a720,0x1d398,0x1e9ce,0x1a710,0x1d38c,0x1a708,0x1d386, // 100
+			0x1a704,0x1a702,0x14f40,0x1a7b0,0x1d3dc,0x14f20,0x1a798,0x1d3ce,0x14f10,0x1a78c, // 110
+			0x14f08,0x1a786,0x14f04,0x14fb0,0x1a7dc,0x14f98,0x1a7ce,0x14f8c,0x14f86,0x14fdc, // 120
+			0x14fce,0x1e8a0,0x1f458,0x1fa2e,0x1e890,0x1f44c,0x1e888,0x1f446,0x1e884,0x1e882, // 130
+			0x1d1a0,0x1e8d8,0x1f46e,0x1d190,0x1e8cc,0x1d188,0x1e8c6,0x1d184,0x1d182,0x1a3a0, // 140
+			0x1d1d8,0x1e8ee,0x1a390,0x1d1cc,0x1a388,0x1d1c6,0x1a384,0x1a382,0x147a0,0x1a3d8, // 150
+			0x1d1ee,0x14790,0x1a3cc,0x14788,0x1a3c6,0x14784,0x14782,0x147d8,0x1a3ee,0x147cc, // 160
+			0x147c6,0x147ee,0x1e850,0x1f42c,0x1e848,0x1f426,0x1e844,0x1e842,0x1d0d0,0x1e86c, // 170
+			0x1d0c8,0x1e866,0x1d0c4,0x1d0c2,0x1a1d0,0x1d0ec,0x1a1c8,0x1d0e6,0x1a1c4,0x1a1c2, // 180
+			0x143d0,0x1a1ec,0x143c8,0x1a1e6,0x143c4,0x143c2,0x143ec,0x143e6,0x1e828,0x1f416, // 190
+			0x1e824,0x1e822,0x1d068,0x1e836,0x1d064,0x1d062,0x1a0e8,0x1d076,0x1a0e4,0x1a0e2, // 200
+			0x141e8,0x1a0f6,0x141e4,0x141e2,0x1e814,0x1e812,0x1d034,0x1d032,0x1a074,0x1a072, // 210
+			0x1e540,0x1f2b0,0x1f95c,0x1e520,0x1f298,0x1f94e,0x1e510,0x1f28c,0x1e508,0x1f286, // 220
+			0x1e504,0x1e502,0x1cb40,0x1e5b0,0x1f2dc,0x1cb20,0x1e598,0x1f2ce,0x1cb10,0x1e58c, // 230
+			0x1cb08,0x1e586,0x1cb04,0x1cb02,0x19740,0x1cbb0,0x1e5dc,0x19720,0x1cb98,0x1e5ce, // 240
+			0x19710,0x1cb8c,0x19708,0x1cb86,0x19704,0x19702,0x12f40,0x197b0,0x1cbdc,0x12f20, // 250
+			0x19798,0x1cbce,0x12f10,0x1978c,0x12f08,0x19786,0x12f04,0x12fb0,0x197dc,0x12f98, // 260
+			0x197ce,0x12f8c,0x12f86,0x12fdc,0x12fce,0x1f6a0,0x1fb58,0x16bf0,0x1f690,0x1fb4c, // 270
+			0x169f8,0x1f688,0x1fb46,0x168fc,0x1f684,0x1f682,0x1e4a0,0x1f258,0x1f92e,0x1eda0, // 280
+			0x1e490,0x1fb6e,0x1ed90,0x1f6cc,0x1f246,0x1ed88,0x1e484,0x1ed84,0x1e482,0x1ed82, // 290
+			0x1c9a0,0x1e4d8,0x1f26e,0x1dba0,0x1c990,0x1e4cc,0x1db90,0x1edcc,0x1e4c6,0x1db88, // 300
+			0x1c984,0x1db84,0x1c982,0x1db82,0x193a0,0x1c9d8,0x1e4ee,0x1b7a0,0x19390,0x1c9cc, // 310
+			0x1b790,0x1dbcc,0x1c9c6,0x1b788,0x19384,0x1b784,0x19382,0x1b782,0x127a0,0x193d8, // 320
+			0x1c9ee,0x16fa0,0x12790,0x193cc,0x16f90,0x1b7cc,0x193c6,0x16f88,0x12784,0x16f84, // 330
+			0x12782,0x127d8,0x193ee,0x16fd8,0x127cc,0x16fcc,0x127c6,0x16fc6,0x127ee,0x1f650, // 340
+			0x1fb2c,0x165f8,0x1f648,0x1fb26,0x164fc,0x1f644,0x1647e,0x1f642,0x1e450,0x1f22c, // 350
+			0x1ecd0,0x1e448,0x1f226,0x1ecc8,0x1f666,0x1ecc4,0x1e442,0x1ecc2,0x1c8d0,0x1e46c, // 360
+			0x1d9d0,0x1c8c8,0x1e466,0x1d9c8,0x1ece6,0x1d9c4,0x1c8c2,0x1d9c2,0x191d0,0x1c8ec, // 370
+			0x1b3d0,0x191c8,0x1c8e6,0x1b3c8,0x1d9e6,0x1b3c4,0x191c2,0x1b3c2,0x123d0,0x191ec, // 380
+			0x167d0,0x123c8,0x191e6,0x167c8,0x1b3e6,0x167c4,0x123c2,0x167c2,0x123ec,0x167ec, // 390
+			0x123e6,0x167e6,0x1f628,0x1fb16,0x162fc,0x1f624,0x1627e,0x1f622,0x1e428,0x1f216, // 400
+			0x1ec68,0x1f636,0x1ec64,0x1e422,0x1ec62,0x1c868,0x1e436,0x1d8e8,0x1c864,0x1d8e4, // 410
+			0x1c862,0x1d8e2,0x190e8,0x1c876,0x1b1e8,0x1d8f6,0x1b1e4,0x190e2,0x1b1e2,0x121e8, // 420
+			0x190f6,0x163e8,0x121e4,0x163e4,0x121e2,0x163e2,0x121f6,0x163f6,0x1f614,0x1617e, // 430
+			0x1f612,0x1e414,0x1ec34,0x1e412,0x1ec32,0x1c834,0x1d874,0x1c832,0x1d872,0x19074, // 440
+			0x1b0f4,0x19072,0x1b0f2,0x120f4,0x161f4,0x120f2,0x161f2,0x1f60a,0x1e40a,0x1ec1a, // 450
+			0x1c81a,0x1d83a,0x1903a,0x1b07a,0x1e2a0,0x1f158,0x1f8ae,0x1e290,0x1f14c,0x1e288, // 460
+			0x1f146,0x1e284,0x1e282,0x1c5a0,0x1e2d8,0x1f16e,0x1c590,0x1e2cc,0x1c588,0x1e2c6, // 470
+			0x1c584,0x1c582,0x18ba0,0x1c5d8,0x1e2ee,0x18b90,0x1c5cc,0x18b88,0x1c5c6,0x18b84, // 480
+			0x18b82,0x117a0,0x18bd8,0x1c5ee,0x11790,0x18bcc,0x11788,0x18bc6,0x11784,0x11782, // 490
+			0x117d8,0x18bee,0x117cc,0x117c6,0x117ee,0x1f350,0x1f9ac,0x135f8,0x1f348,0x1f9a6, // 500
+			0x134fc,0x1f344,0x1347e,0x1f342,0x1e250,0x1f12c,0x1e6d0,0x1e248,0x1f126,0x1e6c8, // 510
+			0x1f366,0x1e6c4,0x1e242,0x1e6c2,0x1c4d0,0x1e26c,0x1cdd0,0x1c4c8,0x1e266,0x1cdc8, // 520
+			0x1e6e6,0x1cdc4,0x1c4c2,0x1cdc2,0x189d0,0x1c4ec,0x19bd0,0x189c8,0x1c4e6,0x19bc8, // 530
+			0x1cde6,0x19bc4,0x189c2,0x19bc2,0x113d0,0x189ec,0x137d0,0x113c8,0x189e6,0x137c8, // 540
+			0x19be6,0x137c4,0x113c2,0x137c2,0x113ec,0x137ec,0x113e6,0x137e6,0x1fba8,0x175f0, // 550
+			0x1bafc,0x1fba4,0x174f8,0x1ba7e,0x1fba2,0x1747c,0x1743e,0x1f328,0x1f996,0x132fc, // 560
+			0x1f768,0x1fbb6,0x176fc,0x1327e,0x1f764,0x1f322,0x1767e,0x1f762,0x1e228,0x1f116, // 570
+			0x1e668,0x1e224,0x1eee8,0x1f776,0x1e222,0x1eee4,0x1e662,0x1eee2,0x1c468,0x1e236, // 580
+			0x1cce8,0x1c464,0x1dde8,0x1cce4,0x1c462,0x1dde4,0x1cce2,0x1dde2,0x188e8,0x1c476, // 590
+			0x199e8,0x188e4,0x1bbe8,0x199e4,0x188e2,0x1bbe4,0x199e2,0x1bbe2,0x111e8,0x188f6, // 600
+			0x133e8,0x111e4,0x177e8,0x133e4,0x111e2,0x177e4,0x133e2,0x177e2,0x111f6,0x133f6, // 610
+			0x1fb94,0x172f8,0x1b97e,0x1fb92,0x1727c,0x1723e,0x1f314,0x1317e,0x1f734,0x1f312, // 620
+			0x1737e,0x1f732,0x1e214,0x1e634,0x1e212,0x1ee74,0x1e632,0x1ee72,0x1c434,0x1cc74, // 630
+			0x1c432,0x1dcf4,0x1cc72,0x1dcf2,0x18874,0x198f4,0x18872,0x1b9f4,0x198f2,0x1b9f2, // 640
+			0x110f4,0x131f4,0x110f2,0x173f4,0x131f2,0x173f2,0x1fb8a,0x1717c,0x1713e,0x1f30a, // 650
+			0x1f71a,0x1e20a,0x1e61a,0x1ee3a,0x1c41a,0x1cc3a,0x1dc7a,0x1883a,0x1987a,0x1b8fa, // 660
+			0x1107a,0x130fa,0x171fa,0x170be,0x1e150,0x1f0ac,0x1e148,0x1f0a6,0x1e144,0x1e142, // 670
+			0x1c2d0,0x1e16c,0x1c2c8,0x1e166,0x1c2c4,0x1c2c2,0x185d0,0x1c2ec,0x185c8,0x1c2e6, // 680
+			0x185c4,0x185c2,0x10bd0,0x185ec,0x10bc8,0x185e6,0x10bc4,0x10bc2,0x10bec,0x10be6, // 690
+			0x1f1a8,0x1f8d6,0x11afc,0x1f1a4,0x11a7e,0x1f1a2,0x1e128,0x1f096,0x1e368,0x1e124, // 700
+			0x1e364,0x1e122,0x1e362,0x1c268,0x1e136,0x1c6e8,0x1c264,0x1c6e4,0x1c262,0x1c6e2, // 710
+			0x184e8,0x1c276,0x18de8,0x184e4,0x18de4,0x184e2,0x18de2,0x109e8,0x184f6,0x11be8, // 720
+			0x109e4,0x11be4,0x109e2,0x11be2,0x109f6,0x11bf6,0x1f9d4,0x13af8,0x19d7e,0x1f9d2, // 730
+			0x13a7c,0x13a3e,0x1f194,0x1197e,0x1f3b4,0x1f192,0x13b7e,0x1f3b2,0x1e114,0x1e334, // 740
+			0x1e112,0x1e774,0x1e332,0x1e772,0x1c234,0x1c674,0x1c232,0x1cef4,0x1c672,0x1cef2, // 750
+			0x18474,0x18cf4,0x18472,0x19df4,0x18cf2,0x19df2,0x108f4,0x119f4,0x108f2,0x13bf4, // 760
+			0x119f2,0x13bf2,0x17af0,0x1bd7c,0x17a78,0x1bd3e,0x17a3c,0x17a1e,0x1f9ca,0x1397c, // 770
+			0x1fbda,0x17b7c,0x1393e,0x17b3e,0x1f18a,0x1f39a,0x1f7ba,0x1e10a,0x1e31a,0x1e73a, // 780
+			0x1ef7a,0x1c21a,0x1c63a,0x1ce7a,0x1defa,0x1843a,0x18c7a,0x19cfa,0x1bdfa,0x1087a, // 790
+			0x118fa,0x139fa,0x17978,0x1bcbe,0x1793c,0x1791e,0x138be,0x179be,0x178bc,0x1789e, // 800
+			0x1785e,0x1e0a8,0x1e0a4,0x1e0a2,0x1c168,0x1e0b6,0x1c164,0x1c162,0x182e8,0x1c176, // 810
+			0x182e4,0x182e2,0x105e8,0x182f6,0x105e4,0x105e2,0x105f6,0x1f0d4,0x10d7e,0x1f0d2, // 820
+			0x1e094,0x1e1b4,0x1e092,0x1e1b2,0x1c134,0x1c374,0x1c132,0x1c372,0x18274,0x186f4, // 830
+			0x18272,0x186f2,0x104f4,0x10df4,0x104f2,0x10df2,0x1f8ea,0x11d7c,0x11d3e,0x1f0ca, // 840
+			0x1f1da,0x1e08a,0x1e19a,0x1e3ba,0x1c11a,0x1c33a,0x1c77a,0x1823a,0x1867a,0x18efa, // 850
+			0x1047a,0x10cfa,0x11dfa,0x13d78,0x19ebe,0x13d3c,0x13d1e,0x11cbe,0x13dbe,0x17d70, // 860
+			0x1bebc,0x17d38,0x1be9e,0x17d1c,0x17d0e,0x13cbc,0x17dbc,0x13c9e,0x17d9e,0x17cb8, // 870
+			0x1be5e,0x17c9c,0x17c8e,0x13c5e,0x17cde,0x17c5c,0x17c4e,0x17c2e,0x1c0b4,0x1c0b2, // 880
+			0x18174,0x18172,0x102f4,0x102f2,0x1e0da,0x1c09a,0x1c1ba,0x1813a,0x1837a,0x1027a, // 890
+			0x106fa,0x10ebe,0x11ebc,0x11e9e,0x13eb8,0x19f5e,0x13e9c,0x13e8e,0x11e5e,0x13ede, // 900
+			0x17eb0,0x1bf5c,0x17e98,0x1bf4e,0x17e8c,0x17e86,0x13e5c,0x17edc,0x13e4e,0x17ece, // 910
+			0x17e58,0x1bf2e,0x17e4c,0x17e46,0x13e2e,0x17e6e,0x17e2c,0x17e26,0x10f5e,0x11f5c, // 920
+			0x11f4e,0x13f58,0x19fae,0x13f4c,0x13f46,0x11f2e,0x13f6e,0x13f2c,0x13f26),        // 929
+		array( // cluster 6 -----------------------------------------------------------------------
+			0x1abe0,0x1d5f8,0x153c0,0x1a9f0,0x1d4fc,0x151e0,0x1a8f8,0x1d47e,0x150f0,0x1a87c, //  10
+			0x15078,0x1fad0,0x15be0,0x1adf8,0x1fac8,0x159f0,0x1acfc,0x1fac4,0x158f8,0x1ac7e, //  20
+			0x1fac2,0x1587c,0x1f5d0,0x1faec,0x15df8,0x1f5c8,0x1fae6,0x15cfc,0x1f5c4,0x15c7e, //  30
+			0x1f5c2,0x1ebd0,0x1f5ec,0x1ebc8,0x1f5e6,0x1ebc4,0x1ebc2,0x1d7d0,0x1ebec,0x1d7c8, //  40
+			0x1ebe6,0x1d7c4,0x1d7c2,0x1afd0,0x1d7ec,0x1afc8,0x1d7e6,0x1afc4,0x14bc0,0x1a5f0, //  50
+			0x1d2fc,0x149e0,0x1a4f8,0x1d27e,0x148f0,0x1a47c,0x14878,0x1a43e,0x1483c,0x1fa68, //  60
+			0x14df0,0x1a6fc,0x1fa64,0x14cf8,0x1a67e,0x1fa62,0x14c7c,0x14c3e,0x1f4e8,0x1fa76, //  70
+			0x14efc,0x1f4e4,0x14e7e,0x1f4e2,0x1e9e8,0x1f4f6,0x1e9e4,0x1e9e2,0x1d3e8,0x1e9f6, //  80
+			0x1d3e4,0x1d3e2,0x1a7e8,0x1d3f6,0x1a7e4,0x1a7e2,0x145e0,0x1a2f8,0x1d17e,0x144f0, //  90
+			0x1a27c,0x14478,0x1a23e,0x1443c,0x1441e,0x1fa34,0x146f8,0x1a37e,0x1fa32,0x1467c, // 100
+			0x1463e,0x1f474,0x1477e,0x1f472,0x1e8f4,0x1e8f2,0x1d1f4,0x1d1f2,0x1a3f4,0x1a3f2, // 110
+			0x142f0,0x1a17c,0x14278,0x1a13e,0x1423c,0x1421e,0x1fa1a,0x1437c,0x1433e,0x1f43a, // 120
+			0x1e87a,0x1d0fa,0x14178,0x1a0be,0x1413c,0x1411e,0x141be,0x140bc,0x1409e,0x12bc0, // 130
+			0x195f0,0x1cafc,0x129e0,0x194f8,0x1ca7e,0x128f0,0x1947c,0x12878,0x1943e,0x1283c, // 140
+			0x1f968,0x12df0,0x196fc,0x1f964,0x12cf8,0x1967e,0x1f962,0x12c7c,0x12c3e,0x1f2e8, // 150
+			0x1f976,0x12efc,0x1f2e4,0x12e7e,0x1f2e2,0x1e5e8,0x1f2f6,0x1e5e4,0x1e5e2,0x1cbe8, // 160
+			0x1e5f6,0x1cbe4,0x1cbe2,0x197e8,0x1cbf6,0x197e4,0x197e2,0x1b5e0,0x1daf8,0x1ed7e, // 170
+			0x169c0,0x1b4f0,0x1da7c,0x168e0,0x1b478,0x1da3e,0x16870,0x1b43c,0x16838,0x1b41e, // 180
+			0x1681c,0x125e0,0x192f8,0x1c97e,0x16de0,0x124f0,0x1927c,0x16cf0,0x1b67c,0x1923e, // 190
+			0x16c78,0x1243c,0x16c3c,0x1241e,0x16c1e,0x1f934,0x126f8,0x1937e,0x1fb74,0x1f932, // 200
+			0x16ef8,0x1267c,0x1fb72,0x16e7c,0x1263e,0x16e3e,0x1f274,0x1277e,0x1f6f4,0x1f272, // 210
+			0x16f7e,0x1f6f2,0x1e4f4,0x1edf4,0x1e4f2,0x1edf2,0x1c9f4,0x1dbf4,0x1c9f2,0x1dbf2, // 220
+			0x193f4,0x193f2,0x165c0,0x1b2f0,0x1d97c,0x164e0,0x1b278,0x1d93e,0x16470,0x1b23c, // 230
+			0x16438,0x1b21e,0x1641c,0x1640e,0x122f0,0x1917c,0x166f0,0x12278,0x1913e,0x16678, // 240
+			0x1b33e,0x1663c,0x1221e,0x1661e,0x1f91a,0x1237c,0x1fb3a,0x1677c,0x1233e,0x1673e, // 250
+			0x1f23a,0x1f67a,0x1e47a,0x1ecfa,0x1c8fa,0x1d9fa,0x191fa,0x162e0,0x1b178,0x1d8be, // 260
+			0x16270,0x1b13c,0x16238,0x1b11e,0x1621c,0x1620e,0x12178,0x190be,0x16378,0x1213c, // 270
+			0x1633c,0x1211e,0x1631e,0x121be,0x163be,0x16170,0x1b0bc,0x16138,0x1b09e,0x1611c, // 280
+			0x1610e,0x120bc,0x161bc,0x1209e,0x1619e,0x160b8,0x1b05e,0x1609c,0x1608e,0x1205e, // 290
+			0x160de,0x1605c,0x1604e,0x115e0,0x18af8,0x1c57e,0x114f0,0x18a7c,0x11478,0x18a3e, // 300
+			0x1143c,0x1141e,0x1f8b4,0x116f8,0x18b7e,0x1f8b2,0x1167c,0x1163e,0x1f174,0x1177e, // 310
+			0x1f172,0x1e2f4,0x1e2f2,0x1c5f4,0x1c5f2,0x18bf4,0x18bf2,0x135c0,0x19af0,0x1cd7c, // 320
+			0x134e0,0x19a78,0x1cd3e,0x13470,0x19a3c,0x13438,0x19a1e,0x1341c,0x1340e,0x112f0, // 330
+			0x1897c,0x136f0,0x11278,0x1893e,0x13678,0x19b3e,0x1363c,0x1121e,0x1361e,0x1f89a, // 340
+			0x1137c,0x1f9ba,0x1377c,0x1133e,0x1373e,0x1f13a,0x1f37a,0x1e27a,0x1e6fa,0x1c4fa, // 350
+			0x1cdfa,0x189fa,0x1bae0,0x1dd78,0x1eebe,0x174c0,0x1ba70,0x1dd3c,0x17460,0x1ba38, // 360
+			0x1dd1e,0x17430,0x1ba1c,0x17418,0x1ba0e,0x1740c,0x132e0,0x19978,0x1ccbe,0x176e0, // 370
+			0x13270,0x1993c,0x17670,0x1bb3c,0x1991e,0x17638,0x1321c,0x1761c,0x1320e,0x1760e, // 380
+			0x11178,0x188be,0x13378,0x1113c,0x17778,0x1333c,0x1111e,0x1773c,0x1331e,0x1771e, // 390
+			0x111be,0x133be,0x177be,0x172c0,0x1b970,0x1dcbc,0x17260,0x1b938,0x1dc9e,0x17230, // 400
+			0x1b91c,0x17218,0x1b90e,0x1720c,0x17206,0x13170,0x198bc,0x17370,0x13138,0x1989e, // 410
+			0x17338,0x1b99e,0x1731c,0x1310e,0x1730e,0x110bc,0x131bc,0x1109e,0x173bc,0x1319e, // 420
+			0x1739e,0x17160,0x1b8b8,0x1dc5e,0x17130,0x1b89c,0x17118,0x1b88e,0x1710c,0x17106, // 430
+			0x130b8,0x1985e,0x171b8,0x1309c,0x1719c,0x1308e,0x1718e,0x1105e,0x130de,0x171de, // 440
+			0x170b0,0x1b85c,0x17098,0x1b84e,0x1708c,0x17086,0x1305c,0x170dc,0x1304e,0x170ce, // 450
+			0x17058,0x1b82e,0x1704c,0x17046,0x1302e,0x1706e,0x1702c,0x17026,0x10af0,0x1857c, // 460
+			0x10a78,0x1853e,0x10a3c,0x10a1e,0x10b7c,0x10b3e,0x1f0ba,0x1e17a,0x1c2fa,0x185fa, // 470
+			0x11ae0,0x18d78,0x1c6be,0x11a70,0x18d3c,0x11a38,0x18d1e,0x11a1c,0x11a0e,0x10978, // 480
+			0x184be,0x11b78,0x1093c,0x11b3c,0x1091e,0x11b1e,0x109be,0x11bbe,0x13ac0,0x19d70, // 490
+			0x1cebc,0x13a60,0x19d38,0x1ce9e,0x13a30,0x19d1c,0x13a18,0x19d0e,0x13a0c,0x13a06, // 500
+			0x11970,0x18cbc,0x13b70,0x11938,0x18c9e,0x13b38,0x1191c,0x13b1c,0x1190e,0x13b0e, // 510
+			0x108bc,0x119bc,0x1089e,0x13bbc,0x1199e,0x13b9e,0x1bd60,0x1deb8,0x1ef5e,0x17a40, // 520
+			0x1bd30,0x1de9c,0x17a20,0x1bd18,0x1de8e,0x17a10,0x1bd0c,0x17a08,0x1bd06,0x17a04, // 530
+			0x13960,0x19cb8,0x1ce5e,0x17b60,0x13930,0x19c9c,0x17b30,0x1bd9c,0x19c8e,0x17b18, // 540
+			0x1390c,0x17b0c,0x13906,0x17b06,0x118b8,0x18c5e,0x139b8,0x1189c,0x17bb8,0x1399c, // 550
+			0x1188e,0x17b9c,0x1398e,0x17b8e,0x1085e,0x118de,0x139de,0x17bde,0x17940,0x1bcb0, // 560
+			0x1de5c,0x17920,0x1bc98,0x1de4e,0x17910,0x1bc8c,0x17908,0x1bc86,0x17904,0x17902, // 570
+			0x138b0,0x19c5c,0x179b0,0x13898,0x19c4e,0x17998,0x1bcce,0x1798c,0x13886,0x17986, // 580
+			0x1185c,0x138dc,0x1184e,0x179dc,0x138ce,0x179ce,0x178a0,0x1bc58,0x1de2e,0x17890, // 590
+			0x1bc4c,0x17888,0x1bc46,0x17884,0x17882,0x13858,0x19c2e,0x178d8,0x1384c,0x178cc, // 600
+			0x13846,0x178c6,0x1182e,0x1386e,0x178ee,0x17850,0x1bc2c,0x17848,0x1bc26,0x17844, // 610
+			0x17842,0x1382c,0x1786c,0x13826,0x17866,0x17828,0x1bc16,0x17824,0x17822,0x13816, // 620
+			0x17836,0x10578,0x182be,0x1053c,0x1051e,0x105be,0x10d70,0x186bc,0x10d38,0x1869e, // 630
+			0x10d1c,0x10d0e,0x104bc,0x10dbc,0x1049e,0x10d9e,0x11d60,0x18eb8,0x1c75e,0x11d30, // 640
+			0x18e9c,0x11d18,0x18e8e,0x11d0c,0x11d06,0x10cb8,0x1865e,0x11db8,0x10c9c,0x11d9c, // 650
+			0x10c8e,0x11d8e,0x1045e,0x10cde,0x11dde,0x13d40,0x19eb0,0x1cf5c,0x13d20,0x19e98, // 660
+			0x1cf4e,0x13d10,0x19e8c,0x13d08,0x19e86,0x13d04,0x13d02,0x11cb0,0x18e5c,0x13db0, // 670
+			0x11c98,0x18e4e,0x13d98,0x19ece,0x13d8c,0x11c86,0x13d86,0x10c5c,0x11cdc,0x10c4e, // 680
+			0x13ddc,0x11cce,0x13dce,0x1bea0,0x1df58,0x1efae,0x1be90,0x1df4c,0x1be88,0x1df46, // 690
+			0x1be84,0x1be82,0x13ca0,0x19e58,0x1cf2e,0x17da0,0x13c90,0x19e4c,0x17d90,0x1becc, // 700
+			0x19e46,0x17d88,0x13c84,0x17d84,0x13c82,0x17d82,0x11c58,0x18e2e,0x13cd8,0x11c4c, // 710
+			0x17dd8,0x13ccc,0x11c46,0x17dcc,0x13cc6,0x17dc6,0x10c2e,0x11c6e,0x13cee,0x17dee, // 720
+			0x1be50,0x1df2c,0x1be48,0x1df26,0x1be44,0x1be42,0x13c50,0x19e2c,0x17cd0,0x13c48, // 730
+			0x19e26,0x17cc8,0x1be66,0x17cc4,0x13c42,0x17cc2,0x11c2c,0x13c6c,0x11c26,0x17cec, // 740
+			0x13c66,0x17ce6,0x1be28,0x1df16,0x1be24,0x1be22,0x13c28,0x19e16,0x17c68,0x13c24, // 750
+			0x17c64,0x13c22,0x17c62,0x11c16,0x13c36,0x17c76,0x1be14,0x1be12,0x13c14,0x17c34, // 760
+			0x13c12,0x17c32,0x102bc,0x1029e,0x106b8,0x1835e,0x1069c,0x1068e,0x1025e,0x106de, // 770
+			0x10eb0,0x1875c,0x10e98,0x1874e,0x10e8c,0x10e86,0x1065c,0x10edc,0x1064e,0x10ece, // 780
+			0x11ea0,0x18f58,0x1c7ae,0x11e90,0x18f4c,0x11e88,0x18f46,0x11e84,0x11e82,0x10e58, // 790
+			0x1872e,0x11ed8,0x18f6e,0x11ecc,0x10e46,0x11ec6,0x1062e,0x10e6e,0x11eee,0x19f50, // 800
+			0x1cfac,0x19f48,0x1cfa6,0x19f44,0x19f42,0x11e50,0x18f2c,0x13ed0,0x19f6c,0x18f26, // 810
+			0x13ec8,0x11e44,0x13ec4,0x11e42,0x13ec2,0x10e2c,0x11e6c,0x10e26,0x13eec,0x11e66, // 820
+			0x13ee6,0x1dfa8,0x1efd6,0x1dfa4,0x1dfa2,0x19f28,0x1cf96,0x1bf68,0x19f24,0x1bf64, // 830
+			0x19f22,0x1bf62,0x11e28,0x18f16,0x13e68,0x11e24,0x17ee8,0x13e64,0x11e22,0x17ee4, // 840
+			0x13e62,0x17ee2,0x10e16,0x11e36,0x13e76,0x17ef6,0x1df94,0x1df92,0x19f14,0x1bf34, // 850
+			0x19f12,0x1bf32,0x11e14,0x13e34,0x11e12,0x17e74,0x13e32,0x17e72,0x1df8a,0x19f0a, // 860
+			0x1bf1a,0x11e0a,0x13e1a,0x17e3a,0x1035c,0x1034e,0x10758,0x183ae,0x1074c,0x10746, // 870
+			0x1032e,0x1076e,0x10f50,0x187ac,0x10f48,0x187a6,0x10f44,0x10f42,0x1072c,0x10f6c, // 880
+			0x10726,0x10f66,0x18fa8,0x1c7d6,0x18fa4,0x18fa2,0x10f28,0x18796,0x11f68,0x18fb6, // 890
+			0x11f64,0x10f22,0x11f62,0x10716,0x10f36,0x11f76,0x1cfd4,0x1cfd2,0x18f94,0x19fb4, // 900
+			0x18f92,0x19fb2,0x10f14,0x11f34,0x10f12,0x13f74,0x11f32,0x13f72,0x1cfca,0x18f8a, // 910
+			0x19f9a,0x10f0a,0x11f1a,0x13f3a,0x103ac,0x103a6,0x107a8,0x183d6,0x107a4,0x107a2, // 920
+			0x10396,0x107b6,0x187d4,0x187d2,0x10794,0x10fb4,0x10792,0x10fb2,0x1c7ea)         // 929
+	); // end of $clusters array
 
-		/**
-		 * @var Factors of the Reed-Solomon polynomial equations used for error correction; one sub array for each correction level (0-8)
-		 * @access protected
-		 */
-		protected $rsfactors = array(
-			array( // ECL 0 (2 factors) -------------------------------------------------------------------------------
-				0x01b,0x395),                                                                                    //   2
-			array( // ECL 1 (4 factors) -------------------------------------------------------------------------------
-				0x20a,0x238,0x2d3,0x329),                                                                        //   4
-			array( // ECL 2 (8 factors) -------------------------------------------------------------------------------
-				0x0ed,0x134,0x1b4,0x11c,0x286,0x28d,0x1ac,0x17b),                                                //   8
-			array( // ECL 3 (16 factors) ------------------------------------------------------------------------------
-				0x112,0x232,0x0e8,0x2f3,0x257,0x20c,0x321,0x084,0x127,0x074,0x1ba,0x1ac,0x127,0x02a,0x0b0,0x041),//  16
-			array( // ECL 4 (32 factors) ------------------------------------------------------------------------------
-				0x169,0x23f,0x39a,0x20d,0x0b0,0x24a,0x280,0x141,0x218,0x2e6,0x2a5,0x2e6,0x2af,0x11c,0x0c1,0x205, //  16
-				0x111,0x1ee,0x107,0x093,0x251,0x320,0x23b,0x140,0x323,0x085,0x0e7,0x186,0x2ad,0x14a,0x03f,0x19a),//  32
-			array( // ECL 5 (64 factors) ------------------------------------------------------------------------------
-				0x21b,0x1a6,0x006,0x05d,0x35e,0x303,0x1c5,0x06a,0x262,0x11f,0x06b,0x1f9,0x2dd,0x36d,0x17d,0x264, //  16
-				0x2d3,0x1dc,0x1ce,0x0ac,0x1ae,0x261,0x35a,0x336,0x21f,0x178,0x1ff,0x190,0x2a0,0x2fa,0x11b,0x0b8, //  32
-				0x1b8,0x023,0x207,0x01f,0x1cc,0x252,0x0e1,0x217,0x205,0x160,0x25d,0x09e,0x28b,0x0c9,0x1e8,0x1f6, //  48
-				0x288,0x2dd,0x2cd,0x053,0x194,0x061,0x118,0x303,0x348,0x275,0x004,0x17d,0x34b,0x26f,0x108,0x21f),//  64
-			array( // ECL 6 (128 factors) -----------------------------------------------------------------------------
-				0x209,0x136,0x360,0x223,0x35a,0x244,0x128,0x17b,0x035,0x30b,0x381,0x1bc,0x190,0x39d,0x2ed,0x19f, //  16
-				0x336,0x05d,0x0d9,0x0d0,0x3a0,0x0f4,0x247,0x26c,0x0f6,0x094,0x1bf,0x277,0x124,0x38c,0x1ea,0x2c0, //  32
-				0x204,0x102,0x1c9,0x38b,0x252,0x2d3,0x2a2,0x124,0x110,0x060,0x2ac,0x1b0,0x2ae,0x25e,0x35c,0x239, //  48
-				0x0c1,0x0db,0x081,0x0ba,0x0ec,0x11f,0x0c0,0x307,0x116,0x0ad,0x028,0x17b,0x2c8,0x1cf,0x286,0x308, //  64
-				0x0ab,0x1eb,0x129,0x2fb,0x09c,0x2dc,0x05f,0x10e,0x1bf,0x05a,0x1fb,0x030,0x0e4,0x335,0x328,0x382, //  80
-				0x310,0x297,0x273,0x17a,0x17e,0x106,0x17c,0x25a,0x2f2,0x150,0x059,0x266,0x057,0x1b0,0x29e,0x268, //  96
-				0x09d,0x176,0x0f2,0x2d6,0x258,0x10d,0x177,0x382,0x34d,0x1c6,0x162,0x082,0x32e,0x24b,0x324,0x022, // 112
-				0x0d3,0x14a,0x21b,0x129,0x33b,0x361,0x025,0x205,0x342,0x13b,0x226,0x056,0x321,0x004,0x06c,0x21b),// 128
-			array( // ECL 7 (256 factors) -----------------------------------------------------------------------------
-				0x20c,0x37e,0x04b,0x2fe,0x372,0x359,0x04a,0x0cc,0x052,0x24a,0x2c4,0x0fa,0x389,0x312,0x08a,0x2d0, //  16
-				0x35a,0x0c2,0x137,0x391,0x113,0x0be,0x177,0x352,0x1b6,0x2dd,0x0c2,0x118,0x0c9,0x118,0x33c,0x2f5, //  32
-				0x2c6,0x32e,0x397,0x059,0x044,0x239,0x00b,0x0cc,0x31c,0x25d,0x21c,0x391,0x321,0x2bc,0x31f,0x089, //  48
-				0x1b7,0x1a2,0x250,0x29c,0x161,0x35b,0x172,0x2b6,0x145,0x0f0,0x0d8,0x101,0x11c,0x225,0x0d1,0x374, //  64
-				0x13b,0x046,0x149,0x319,0x1ea,0x112,0x36d,0x0a2,0x2ed,0x32c,0x2ac,0x1cd,0x14e,0x178,0x351,0x209, //  80
-				0x133,0x123,0x323,0x2c8,0x013,0x166,0x18f,0x38c,0x067,0x1ff,0x033,0x008,0x205,0x0e1,0x121,0x1d6, //  96
-				0x27d,0x2db,0x042,0x0ff,0x395,0x10d,0x1cf,0x33e,0x2da,0x1b1,0x350,0x249,0x088,0x21a,0x38a,0x05a, // 112
-				0x002,0x122,0x2e7,0x0c7,0x28f,0x387,0x149,0x031,0x322,0x244,0x163,0x24c,0x0bc,0x1ce,0x00a,0x086, // 128
-				0x274,0x140,0x1df,0x082,0x2e3,0x047,0x107,0x13e,0x176,0x259,0x0c0,0x25d,0x08e,0x2a1,0x2af,0x0ea, // 144
-				0x2d2,0x180,0x0b1,0x2f0,0x25f,0x280,0x1c7,0x0c1,0x2b1,0x2c3,0x325,0x281,0x030,0x03c,0x2dc,0x26d, // 160
-				0x37f,0x220,0x105,0x354,0x28f,0x135,0x2b9,0x2f3,0x2f4,0x03c,0x0e7,0x305,0x1b2,0x1a5,0x2d6,0x210, // 176
-				0x1f7,0x076,0x031,0x31b,0x020,0x090,0x1f4,0x0ee,0x344,0x18a,0x118,0x236,0x13f,0x009,0x287,0x226, // 192
-				0x049,0x392,0x156,0x07e,0x020,0x2a9,0x14b,0x318,0x26c,0x03c,0x261,0x1b9,0x0b4,0x317,0x37d,0x2f2, // 208
-				0x25d,0x17f,0x0e4,0x2ed,0x2f8,0x0d5,0x036,0x129,0x086,0x036,0x342,0x12b,0x39a,0x0bf,0x38e,0x214, // 224
-				0x261,0x33d,0x0bd,0x014,0x0a7,0x01d,0x368,0x1c1,0x053,0x192,0x029,0x290,0x1f9,0x243,0x1e1,0x0ad, // 240
-				0x194,0x0fb,0x2b0,0x05f,0x1f1,0x22b,0x282,0x21f,0x133,0x09f,0x39c,0x22e,0x288,0x037,0x1f1,0x00a),// 256
-			array( // ECL 8 (512 factors) -----------------------------------------------------------------------------
-				0x160,0x04d,0x175,0x1f8,0x023,0x257,0x1ac,0x0cf,0x199,0x23e,0x076,0x1f2,0x11d,0x17c,0x15e,0x1ec, //  16
-				0x0c5,0x109,0x398,0x09b,0x392,0x12b,0x0e5,0x283,0x126,0x367,0x132,0x058,0x057,0x0c1,0x160,0x30d, //  32
-				0x34e,0x04b,0x147,0x208,0x1b3,0x21f,0x0cb,0x29a,0x0f9,0x15a,0x30d,0x26d,0x280,0x10c,0x31a,0x216, //  48
-				0x21b,0x30d,0x198,0x186,0x284,0x066,0x1dc,0x1f3,0x122,0x278,0x221,0x025,0x35a,0x394,0x228,0x029, //  64
-				0x21e,0x121,0x07a,0x110,0x17f,0x320,0x1e5,0x062,0x2f0,0x1d8,0x2f9,0x06b,0x310,0x35c,0x292,0x2e5, //  80
-				0x122,0x0cc,0x2a9,0x197,0x357,0x055,0x063,0x03e,0x1e2,0x0b4,0x014,0x129,0x1c3,0x251,0x391,0x08e, //  96
-				0x328,0x2ac,0x11f,0x218,0x231,0x04c,0x28d,0x383,0x2d9,0x237,0x2e8,0x186,0x201,0x0c0,0x204,0x102, // 112
-				0x0f0,0x206,0x31a,0x18b,0x300,0x350,0x033,0x262,0x180,0x0a8,0x0be,0x33a,0x148,0x254,0x312,0x12f, // 128
-				0x23a,0x17d,0x19f,0x281,0x09c,0x0ed,0x097,0x1ad,0x213,0x0cf,0x2a4,0x2c6,0x059,0x0a8,0x130,0x192, // 144
-				0x028,0x2c4,0x23f,0x0a2,0x360,0x0e5,0x041,0x35d,0x349,0x200,0x0a4,0x1dd,0x0dd,0x05c,0x166,0x311, // 160
-				0x120,0x165,0x352,0x344,0x33b,0x2e0,0x2c3,0x05e,0x008,0x1ee,0x072,0x209,0x002,0x1f3,0x353,0x21f, // 176
-				0x098,0x2d9,0x303,0x05f,0x0f8,0x169,0x242,0x143,0x358,0x31d,0x121,0x033,0x2ac,0x1d2,0x215,0x334, // 192
-				0x29d,0x02d,0x386,0x1c4,0x0a7,0x156,0x0f4,0x0ad,0x023,0x1cf,0x28b,0x033,0x2bb,0x24f,0x1c4,0x242, // 208
-				0x025,0x07c,0x12a,0x14c,0x228,0x02b,0x1ab,0x077,0x296,0x309,0x1db,0x352,0x2fc,0x16c,0x242,0x38f, // 224
-				0x11b,0x2c7,0x1d8,0x1a4,0x0f5,0x120,0x252,0x18a,0x1ff,0x147,0x24d,0x309,0x2bb,0x2b0,0x02b,0x198, // 240
-				0x34a,0x17f,0x2d1,0x209,0x230,0x284,0x2ca,0x22f,0x03e,0x091,0x369,0x297,0x2c9,0x09f,0x2a0,0x2d9, // 256
-				0x270,0x03b,0x0c1,0x1a1,0x09e,0x0d1,0x233,0x234,0x157,0x2b5,0x06d,0x260,0x233,0x16d,0x0b5,0x304, // 272
-				0x2a5,0x136,0x0f8,0x161,0x2c4,0x19a,0x243,0x366,0x269,0x349,0x278,0x35c,0x121,0x218,0x023,0x309, // 288
-				0x26a,0x24a,0x1a8,0x341,0x04d,0x255,0x15a,0x10d,0x2f5,0x278,0x2b7,0x2ef,0x14b,0x0f7,0x0b8,0x02d, // 304
-				0x313,0x2a8,0x012,0x042,0x197,0x171,0x036,0x1ec,0x0e4,0x265,0x33e,0x39a,0x1b5,0x207,0x284,0x389, // 320
-				0x315,0x1a4,0x131,0x1b9,0x0cf,0x12c,0x37c,0x33b,0x08d,0x219,0x17d,0x296,0x201,0x038,0x0fc,0x155, // 336
-				0x0f2,0x31d,0x346,0x345,0x2d0,0x0e0,0x133,0x277,0x03d,0x057,0x230,0x136,0x2f4,0x299,0x18d,0x328, // 352
-				0x353,0x135,0x1d9,0x31b,0x17a,0x01f,0x287,0x393,0x1cb,0x326,0x24e,0x2db,0x1a9,0x0d8,0x224,0x0f9, // 368
-				0x141,0x371,0x2bb,0x217,0x2a1,0x30e,0x0d2,0x32f,0x389,0x12f,0x34b,0x39a,0x119,0x049,0x1d5,0x317, // 384
-				0x294,0x0a2,0x1f2,0x134,0x09b,0x1a6,0x38b,0x331,0x0bb,0x03e,0x010,0x1a9,0x217,0x150,0x11e,0x1b5, // 400
-				0x177,0x111,0x262,0x128,0x0b7,0x39b,0x074,0x29b,0x2ef,0x161,0x03e,0x16e,0x2b3,0x17b,0x2af,0x34a, // 416
-				0x025,0x165,0x2d0,0x2e6,0x14a,0x005,0x027,0x39b,0x137,0x1a8,0x0f2,0x2ed,0x141,0x036,0x29d,0x13c, // 432
-				0x156,0x12b,0x216,0x069,0x29b,0x1e8,0x280,0x2a0,0x240,0x21c,0x13c,0x1e6,0x2d1,0x262,0x02e,0x290, // 448
-				0x1bf,0x0ab,0x268,0x1d0,0x0be,0x213,0x129,0x141,0x2fa,0x2f0,0x215,0x0af,0x086,0x00e,0x17d,0x1b1, // 464
-				0x2cd,0x02d,0x06f,0x014,0x254,0x11c,0x2e0,0x08a,0x286,0x19b,0x36d,0x29d,0x08d,0x397,0x02d,0x30c, // 480
-				0x197,0x0a4,0x14c,0x383,0x0a5,0x2d6,0x258,0x145,0x1f2,0x28f,0x165,0x2f0,0x300,0x0df,0x351,0x287, // 496
-				0x03f,0x136,0x35f,0x0fb,0x16e,0x130,0x11a,0x2e2,0x2a3,0x19a,0x185,0x0f4,0x01f,0x079,0x12f,0x107) // 512
-		);
+	/**
+	 * Array of factors of the Reed-Solomon polynomial equations used for error correction; one sub array for each correction level (0-8).
+	 * @protected
+	 */
+	protected $rsfactors = array(
+		array( // ECL 0 (2 factors) -------------------------------------------------------------------------------
+			0x01b,0x395),                                                                                    //   2
+		array( // ECL 1 (4 factors) -------------------------------------------------------------------------------
+			0x20a,0x238,0x2d3,0x329),                                                                        //   4
+		array( // ECL 2 (8 factors) -------------------------------------------------------------------------------
+			0x0ed,0x134,0x1b4,0x11c,0x286,0x28d,0x1ac,0x17b),                                                //   8
+		array( // ECL 3 (16 factors) ------------------------------------------------------------------------------
+			0x112,0x232,0x0e8,0x2f3,0x257,0x20c,0x321,0x084,0x127,0x074,0x1ba,0x1ac,0x127,0x02a,0x0b0,0x041),//  16
+		array( // ECL 4 (32 factors) ------------------------------------------------------------------------------
+			0x169,0x23f,0x39a,0x20d,0x0b0,0x24a,0x280,0x141,0x218,0x2e6,0x2a5,0x2e6,0x2af,0x11c,0x0c1,0x205, //  16
+			0x111,0x1ee,0x107,0x093,0x251,0x320,0x23b,0x140,0x323,0x085,0x0e7,0x186,0x2ad,0x14a,0x03f,0x19a),//  32
+		array( // ECL 5 (64 factors) ------------------------------------------------------------------------------
+			0x21b,0x1a6,0x006,0x05d,0x35e,0x303,0x1c5,0x06a,0x262,0x11f,0x06b,0x1f9,0x2dd,0x36d,0x17d,0x264, //  16
+			0x2d3,0x1dc,0x1ce,0x0ac,0x1ae,0x261,0x35a,0x336,0x21f,0x178,0x1ff,0x190,0x2a0,0x2fa,0x11b,0x0b8, //  32
+			0x1b8,0x023,0x207,0x01f,0x1cc,0x252,0x0e1,0x217,0x205,0x160,0x25d,0x09e,0x28b,0x0c9,0x1e8,0x1f6, //  48
+			0x288,0x2dd,0x2cd,0x053,0x194,0x061,0x118,0x303,0x348,0x275,0x004,0x17d,0x34b,0x26f,0x108,0x21f),//  64
+		array( // ECL 6 (128 factors) -----------------------------------------------------------------------------
+			0x209,0x136,0x360,0x223,0x35a,0x244,0x128,0x17b,0x035,0x30b,0x381,0x1bc,0x190,0x39d,0x2ed,0x19f, //  16
+			0x336,0x05d,0x0d9,0x0d0,0x3a0,0x0f4,0x247,0x26c,0x0f6,0x094,0x1bf,0x277,0x124,0x38c,0x1ea,0x2c0, //  32
+			0x204,0x102,0x1c9,0x38b,0x252,0x2d3,0x2a2,0x124,0x110,0x060,0x2ac,0x1b0,0x2ae,0x25e,0x35c,0x239, //  48
+			0x0c1,0x0db,0x081,0x0ba,0x0ec,0x11f,0x0c0,0x307,0x116,0x0ad,0x028,0x17b,0x2c8,0x1cf,0x286,0x308, //  64
+			0x0ab,0x1eb,0x129,0x2fb,0x09c,0x2dc,0x05f,0x10e,0x1bf,0x05a,0x1fb,0x030,0x0e4,0x335,0x328,0x382, //  80
+			0x310,0x297,0x273,0x17a,0x17e,0x106,0x17c,0x25a,0x2f2,0x150,0x059,0x266,0x057,0x1b0,0x29e,0x268, //  96
+			0x09d,0x176,0x0f2,0x2d6,0x258,0x10d,0x177,0x382,0x34d,0x1c6,0x162,0x082,0x32e,0x24b,0x324,0x022, // 112
+			0x0d3,0x14a,0x21b,0x129,0x33b,0x361,0x025,0x205,0x342,0x13b,0x226,0x056,0x321,0x004,0x06c,0x21b),// 128
+		array( // ECL 7 (256 factors) -----------------------------------------------------------------------------
+			0x20c,0x37e,0x04b,0x2fe,0x372,0x359,0x04a,0x0cc,0x052,0x24a,0x2c4,0x0fa,0x389,0x312,0x08a,0x2d0, //  16
+			0x35a,0x0c2,0x137,0x391,0x113,0x0be,0x177,0x352,0x1b6,0x2dd,0x0c2,0x118,0x0c9,0x118,0x33c,0x2f5, //  32
+			0x2c6,0x32e,0x397,0x059,0x044,0x239,0x00b,0x0cc,0x31c,0x25d,0x21c,0x391,0x321,0x2bc,0x31f,0x089, //  48
+			0x1b7,0x1a2,0x250,0x29c,0x161,0x35b,0x172,0x2b6,0x145,0x0f0,0x0d8,0x101,0x11c,0x225,0x0d1,0x374, //  64
+			0x13b,0x046,0x149,0x319,0x1ea,0x112,0x36d,0x0a2,0x2ed,0x32c,0x2ac,0x1cd,0x14e,0x178,0x351,0x209, //  80
+			0x133,0x123,0x323,0x2c8,0x013,0x166,0x18f,0x38c,0x067,0x1ff,0x033,0x008,0x205,0x0e1,0x121,0x1d6, //  96
+			0x27d,0x2db,0x042,0x0ff,0x395,0x10d,0x1cf,0x33e,0x2da,0x1b1,0x350,0x249,0x088,0x21a,0x38a,0x05a, // 112
+			0x002,0x122,0x2e7,0x0c7,0x28f,0x387,0x149,0x031,0x322,0x244,0x163,0x24c,0x0bc,0x1ce,0x00a,0x086, // 128
+			0x274,0x140,0x1df,0x082,0x2e3,0x047,0x107,0x13e,0x176,0x259,0x0c0,0x25d,0x08e,0x2a1,0x2af,0x0ea, // 144
+			0x2d2,0x180,0x0b1,0x2f0,0x25f,0x280,0x1c7,0x0c1,0x2b1,0x2c3,0x325,0x281,0x030,0x03c,0x2dc,0x26d, // 160
+			0x37f,0x220,0x105,0x354,0x28f,0x135,0x2b9,0x2f3,0x2f4,0x03c,0x0e7,0x305,0x1b2,0x1a5,0x2d6,0x210, // 176
+			0x1f7,0x076,0x031,0x31b,0x020,0x090,0x1f4,0x0ee,0x344,0x18a,0x118,0x236,0x13f,0x009,0x287,0x226, // 192
+			0x049,0x392,0x156,0x07e,0x020,0x2a9,0x14b,0x318,0x26c,0x03c,0x261,0x1b9,0x0b4,0x317,0x37d,0x2f2, // 208
+			0x25d,0x17f,0x0e4,0x2ed,0x2f8,0x0d5,0x036,0x129,0x086,0x036,0x342,0x12b,0x39a,0x0bf,0x38e,0x214, // 224
+			0x261,0x33d,0x0bd,0x014,0x0a7,0x01d,0x368,0x1c1,0x053,0x192,0x029,0x290,0x1f9,0x243,0x1e1,0x0ad, // 240
+			0x194,0x0fb,0x2b0,0x05f,0x1f1,0x22b,0x282,0x21f,0x133,0x09f,0x39c,0x22e,0x288,0x037,0x1f1,0x00a),// 256
+		array( // ECL 8 (512 factors) -----------------------------------------------------------------------------
+			0x160,0x04d,0x175,0x1f8,0x023,0x257,0x1ac,0x0cf,0x199,0x23e,0x076,0x1f2,0x11d,0x17c,0x15e,0x1ec, //  16
+			0x0c5,0x109,0x398,0x09b,0x392,0x12b,0x0e5,0x283,0x126,0x367,0x132,0x058,0x057,0x0c1,0x160,0x30d, //  32
+			0x34e,0x04b,0x147,0x208,0x1b3,0x21f,0x0cb,0x29a,0x0f9,0x15a,0x30d,0x26d,0x280,0x10c,0x31a,0x216, //  48
+			0x21b,0x30d,0x198,0x186,0x284,0x066,0x1dc,0x1f3,0x122,0x278,0x221,0x025,0x35a,0x394,0x228,0x029, //  64
+			0x21e,0x121,0x07a,0x110,0x17f,0x320,0x1e5,0x062,0x2f0,0x1d8,0x2f9,0x06b,0x310,0x35c,0x292,0x2e5, //  80
+			0x122,0x0cc,0x2a9,0x197,0x357,0x055,0x063,0x03e,0x1e2,0x0b4,0x014,0x129,0x1c3,0x251,0x391,0x08e, //  96
+			0x328,0x2ac,0x11f,0x218,0x231,0x04c,0x28d,0x383,0x2d9,0x237,0x2e8,0x186,0x201,0x0c0,0x204,0x102, // 112
+			0x0f0,0x206,0x31a,0x18b,0x300,0x350,0x033,0x262,0x180,0x0a8,0x0be,0x33a,0x148,0x254,0x312,0x12f, // 128
+			0x23a,0x17d,0x19f,0x281,0x09c,0x0ed,0x097,0x1ad,0x213,0x0cf,0x2a4,0x2c6,0x059,0x0a8,0x130,0x192, // 144
+			0x028,0x2c4,0x23f,0x0a2,0x360,0x0e5,0x041,0x35d,0x349,0x200,0x0a4,0x1dd,0x0dd,0x05c,0x166,0x311, // 160
+			0x120,0x165,0x352,0x344,0x33b,0x2e0,0x2c3,0x05e,0x008,0x1ee,0x072,0x209,0x002,0x1f3,0x353,0x21f, // 176
+			0x098,0x2d9,0x303,0x05f,0x0f8,0x169,0x242,0x143,0x358,0x31d,0x121,0x033,0x2ac,0x1d2,0x215,0x334, // 192
+			0x29d,0x02d,0x386,0x1c4,0x0a7,0x156,0x0f4,0x0ad,0x023,0x1cf,0x28b,0x033,0x2bb,0x24f,0x1c4,0x242, // 208
+			0x025,0x07c,0x12a,0x14c,0x228,0x02b,0x1ab,0x077,0x296,0x309,0x1db,0x352,0x2fc,0x16c,0x242,0x38f, // 224
+			0x11b,0x2c7,0x1d8,0x1a4,0x0f5,0x120,0x252,0x18a,0x1ff,0x147,0x24d,0x309,0x2bb,0x2b0,0x02b,0x198, // 240
+			0x34a,0x17f,0x2d1,0x209,0x230,0x284,0x2ca,0x22f,0x03e,0x091,0x369,0x297,0x2c9,0x09f,0x2a0,0x2d9, // 256
+			0x270,0x03b,0x0c1,0x1a1,0x09e,0x0d1,0x233,0x234,0x157,0x2b5,0x06d,0x260,0x233,0x16d,0x0b5,0x304, // 272
+			0x2a5,0x136,0x0f8,0x161,0x2c4,0x19a,0x243,0x366,0x269,0x349,0x278,0x35c,0x121,0x218,0x023,0x309, // 288
+			0x26a,0x24a,0x1a8,0x341,0x04d,0x255,0x15a,0x10d,0x2f5,0x278,0x2b7,0x2ef,0x14b,0x0f7,0x0b8,0x02d, // 304
+			0x313,0x2a8,0x012,0x042,0x197,0x171,0x036,0x1ec,0x0e4,0x265,0x33e,0x39a,0x1b5,0x207,0x284,0x389, // 320
+			0x315,0x1a4,0x131,0x1b9,0x0cf,0x12c,0x37c,0x33b,0x08d,0x219,0x17d,0x296,0x201,0x038,0x0fc,0x155, // 336
+			0x0f2,0x31d,0x346,0x345,0x2d0,0x0e0,0x133,0x277,0x03d,0x057,0x230,0x136,0x2f4,0x299,0x18d,0x328, // 352
+			0x353,0x135,0x1d9,0x31b,0x17a,0x01f,0x287,0x393,0x1cb,0x326,0x24e,0x2db,0x1a9,0x0d8,0x224,0x0f9, // 368
+			0x141,0x371,0x2bb,0x217,0x2a1,0x30e,0x0d2,0x32f,0x389,0x12f,0x34b,0x39a,0x119,0x049,0x1d5,0x317, // 384
+			0x294,0x0a2,0x1f2,0x134,0x09b,0x1a6,0x38b,0x331,0x0bb,0x03e,0x010,0x1a9,0x217,0x150,0x11e,0x1b5, // 400
+			0x177,0x111,0x262,0x128,0x0b7,0x39b,0x074,0x29b,0x2ef,0x161,0x03e,0x16e,0x2b3,0x17b,0x2af,0x34a, // 416
+			0x025,0x165,0x2d0,0x2e6,0x14a,0x005,0x027,0x39b,0x137,0x1a8,0x0f2,0x2ed,0x141,0x036,0x29d,0x13c, // 432
+			0x156,0x12b,0x216,0x069,0x29b,0x1e8,0x280,0x2a0,0x240,0x21c,0x13c,0x1e6,0x2d1,0x262,0x02e,0x290, // 448
+			0x1bf,0x0ab,0x268,0x1d0,0x0be,0x213,0x129,0x141,0x2fa,0x2f0,0x215,0x0af,0x086,0x00e,0x17d,0x1b1, // 464
+			0x2cd,0x02d,0x06f,0x014,0x254,0x11c,0x2e0,0x08a,0x286,0x19b,0x36d,0x29d,0x08d,0x397,0x02d,0x30c, // 480
+			0x197,0x0a4,0x14c,0x383,0x0a5,0x2d6,0x258,0x145,0x1f2,0x28f,0x165,0x2f0,0x300,0x0df,0x351,0x287, // 496
+			0x03f,0x136,0x35f,0x0fb,0x16e,0x130,0x11a,0x2e2,0x2a3,0x19a,0x185,0x0f4,0x01f,0x079,0x12f,0x107) // 512
+	);
 
-		/**
-		 * This is the class constructor.
-		 * Creates a PDF417 object
-		 * @param string $code code to represent using PDF417
-		 * @param int $ecl error correction level (0-8); default -1 = automatic correction level
-		 * @param float $aspectratio the width to height of the symbol (excluding quiet zones)
-		 * òparam array $macro information for macro block
-		 * @access public
-		 */
-		public function __construct($code, $ecl=-1, $aspectratio=2, $macro=array()) {
-			$barcode_array = array();
-			if ((is_null($code)) OR ($code == '\0') OR ($code == '')) {
-				return false;
-			}
-			// get the input sequence array
-			$sequence = $this->getInputSequences($code);
-			$codewords = array(); // array of code-words
-			foreach($sequence as $seq) {
-				$cw = $this->getCompaction($seq[0], $seq[1], true);
-				$codewords = array_merge($codewords, $cw);
-			}
-			if ($codewords[0] == 900) {
-				// Text Alpha is the default mode, so remove the first code
-				array_shift($codewords);
-			}
-			// count number of codewords
-			$numcw = count($codewords);
-			if ($numcw > 925) {
-				// reached maximum data codeword capacity
-				return false;
-			}
-			// build macro control block codewords
-			if (!empty($macro)) {
-				$macrocw = array();
-				// beginning of macro control block
-				$macrocw[] = 928;
-				// segment index
-				$cw = $this->getCompaction(902, sprintf('%05d', $macro['segment_index']), false);
-				$macrocw = array_merge($macrocw, $cw);
-				// file ID
-				$cw = $this->getCompaction(900, $macro['file_id'], false);
-				$macrocw = array_merge($macrocw, $cw);
-				// optional fields
-				$optmodes = array(900,902,902,900,900,902,902);
-				$optsize = array(-1,2,4,-1,-1,-1,2);
-				foreach ($optmodes as $k => $omode) {
-					if (isset($macro['option_'.$k])) {
-						$macrocw[] = 923;
-						$macrocw[] = $k;
-						if ($optsize[$k] == 2) {
-							$macro['option_'.$k] = sprintf('%05d', $macro['option_'.$k]);
-						} elseif ($optsize[$k] == 4) {
-							$macro['option_'.$k] = sprintf('%010d', $macro['option_'.$k]);
-						}
-						$cw = $this->getCompaction($omode, $macro['option_'.$k], false);
-						$macrocw = array_merge($macrocw, $cw);
+	/**
+	 * This is the class constructor.
+	 * Creates a PDF417 object
+	 * @param $code (string) code to represent using PDF417
+	 * @param $ecl (int) error correction level (0-8); default -1 = automatic correction level
+	 * @param $aspectratio (float) the width to height of the symbol (excluding quiet zones)
+	 * @param $macro (array) information for macro block
+	 * @public
+	 */
+	public function __construct($code, $ecl=-1, $aspectratio=2, $macro=array()) {
+		$barcode_array = array();
+		if ((is_null($code)) OR ($code == '\0') OR ($code == '')) {
+			return false;
+		}
+		// get the input sequence array
+		$sequence = $this->getInputSequences($code);
+		$codewords = array(); // array of code-words
+		foreach($sequence as $seq) {
+			$cw = $this->getCompaction($seq[0], $seq[1], true);
+			$codewords = array_merge($codewords, $cw);
+		}
+		if ($codewords[0] == 900) {
+			// Text Alpha is the default mode, so remove the first code
+			array_shift($codewords);
+		}
+		// count number of codewords
+		$numcw = count($codewords);
+		if ($numcw > 925) {
+			// reached maximum data codeword capacity
+			return false;
+		}
+		// build macro control block codewords
+		if (!empty($macro)) {
+			$macrocw = array();
+			// beginning of macro control block
+			$macrocw[] = 928;
+			// segment index
+			$cw = $this->getCompaction(902, sprintf('%05d', $macro['segment_index']), false);
+			$macrocw = array_merge($macrocw, $cw);
+			// file ID
+			$cw = $this->getCompaction(900, $macro['file_id'], false);
+			$macrocw = array_merge($macrocw, $cw);
+			// optional fields
+			$optmodes = array(900,902,902,900,900,902,902);
+			$optsize = array(-1,2,4,-1,-1,-1,2);
+			foreach ($optmodes as $k => $omode) {
+				if (isset($macro['option_'.$k])) {
+					$macrocw[] = 923;
+					$macrocw[] = $k;
+					if ($optsize[$k] == 2) {
+						$macro['option_'.$k] = sprintf('%05d', $macro['option_'.$k]);
+					} elseif ($optsize[$k] == 4) {
+						$macro['option_'.$k] = sprintf('%010d', $macro['option_'.$k]);
 					}
+					$cw = $this->getCompaction($omode, $macro['option_'.$k], false);
+					$macrocw = array_merge($macrocw, $cw);
 				}
-				if ($macro['segment_index'] == ($macro['segment_total'] - 1)) {
-					// end of control block
-					$macrocw[] = 922;
-				}
-				// update total codewords
-				$numcw += count($macrocw);
 			}
-			// set error correction level
-			$ecl = $this->getErrorCorrectionLevel($ecl, $numcw);
-			// number of codewords for error correction
-			$errsize = (2 << $ecl);
-			// calculate number of columns (number of codewords per row) and rows
-			$nce = ($numcw + $errsize + 1);
-			$cols = round((sqrt(4761 + (68 * $aspectratio * ROWHEIGHT * $nce)) - 69) / 34);
-			// adjust cols
-			if ($cols < 1) {
-				$cols = 1;
-			} elseif ($cols > 30) {
-				$cols = 30;
+			if ($macro['segment_index'] == ($macro['segment_total'] - 1)) {
+				// end of control block
+				$macrocw[] = 922;
 			}
-			$rows = ceil($nce / $cols);
-			$size = ($cols * $rows);
-			// adjust rows
-			if (($rows < 3) OR ($rows > 90)) {
-				if ($rows < 3) {
-					$rows = 3;
-				} elseif ($rows > 90) {
-					$rows = 90;
-				}
-				$cols = ceil($size / $rows);
-				$size = ($cols * $rows);
+			// update total codewords
+			$numcw += count($macrocw);
+		}
+		// set error correction level
+		$ecl = $this->getErrorCorrectionLevel($ecl, $numcw);
+		// number of codewords for error correction
+		$errsize = (2 << $ecl);
+		// calculate number of columns (number of codewords per row) and rows
+		$nce = ($numcw + $errsize + 1);
+		$cols = round((sqrt(4761 + (68 * $aspectratio * ROWHEIGHT * $nce)) - 69) / 34);
+		// adjust cols
+		if ($cols < 1) {
+			$cols = 1;
+		} elseif ($cols > 30) {
+			$cols = 30;
+		}
+		$rows = ceil($nce / $cols);
+		$size = ($cols * $rows);
+		// adjust rows
+		if (($rows < 3) OR ($rows > 90)) {
+			if ($rows < 3) {
+				$rows = 3;
+			} elseif ($rows > 90) {
+				$rows = 90;
 			}
-			if ($size > 928) {
-				// set dimensions to get maximum capacity
-				if (abs($aspectratio - (17 * 29 / 32)) < abs($aspectratio - (17 * 16 / 58))) {
-					$cols = 29;
-					$rows = 32;
-				} else {
-					$cols = 16;
-					$rows = 58;
-				}
-				$size = 928;
+			$cols = ceil($size / $rows);
+			$size = ($cols * $rows);
+		}
+		if ($size > 928) {
+			// set dimensions to get maximum capacity
+			if (abs($aspectratio - (17 * 29 / 32)) < abs($aspectratio - (17 * 16 / 58))) {
+				$cols = 29;
+				$rows = 32;
+			} else {
+				$cols = 16;
+				$rows = 58;
 			}
-			// calculate padding
-			$pad = ($size - $nce);
-			if ($pad > 0) {
-				if (($size - $rows) == $nce) {
-					--$rows;
-					$size -= $rows;
-				} else {
-					// add pading
-					$codewords = array_merge($codewords, array_fill(0, $pad, 900));
-				}
+			$size = 928;
+		}
+		// calculate padding
+		$pad = ($size - $nce);
+		if ($pad > 0) {
+			if (($size - $rows) == $nce) {
+				--$rows;
+				$size -= $rows;
+			} else {
+				// add pading
+				$codewords = array_merge($codewords, array_fill(0, $pad, 900));
 			}
-			if (!empty($macro)) {
-				// add macro section
-				$codewords = array_merge($codewords, $macrocw);
+		}
+		if (!empty($macro)) {
+			// add macro section
+			$codewords = array_merge($codewords, $macrocw);
+		}
+		// Symbol Lenght Descriptor (number of data codewords including Symbol Lenght Descriptor and pad codewords)
+		$sld = $size - $errsize;
+		// add symbol length description
+		array_unshift($codewords, $sld);
+		// calculate error correction
+		$ecw = $this->getErrorCorrection($codewords, $ecl);
+		// add error correction codewords
+		$codewords = array_merge($codewords, $ecw);
+		// add horizontal quiet zones to start and stop patterns
+		$pstart = str_repeat('0', QUIETH).$this->start_pattern;
+		$pstop = $this->stop_pattern.str_repeat('0', QUIETH);
+		$barcode_array['num_rows'] = ($rows * ROWHEIGHT) + (2 * QUIETV);
+		$barcode_array['num_cols'] = (($cols + 2) * 17) + 35 + (2 * QUIETH);
+		$barcode_array['bcode'] = array();
+		// build rows for vertical quiet zone
+		if (QUIETV > 0) {
+			$empty_row = array_fill(0, $barcode_array['num_cols'], 0);
+			for ($i = 0; $i < QUIETV; ++$i) {
+				// add vertical quiet rows
+				$barcode_array['bcode'][] = $empty_row;
 			}
-			// Symbol Lenght Descriptor (number of data codewords including Symbol Lenght Descriptor and pad codewords)
-			$sld = $size - $errsize;
-			// add symbol length description
-			array_unshift($codewords, $sld);
-			// calculate error correction
-			$ecw = $this->getErrorCorrection($codewords, $ecl);
-			// add error correction codewords
-			$codewords = array_merge($codewords, $ecw);
-			// add horizontal quiet zones to start and stop patterns
-			$pstart = str_repeat('0', QUIETH).$this->start_pattern;
-			$pstop = $this->stop_pattern.str_repeat('0', QUIETH);
-			$barcode_array['num_rows'] = ($rows * ROWHEIGHT) + (2 * QUIETV);
-			$barcode_array['num_cols'] = (($cols + 2) * 17) + 35 + (2 * QUIETH);
-			$barcode_array['bcode'] = array();
-			// build rows for vertical quiet zone
-			if (QUIETV > 0) {
-				$empty_row = array_fill(0, $barcode_array['num_cols'], 0);
-				for ($i = 0; $i < QUIETV; ++$i) {
-					// add vertical quiet rows
-					$barcode_array['bcode'][] = $empty_row;
+		}
+		$k = 0; // codeword index
+		$cid = 0; // initial cluster
+		// for each row
+		for ($r = 0; $r < $rows; ++$r) {
+			// row start code
+			$row = $pstart;
+			switch ($cid) {
+				case 0: {
+					$L = ((30 * intval($r / 3)) + intval(($rows - 1) / 3));
+					break;
 				}
-			}
-			$k = 0; // codeword index
-			$cid = 0; // initial cluster
-			// for each row
-			for ($r = 0; $r < $rows; ++$r) {
-				// row start code
-				$row = $pstart;
-				switch ($cid) {
-					case 0: {
-						$L = ((30 * intval($r / 3)) + intval(($rows - 1) / 3));
-						break;
-					}
-					case 1: {
-						$L = ((30 * intval($r / 3)) + ($ecl * 3) + (($rows - 1) % 3));
-						break;
-					}
-					case 2: {
-						$L = ((30 * intval($r / 3)) + ($cols - 1));
-						break;
-					}
+				case 1: {
+					$L = ((30 * intval($r / 3)) + ($ecl * 3) + (($rows - 1) % 3));
+					break;
 				}
-				// left row indicator
-				$row .= sprintf('%17b', $this->clusters[$cid][$L]);
-				// for each column
-				for ($c = 0; $c < $cols; ++$c) {
-					$row .= sprintf('%17b', $this->clusters[$cid][$codewords[$k]]);
-					++$k;
+				case 2: {
+					$L = ((30 * intval($r / 3)) + ($cols - 1));
+					break;
 				}
-				switch ($cid) {
-					case 0: {
-						$L = ((30 * intval($r / 3)) + ($cols - 1));
-						break;
-					}
-					case 1: {
-						$L = ((30 * intval($r / 3)) + intval(($rows - 1) / 3));
-						break;
-					}
-					case 2: {
-						$L = ((30 * intval($r / 3)) + ($ecl * 3) + (($rows - 1) % 3));
-						break;
-					}
+			}
+			// left row indicator
+			$row .= sprintf('%17b', $this->clusters[$cid][$L]);
+			// for each column
+			for ($c = 0; $c < $cols; ++$c) {
+				$row .= sprintf('%17b', $this->clusters[$cid][$codewords[$k]]);
+				++$k;
+			}
+			switch ($cid) {
+				case 0: {
+					$L = ((30 * intval($r / 3)) + ($cols - 1));
+					break;
 				}
-				// right row indicator
-				$row .= sprintf('%17b', $this->clusters[$cid][$L]);
-				// row stop code
-				$row .= $pstop;
-				// convert the string to array
-				$arow = preg_split('//', $row, -1, PREG_SPLIT_NO_EMPTY);
-				// duplicate row to get the desired height
-				for ($h = 0; $h < ROWHEIGHT; ++$h) {
-					$barcode_array['bcode'][] = $arow;
+				case 1: {
+					$L = ((30 * intval($r / 3)) + intval(($rows - 1) / 3));
+					break;
 				}
-				++$cid;
-				if ($cid > 2) {
-					$cid = 0;
+				case 2: {
+					$L = ((30 * intval($r / 3)) + ($ecl * 3) + (($rows - 1) % 3));
+					break;
 				}
 			}
-			if (QUIETV > 0) {
-				for ($i = 0; $i < QUIETV; ++$i) {
-					// add vertical quiet rows
-					$barcode_array['bcode'][] = $empty_row;
-				}
+			// right row indicator
+			$row .= sprintf('%17b', $this->clusters[$cid][$L]);
+			// row stop code
+			$row .= $pstop;
+			// convert the string to array
+			$arow = preg_split('//', $row, -1, PREG_SPLIT_NO_EMPTY);
+			// duplicate row to get the desired height
+			for ($h = 0; $h < ROWHEIGHT; ++$h) {
+				$barcode_array['bcode'][] = $arow;
+			}
+			++$cid;
+			if ($cid > 2) {
+				$cid = 0;
 			}
-			$this->barcode_array = $barcode_array;
 		}
-
-		/**
-		 * Returns a barcode array which is readable by TCPDF
-		 * @return array barcode array readable by TCPDF;
-		 * @access public
-		 */
-		public function getBarcodeArray() {
-			return $this->barcode_array;
+		if (QUIETV > 0) {
+			for ($i = 0; $i < QUIETV; ++$i) {
+				// add vertical quiet rows
+				$barcode_array['bcode'][] = $empty_row;
+			}
 		}
+		$this->barcode_array = $barcode_array;
+	}
 
-		/**
-		 * Returns the error correction level (0-8) to be used
-		 * @param int $ecl error correction level
-		 * @param int $numcw number of data codewords
-		 * @return int error correction level
-		 * @access protected
-		 */
-		protected function getErrorCorrectionLevel($ecl, $numcw) {
-			// get maximum correction level
-			$maxecl = 8; // starting error level
-			$maxerrsize = (928 - $numcw); // available codewords for error
-			while ($maxecl > 0) {
-				$errsize = (2 << $ecl);
-				if ($maxerrsize >= $errsize) {
-					break;
-				}
-				--$maxecl;
-			}
-			// check for automatic levels
-			if (($ecl < 0) OR ($ecl > 8)) {
-				if ($numcw < 41) {
-					$ecl = 2;
-				} elseif ($numcw < 161) {
-					$ecl = 3;
-				} elseif ($numcw < 321) {
-					$ecl = 4;
-				} elseif ($numcw < 864) {
-					$ecl = 5;
-				} else {
-					$ecl = $maxecl;
-				}
+	/**
+	 * Returns a barcode array which is readable by TCPDF
+	 * @return array barcode array readable by TCPDF;
+	 * @public
+	 */
+	public function getBarcodeArray() {
+		return $this->barcode_array;
+	}
+
+	/**
+	 * Returns the error correction level (0-8) to be used
+	 * @param $ecl (int) error correction level
+	 * @param $numcw (int) number of data codewords
+	 * @return int error correction level
+	 * @protected
+	 */
+	protected function getErrorCorrectionLevel($ecl, $numcw) {
+		// get maximum correction level
+		$maxecl = 8; // starting error level
+		$maxerrsize = (928 - $numcw); // available codewords for error
+		while ($maxecl > 0) {
+			$errsize = (2 << $ecl);
+			if ($maxerrsize >= $errsize) {
+				break;
 			}
-			if ($ecl > $maxecl) {
+			--$maxecl;
+		}
+		// check for automatic levels
+		if (($ecl < 0) OR ($ecl > 8)) {
+			if ($numcw < 41) {
+				$ecl = 2;
+			} elseif ($numcw < 161) {
+				$ecl = 3;
+			} elseif ($numcw < 321) {
+				$ecl = 4;
+			} elseif ($numcw < 864) {
+				$ecl = 5;
+			} else {
 				$ecl = $maxecl;
 			}
-			return $ecl;
 		}
+		if ($ecl > $maxecl) {
+			$ecl = $maxecl;
+		}
+		return $ecl;
+	}
 
-		/**
-		 * Returns the error correction codewords
-		 * @param array $cw array of codewords including Symbol Lenght Descriptor and pad
-		 * @param int $ecl error correction level 0-8
-		 * @return array of error correction codewords
-		 * @access protected
-		 */
-		protected function getErrorCorrection($cw, $ecl) {
-			// get error correction coefficients
-			$ecc = $this->rsfactors[$ecl];
-			// number of error correction factors
-			$eclsize = (2 << $ecl);
-			// maximum index for $rsfactors[$ecl]
-			$eclmaxid = ($eclsize - 1);
-			// initialize array of error correction codewords
-			$ecw = array_fill(0, $eclsize, 0);
-			// for each data codeword
-			foreach($cw as $k => $d) {
-				$t1 = ($d + $ecw[$eclmaxid]) % 929;
-				for ($j = $eclmaxid; $j > 0; --$j) {
-					$t2 = ($t1 * $ecc[$j]) % 929;
-					$t3 = 929 - $t2;
-					$ecw[$j] = ($ecw[($j - 1)] + $t3) % 929;
-				}
-				$t2 = ($t1 * $ecc[0]) % 929;
+	/**
+	 * Returns the error correction codewords
+	 * @param $cw (array) array of codewords including Symbol Lenght Descriptor and pad
+	 * @param $ecl (int) error correction level 0-8
+	 * @return array of error correction codewords
+	 * @protected
+	 */
+	protected function getErrorCorrection($cw, $ecl) {
+		// get error correction coefficients
+		$ecc = $this->rsfactors[$ecl];
+		// number of error correction factors
+		$eclsize = (2 << $ecl);
+		// maximum index for $rsfactors[$ecl]
+		$eclmaxid = ($eclsize - 1);
+		// initialize array of error correction codewords
+		$ecw = array_fill(0, $eclsize, 0);
+		// for each data codeword
+		foreach($cw as $k => $d) {
+			$t1 = ($d + $ecw[$eclmaxid]) % 929;
+			for ($j = $eclmaxid; $j > 0; --$j) {
+				$t2 = ($t1 * $ecc[$j]) % 929;
 				$t3 = 929 - $t2;
-				$ecw[0] = $t3 % 929;
+				$ecw[$j] = ($ecw[($j - 1)] + $t3) % 929;
 			}
-			foreach($ecw as $j => $e) {
-				if ($e != 0) {
-					$ecw[$j] = 929 - $e;
-				}
+			$t2 = ($t1 * $ecc[0]) % 929;
+			$t3 = 929 - $t2;
+			$ecw[0] = $t3 % 929;
+		}
+		foreach($ecw as $j => $e) {
+			if ($e != 0) {
+				$ecw[$j] = 929 - $e;
 			}
-			$ecw = array_reverse($ecw);
-			return $ecw;
 		}
+		$ecw = array_reverse($ecw);
+		return $ecw;
+	}
 
-		/**
-		 * Create array of sequences from input
-		 * @param string $code code
-		 * @return bidimensional array containing characters and classification
-		 * @access protected
-		 */
-		protected function getInputSequences($code) {
-			$sequence_array = array(); // array to be returned
-			$numseq = array();
-			// get numeric sequences
-			preg_match_all('/([0-9]{13,})/', $code, $numseq, PREG_OFFSET_CAPTURE);
-			$numseq[1][] = array('', strlen($code));
-			$offset = 0;
-			foreach($numseq[1] as $seq) {
-				$seqlen = strlen($seq[0]);
-				if ($seq[1] > 0) {
-					// extract text sequence before the number sequence
-					$prevseq = substr($code, $offset, ($seq[1] - $offset));
-					$textseq = array();
-					// get text sequences
-					preg_match_all('/([\x09\x0a\x0d\x20-\x7e]{5,})/', $prevseq, $textseq, PREG_OFFSET_CAPTURE);
-					$textseq[1][] = array('', strlen($prevseq));
-					$txtoffset = 0;
-					foreach($textseq[1] as $txtseq) {
-						$txtseqlen = strlen($txtseq[0]);
-						if ($txtseq[1] > 0) {
-							// extract byte sequence before the text sequence
-							$prevtxtseq = substr($prevseq, $txtoffset, ($txtseq[1] - $txtoffset));
-							if (strlen($prevtxtseq) > 0) {
-								// add BYTE sequence
-								if ((strlen($prevtxtseq) == 1) AND ((count($sequence_array) > 0) AND ($sequence_array[(count($sequence_array) - 1)][0] == 900))) {
-									$sequence_array[] = array(913, $prevtxtseq);
-								} elseif ((strlen($prevtxtseq) % 6) == 0) {
-									$sequence_array[] = array(924, $prevtxtseq);
-								} else {
-									$sequence_array[] = array(901, $prevtxtseq);
-								}
+	/**
+	 * Create array of sequences from input
+	 * @param $code (string) code
+	 * @return bidimensional array containing characters and classification
+	 * @protected
+	 */
+	protected function getInputSequences($code) {
+		$sequence_array = array(); // array to be returned
+		$numseq = array();
+		// get numeric sequences
+		preg_match_all('/([0-9]{13,})/', $code, $numseq, PREG_OFFSET_CAPTURE);
+		$numseq[1][] = array('', strlen($code));
+		$offset = 0;
+		foreach($numseq[1] as $seq) {
+			$seqlen = strlen($seq[0]);
+			if ($seq[1] > 0) {
+				// extract text sequence before the number sequence
+				$prevseq = substr($code, $offset, ($seq[1] - $offset));
+				$textseq = array();
+				// get text sequences
+				preg_match_all('/([\x09\x0a\x0d\x20-\x7e]{5,})/', $prevseq, $textseq, PREG_OFFSET_CAPTURE);
+				$textseq[1][] = array('', strlen($prevseq));
+				$txtoffset = 0;
+				foreach($textseq[1] as $txtseq) {
+					$txtseqlen = strlen($txtseq[0]);
+					if ($txtseq[1] > 0) {
+						// extract byte sequence before the text sequence
+						$prevtxtseq = substr($prevseq, $txtoffset, ($txtseq[1] - $txtoffset));
+						if (strlen($prevtxtseq) > 0) {
+							// add BYTE sequence
+							if ((strlen($prevtxtseq) == 1) AND ((count($sequence_array) > 0) AND ($sequence_array[(count($sequence_array) - 1)][0] == 900))) {
+								$sequence_array[] = array(913, $prevtxtseq);
+							} elseif ((strlen($prevtxtseq) % 6) == 0) {
+								$sequence_array[] = array(924, $prevtxtseq);
+							} else {
+								$sequence_array[] = array(901, $prevtxtseq);
 							}
 						}
-						if ($txtseqlen > 0) {
-							// add numeric sequence
-							$sequence_array[] = array(900, $txtseq[0]);
-						}
-						$txtoffset = $txtseq[1] + $txtseqlen;
 					}
+					if ($txtseqlen > 0) {
+						// add numeric sequence
+						$sequence_array[] = array(900, $txtseq[0]);
+					}
+					$txtoffset = $txtseq[1] + $txtseqlen;
 				}
-				if ($seqlen > 0) {
-					// add numeric sequence
-					$sequence_array[] = array(902, $seq[0]);
-				}
-				$offset = $seq[1] + $seqlen;
 			}
-			return $sequence_array;
+			if ($seqlen > 0) {
+				// add numeric sequence
+				$sequence_array[] = array(902, $seq[0]);
+			}
+			$offset = $seq[1] + $seqlen;
 		}
+		return $sequence_array;
+	}
 
-		/**
-		 * Compact data by mode.
-		 * @param int $mode compaction mode number
-		 * @param string $code data to compact
-		 * @param boolean $addmode if true add the mode codeword at first position
-		 * @return array of codewords
-		 * @access protected
-		 */
-		protected function getCompaction($mode, $code, $addmode=true) {
-			$cw = array(); // array of codewords to return
-			switch($mode) {
-				case 900: { // Text Compaction mode latch
-					$submode = 0; // default Alpha sub-mode
-					$txtarr = array(); // array of characters and sub-mode switching characters
-					$codelen = strlen($code);
-					for ($i = 0; $i < $codelen; ++$i) {
-						$chval = ord($code{$i});
-						if (($k = array_search($chval, $this->textsubmodes[$submode])) !== false) {
-							// we are on the same sub-mode
-							$txtarr[] = $k;
-						} else {
-							// the sub-mode is changed
-							for ($s = 0; $s < 4; ++$s) {
-								// search new sub-mode
-								if (($s != $submode) AND (($k = array_search($chval, $this->textsubmodes[$s])) !== false)) {
-									// $s is the new submode
-									if (((($i + 1) == $codelen) OR ((($i + 1) < $codelen) AND (array_search(ord($code{($i + 1)}), $this->textsubmodes[$submode]) !== false))) AND (($s == 3) OR (($s == 0) AND ($submode == 1)))) {
-										// shift (temporary change only for this char)
-										if ($s == 3) {
-											// shift to puntuaction
-											$txtarr[] = 29;
-										} else {
-											// shift from lower to alpha
-											$txtarr[] = 27;
-										}
+	/**
+	 * Compact data by mode.
+	 * @param $mode (int) compaction mode number
+	 * @param $code (string) data to compact
+	 * @param $addmode (boolean) if true add the mode codeword at first position
+	 * @return array of codewords
+	 * @protected
+	 */
+	protected function getCompaction($mode, $code, $addmode=true) {
+		$cw = array(); // array of codewords to return
+		switch($mode) {
+			case 900: { // Text Compaction mode latch
+				$submode = 0; // default Alpha sub-mode
+				$txtarr = array(); // array of characters and sub-mode switching characters
+				$codelen = strlen($code);
+				for ($i = 0; $i < $codelen; ++$i) {
+					$chval = ord($code{$i});
+					if (($k = array_search($chval, $this->textsubmodes[$submode])) !== false) {
+						// we are on the same sub-mode
+						$txtarr[] = $k;
+					} else {
+						// the sub-mode is changed
+						for ($s = 0; $s < 4; ++$s) {
+							// search new sub-mode
+							if (($s != $submode) AND (($k = array_search($chval, $this->textsubmodes[$s])) !== false)) {
+								// $s is the new submode
+								if (((($i + 1) == $codelen) OR ((($i + 1) < $codelen) AND (array_search(ord($code{($i + 1)}), $this->textsubmodes[$submode]) !== false))) AND (($s == 3) OR (($s == 0) AND ($submode == 1)))) {
+									// shift (temporary change only for this char)
+									if ($s == 3) {
+										// shift to puntuaction
+										$txtarr[] = 29;
 									} else {
-										// latch
-										$txtarr	= array_merge($txtarr, $this->textlatch[''.$submode.$s]);
-										// set new submode
-										$submode = $s;
+										// shift from lower to alpha
+										$txtarr[] = 27;
 									}
-									// add characted code to array
-									$txtarr[] = $k;
-									break;
+								} else {
+									// latch
+									$txtarr	= array_merge($txtarr, $this->textlatch[''.$submode.$s]);
+									// set new submode
+									$submode = $s;
 								}
+								// add characted code to array
+								$txtarr[] = $k;
+								break;
 							}
 						}
 					}
-					$txtarrlen = count($txtarr);
-					if (($txtarrlen % 2) != 0) {
-						// add padding
-						$txtarr[] = 29;
-						++$txtarrlen;
-					}
-					// calculate codewords
-					for ($i = 0; $i < $txtarrlen; $i += 2) {
-						$cw[] = (30 * $txtarr[$i]) + $txtarr[($i + 1)];
-					}
-					break;
 				}
-				case 901:
-				case 924: { // Byte Compaction mode latch
-					while (($codelen = strlen($code)) > 0) {
-						if ($codelen > 6) {
-							$rest = substr($code, 6);
-							$code = substr($code, 0, 6);
-							$sublen = 6;
-						} else {
-							$rest = '';
-							$sublen = strlen($code);
-						}
-						if ($sublen == 6) {
-							$t = bcmul(''.ord($code{0}), '1099511627776');
-							$t = bcadd($t, bcmul(''.ord($code{1}), '4294967296'));
-							$t = bcadd($t, bcmul(''.ord($code{2}), '16777216'));
-							$t = bcadd($t, bcmul(''.ord($code{3}), '65536'));
-							$t = bcadd($t, bcmul(''.ord($code{4}), '256'));
-							$t = bcadd($t, ''.ord($code{5}));
-							do {
-								$d = bcmod($t, '900');
-								$t = bcdiv($t, '900');
-								array_unshift($cw, $d);
-							} while ($t != '0');
-						} else {
-							for ($i = 0; $i < $sublen; ++$i) {
-								$cw[] = ord($code{$i});
-							}
-						}
-						$code = $rest;
-					}
-					break;
+				$txtarrlen = count($txtarr);
+				if (($txtarrlen % 2) != 0) {
+					// add padding
+					$txtarr[] = 29;
+					++$txtarrlen;
 				}
-				case 902: { // Numeric Compaction mode latch
-					while (($codelen = strlen($code)) > 0) {
-						if ($codelen > 44) {
-							$rest = substr($code, 44);
-							$code = substr($code, 0, 44);
-						} else {
-							$rest = '';
-						}
-						$t = '1'.$code;
+				// calculate codewords
+				for ($i = 0; $i < $txtarrlen; $i += 2) {
+					$cw[] = (30 * $txtarr[$i]) + $txtarr[($i + 1)];
+				}
+				break;
+			}
+			case 901:
+			case 924: { // Byte Compaction mode latch
+				while (($codelen = strlen($code)) > 0) {
+					if ($codelen > 6) {
+						$rest = substr($code, 6);
+						$code = substr($code, 0, 6);
+						$sublen = 6;
+					} else {
+						$rest = '';
+						$sublen = strlen($code);
+					}
+					if ($sublen == 6) {
+						$t = bcmul(''.ord($code{0}), '1099511627776');
+						$t = bcadd($t, bcmul(''.ord($code{1}), '4294967296'));
+						$t = bcadd($t, bcmul(''.ord($code{2}), '16777216'));
+						$t = bcadd($t, bcmul(''.ord($code{3}), '65536'));
+						$t = bcadd($t, bcmul(''.ord($code{4}), '256'));
+						$t = bcadd($t, ''.ord($code{5}));
 						do {
 							$d = bcmod($t, '900');
 							$t = bcdiv($t, '900');
 							array_unshift($cw, $d);
 						} while ($t != '0');
-						$code = $rest;
+					} else {
+						for ($i = 0; $i < $sublen; ++$i) {
+							$cw[] = ord($code{$i});
+						}
 					}
-					break;
+					$code = $rest;
 				}
-				case 913: { // Byte Compaction mode shift
-					$cw[] = ord($code);
-					break;
+				break;
+			}
+			case 902: { // Numeric Compaction mode latch
+				while (($codelen = strlen($code)) > 0) {
+					if ($codelen > 44) {
+						$rest = substr($code, 44);
+						$code = substr($code, 0, 44);
+					} else {
+						$rest = '';
+					}
+					$t = '1'.$code;
+					do {
+						$d = bcmod($t, '900');
+						$t = bcdiv($t, '900');
+						array_unshift($cw, $d);
+					} while ($t != '0');
+					$code = $rest;
 				}
+				break;
 			}
-			if ($addmode) {
-				// add the compaction mode codeword at the beginning
-				array_unshift($cw, $mode);
+			case 913: { // Byte Compaction mode shift
+				$cw[] = ord($code);
+				break;
 			}
-			return $cw;
 		}
+		if ($addmode) {
+			// add the compaction mode codeword at the beginning
+			array_unshift($cw, $mode);
+		}
+		return $cw;
+	}
 
-	} // end PDF417 class
+} // end PDF417 class
 
-} // END OF "class_exists PDF417"
-?>
+//============================================================+
+// END OF FILE
+//============================================================+
diff --git a/libs/tcpdf/qrcode.php b/libs/tcpdf/qrcode.php
index a6bba16d2a539b34ea2187154ac59ab4f8e720fe..4f9167679d1d0b4e265d8480fabe4f384fdcd560 100644
--- a/libs/tcpdf/qrcode.php
+++ b/libs/tcpdf/qrcode.php
@@ -1,9 +1,9 @@
 <?php
 //============================================================+
 // File name   : qrcode.php
-// Version     : 1.0.004
+// Version     : 1.0.009
 // Begin       : 2010-03-22
-// Last Update : 2010-06-03
+// Last Update : 2010-12-16
 // 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)
 // -------------------------------------------------------------------
@@ -64,6 +64,7 @@
 //============================================================+
 
 /**
+ * @file
  * Class to create QR-code arrays for TCPDF class.
  * QR Code symbol is a 2D barcode that can be scanned by handy terminals such as a mobile phone with CCD.
  * The capacity of QR Code is up to 7000 digits or 4000 characters, and has high robustness.
@@ -74,12 +75,8 @@
  * Please read comments on this class source file for full copyright and license information.
  *
  * @package com.tecnick.tcpdf
- * @abstract Class for generating QR-code array for TCPDF.
  * @author Nicola Asuni
- * @copyright 2010-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
- * @link http://www.tcpdf.org
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
- * @version 1.0.004
+ * @version 1.0.009
  */
 
 // definitions
@@ -252,2614 +249,2618 @@ if (!defined('QRCODEDEFS')) {
 
 // #*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#
 
-if (!class_exists('QRcode', false)) {
-
-	// for compatibility with PHP4
-	if (!function_exists('str_split')) {
-    	/**
-    	 * Convert a string to an array (needed for PHP4 compatibility)
-    	 * @param string $string The input string.
-    	 * @param int $split_length Maximum length of the chunk.
-    	 * @return  If the optional split_length  parameter is specified, the returned array will be broken down into chunks with each being split_length  in length, otherwise each chunk will be one character in length. FALSE is returned if split_length is less than 1. If the split_length length exceeds the length of string , the entire string is returned as the first (and only) array element.
-    	 */
-		function str_split($string, $split_length=1) {
-			if ((strlen($string) > $split_length) OR (!$split_length)) {
-				do {
-					$c = strlen($string);
-					$parts[] = substr($string, 0, $split_length);
-					$string = substr($string, $split_length);
-				} while ($string !== false);
-			} else {
-				$parts = array($string);
-			}
-			return $parts;
-		}
+// for compatibility with PHP4
+if (!function_exists('str_split')) {
+	/**
+	 * Convert a string to an array (needed for PHP4 compatibility)
+	 * @param $string (string) The input string.
+	 * @param $split_length (int) Maximum length of the chunk.
+	 * @return  If the optional split_length  parameter is specified, the returned array will be broken down into chunks with each being split_length  in length, otherwise each chunk will be one character in length. FALSE is returned if split_length is less than 1. If the split_length length exceeds the length of string , the entire string is returned as the first (and only) array element.
+	 */
+	function str_split($string, $split_length=1) {
+		if ((strlen($string) > $split_length) OR (!$split_length)) {
+			do {
+				$c = strlen($string);
+				$parts[] = substr($string, 0, $split_length);
+				$string = substr($string, $split_length);
+			} while ($string !== false);
+		} else {
+			$parts = array($string);
+		}
+		return $parts;
 	}
+}
 
-	// #####################################################
+// #####################################################
+
+/**
+ * @class QRcode
+ * Class to create QR-code arrays for TCPDF class.
+ * QR Code symbol is a 2D barcode that can be scanned by handy terminals such as a mobile phone with CCD.
+ * The capacity of QR Code is up to 7000 digits or 4000 characters, and has high robustness.
+ * This class supports QR Code model 2, described in JIS (Japanese Industrial Standards) X0510:2004 or ISO/IEC 18004.
+ * Currently the following features are not supported: ECI and FNC1 mode, Micro QR Code, QR Code model 1, Structured mode.
+ *
+ * This class is derived from "PHP QR Code encoder" by Dominik Dzienia (http://phpqrcode.sourceforge.net/) based on "libqrencode C library 3.1.1." by Kentaro Fukuchi (http://megaui.net/fukuchi/works/qrencode/index.en.html), contains Reed-Solomon code written by Phil Karn, KA9Q. QR Code is registered trademark of DENSO WAVE INCORPORATED (http://www.denso-wave.com/qrcode/index-e.html).
+ * Please read comments on this class source file for full copyright and license information.
+ *
+ * @package com.tecnick.tcpdf
+ * @author Nicola Asuni
+ * @version 1.0.009
+ */
+class QRcode {
 
 	/**
-	 * Class to create QR-code arrays for TCPDF class.
-	 * QR Code symbol is a 2D barcode that can be scanned by handy terminals such as a mobile phone with CCD.
-	 * The capacity of QR Code is up to 7000 digits or 4000 characters, and has high robustness.
-	 * This class supports QR Code model 2, described in JIS (Japanese Industrial Standards) X0510:2004 or ISO/IEC 18004.
-	 * Currently the following features are not supported: ECI and FNC1 mode, Micro QR Code, QR Code model 1, Structured mode.
-	 *
-	 * This class is derived from "PHP QR Code encoder" by Dominik Dzienia (http://phpqrcode.sourceforge.net/) based on "libqrencode C library 3.1.1." by Kentaro Fukuchi (http://megaui.net/fukuchi/works/qrencode/index.en.html), contains Reed-Solomon code written by Phil Karn, KA9Q. QR Code is registered trademark of DENSO WAVE INCORPORATED (http://www.denso-wave.com/qrcode/index-e.html).
-	 * Please read comments on this class source file for full copyright and license information.
-	 *
-	 * @name QRcode
-	 * @package com.tecnick.tcpdf
-	 * @abstract Class for generating QR-code array for TCPDF.
-	 * @author Nicola Asuni
-	 * @copyright 2010-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
-	 * @link http://www.tcpdf.org
-	 * @license http://www.gnu.org/copyleft/lesser.html LGPL
-	 * @version 1.0.004
-	 */
-	class QRcode {
-
-		/**
-		 * @var barcode array to be returned which is readable by TCPDF
-		 * @access protected
-		 */
-		protected $barcode_array = array();
-
-		/**
-		 * @var QR code version. Size of QRcode is defined as version. Version is from 1 to 40. Version 1 is 21*21 matrix. And 4 modules increases whenever 1 version increases. So version 40 is 177*177 matrix.
-		 * @access protected
-		 */
-		protected $version = 0;
-
-		/**
-		 * @var Levels of error correction. See definitions for possible values.
-		 * @access protected
-		 */
-		protected $level = QR_ECLEVEL_L;
-
-		/**
-		 * @var Encoding mode
-		 * @access protected
-		 */
-		protected $hint = QR_MODE_8B;
-
-		/**
-		 * @var if true the input string will be converted to uppercase
-		 * @access protected
-		 */
-		protected $casesensitive = true;
-
-		/**
-		 * @var structured QR code (not supported yet)
-		 * @access protected
-		 */
-		protected $structured = 0;
-
-		/**
-		 * @var mask data
-		 * @access protected
-		 */
-		protected $data;
-
-		// FrameFiller
-
-		/**
-		 * @var width
-		 * @access protected
-		 */
-		protected $width;
-
-		/**
-		 * @var frame
-		 * @access protected
-		 */
-		protected $frame;
-
-		/**
-		 * @var X position of bit
-		 * @access protected
-		 */
-		protected $x;
-
-		/**
-		 * @var Y position of bit
-		 * @access protected
-		 */
-		protected $y;
-
-		/**
-		 * @var direction
-		 * @access protected
-		 */
-		protected $dir;
-
-		/**
-		 * @var single bit
-		 * @access protected
-		 */
-		protected $bit;
-
-		// ---- QRrawcode ----
-
-		/**
-		 * @var data code
-		 * @access protected
-		 */
-		protected $datacode = array();
-
-		/**
-		 * @var error correction code
-		 * @access protected
-		 */
-		protected $ecccode = array();
-
-		/**
-		 * @var blocks
-		 * @access protected
-		 */
-		protected $blocks;
-
-		/**
-		 * @var Reed-Solomon blocks
-		 * @access protected
-		 */
-		protected $rsblocks = array(); //of RSblock
-
-		/**
-		 * @var counter
-		 * @access protected
-		 */
-		protected $count;
-
-		/**
-		 * @var data length
-		 * @access protected
-		 */
-		protected $dataLength;
-
-		/**
-		 * @var error correction length
-		 * @access protected
-		 */
-		protected $eccLength;
-
-		/**
-		 * @var b1
-		 * @access protected
-		 */
-		protected $b1;
-
-		// ---- QRmask ----
-
-		/**
-		 * @var run length
-		 * @access protected
-		 */
-		protected $runLength = array();
-
-		// ---- QRsplit ----
-
-		/**
-		 * @var input data string
-		 * @access protected
-		 */
-		protected $dataStr = '';
-
-		/**
-		 * @var input items
-		 * @access protected
-		 */
-		protected $items;
-
-		// Reed-Solomon items
-
-		/**
-		 * @var Reed-Solomon items
-		 * @access protected
-		 */
-		protected $rsitems = array();
-
-		/**
-		 * @var array of frames
-		 * @access protected
-		 */
-		protected $frames = array();
-
-		/**
-		 * @var alphabet-numeric convesion table
-		 * @access protected
-		 */
-		protected $anTable = array(
-			-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, //
-			-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, //
-			36, -1, -1, -1, 37, 38, -1, -1, -1, -1, 39, 40, -1, 41, 42, 43, //
-			 0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 44, -1, -1, -1, -1, -1, //
-			-1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, //
-			25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1, //
-			-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, //
-			-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1  //
-			);
+	 * Barcode array to be returned which is readable by TCPDF.
+	 * @protected
+	 */
+	protected $barcode_array = array();
 
-		/**
-		 * @var array Table of the capacity of symbols
-		 * See Table 1 (pp.13) and Table 12-16 (pp.30-36), JIS X0510:2004.
-		 * @access protected
-		 */
-		protected $capacity = array(
-			array(  0,    0, 0, array(   0,    0,    0,    0)), //
-			array( 21,   26, 0, array(   7,   10,   13,   17)), //  1
-			array( 25,   44, 7, array(  10,   16,   22,   28)), //
-			array( 29,   70, 7, array(  15,   26,   36,   44)), //
-			array( 33,  100, 7, array(  20,   36,   52,   64)), //
-			array( 37,  134, 7, array(  26,   48,   72,   88)), //  5
-			array( 41,  172, 7, array(  36,   64,   96,  112)), //
-			array( 45,  196, 0, array(  40,   72,  108,  130)), //
-			array( 49,  242, 0, array(  48,   88,  132,  156)), //
-			array( 53,  292, 0, array(  60,  110,  160,  192)), //
-			array( 57,  346, 0, array(  72,  130,  192,  224)), // 10
-			array( 61,  404, 0, array(  80,  150,  224,  264)), //
-			array( 65,  466, 0, array(  96,  176,  260,  308)), //
-			array( 69,  532, 0, array( 104,  198,  288,  352)), //
-			array( 73,  581, 3, array( 120,  216,  320,  384)), //
-			array( 77,  655, 3, array( 132,  240,  360,  432)), // 15
-			array( 81,  733, 3, array( 144,  280,  408,  480)), //
-			array( 85,  815, 3, array( 168,  308,  448,  532)), //
-			array( 89,  901, 3, array( 180,  338,  504,  588)), //
-			array( 93,  991, 3, array( 196,  364,  546,  650)), //
-			array( 97, 1085, 3, array( 224,  416,  600,  700)), // 20
-			array(101, 1156, 4, array( 224,  442,  644,  750)), //
-			array(105, 1258, 4, array( 252,  476,  690,  816)), //
-			array(109, 1364, 4, array( 270,  504,  750,  900)), //
-			array(113, 1474, 4, array( 300,  560,  810,  960)), //
-			array(117, 1588, 4, array( 312,  588,  870, 1050)), // 25
-			array(121, 1706, 4, array( 336,  644,  952, 1110)), //
-			array(125, 1828, 4, array( 360,  700, 1020, 1200)), //
-			array(129, 1921, 3, array( 390,  728, 1050, 1260)), //
-			array(133, 2051, 3, array( 420,  784, 1140, 1350)), //
-			array(137, 2185, 3, array( 450,  812, 1200, 1440)), // 30
-			array(141, 2323, 3, array( 480,  868, 1290, 1530)), //
-			array(145, 2465, 3, array( 510,  924, 1350, 1620)), //
-			array(149, 2611, 3, array( 540,  980, 1440, 1710)), //
-			array(153, 2761, 3, array( 570, 1036, 1530, 1800)), //
-			array(157, 2876, 0, array( 570, 1064, 1590, 1890)), // 35
-			array(161, 3034, 0, array( 600, 1120, 1680, 1980)), //
-			array(165, 3196, 0, array( 630, 1204, 1770, 2100)), //
-			array(169, 3362, 0, array( 660, 1260, 1860, 2220)), //
-			array(173, 3532, 0, array( 720, 1316, 1950, 2310)), //
-			array(177, 3706, 0, array( 750, 1372, 2040, 2430))  // 40
-		);
+	/**
+	 * QR code version. Size of QRcode is defined as version. Version is from 1 to 40. Version 1 is 21*21 matrix. And 4 modules increases whenever 1 version increases. So version 40 is 177*177 matrix.
+	 * @protected
+	 */
+	protected $version = 0;
 
-		/**
-		 * @var array Length indicator
-		 * @access protected
-		 */
-		protected $lengthTableBits = array(
-			array(10, 12, 14),
-			array( 9, 11, 13),
-			array( 8, 16, 16),
-			array( 8, 10, 12)
-		);
+	/**
+	 * Levels of error correction. See definitions for possible values.
+	 * @protected
+	 */
+	protected $level = QR_ECLEVEL_L;
 
-		/**
-		 * @var array Table of the error correction code (Reed-Solomon block)
-		 * See Table 12-16 (pp.30-36), JIS X0510:2004.
-		 * @access protected
-		 */
-		protected $eccTable = array(
-			array(array( 0,  0), array( 0,  0), array( 0,  0), array( 0,  0)), //
-			array(array( 1,  0), array( 1,  0), array( 1,  0), array( 1,  0)), //  1
-			array(array( 1,  0), array( 1,  0), array( 1,  0), array( 1,  0)), //
-			array(array( 1,  0), array( 1,  0), array( 2,  0), array( 2,  0)), //
-			array(array( 1,  0), array( 2,  0), array( 2,  0), array( 4,  0)), //
-			array(array( 1,  0), array( 2,  0), array( 2,  2), array( 2,  2)), //  5
-			array(array( 2,  0), array( 4,  0), array( 4,  0), array( 4,  0)), //
-			array(array( 2,  0), array( 4,  0), array( 2,  4), array( 4,  1)), //
-			array(array( 2,  0), array( 2,  2), array( 4,  2), array( 4,  2)), //
-			array(array( 2,  0), array( 3,  2), array( 4,  4), array( 4,  4)), //
-			array(array( 2,  2), array( 4,  1), array( 6,  2), array( 6,  2)), // 10
-			array(array( 4,  0), array( 1,  4), array( 4,  4), array( 3,  8)), //
-			array(array( 2,  2), array( 6,  2), array( 4,  6), array( 7,  4)), //
-			array(array( 4,  0), array( 8,  1), array( 8,  4), array(12,  4)), //
-			array(array( 3,  1), array( 4,  5), array(11,  5), array(11,  5)), //
-			array(array( 5,  1), array( 5,  5), array( 5,  7), array(11,  7)), // 15
-			array(array( 5,  1), array( 7,  3), array(15,  2), array( 3, 13)), //
-			array(array( 1,  5), array(10,  1), array( 1, 15), array( 2, 17)), //
-			array(array( 5,  1), array( 9,  4), array(17,  1), array( 2, 19)), //
-			array(array( 3,  4), array( 3, 11), array(17,  4), array( 9, 16)), //
-			array(array( 3,  5), array( 3, 13), array(15,  5), array(15, 10)), // 20
-			array(array( 4,  4), array(17,  0), array(17,  6), array(19,  6)), //
-			array(array( 2,  7), array(17,  0), array( 7, 16), array(34,  0)), //
-			array(array( 4,  5), array( 4, 14), array(11, 14), array(16, 14)), //
-			array(array( 6,  4), array( 6, 14), array(11, 16), array(30,  2)), //
-			array(array( 8,  4), array( 8, 13), array( 7, 22), array(22, 13)), // 25
-			array(array(10,  2), array(19,  4), array(28,  6), array(33,  4)), //
-			array(array( 8,  4), array(22,  3), array( 8, 26), array(12, 28)), //
-			array(array( 3, 10), array( 3, 23), array( 4, 31), array(11, 31)), //
-			array(array( 7,  7), array(21,  7), array( 1, 37), array(19, 26)), //
-			array(array( 5, 10), array(19, 10), array(15, 25), array(23, 25)), // 30
-			array(array(13,  3), array( 2, 29), array(42,  1), array(23, 28)), //
-			array(array(17,  0), array(10, 23), array(10, 35), array(19, 35)), //
-			array(array(17,  1), array(14, 21), array(29, 19), array(11, 46)), //
-			array(array(13,  6), array(14, 23), array(44,  7), array(59,  1)), //
-			array(array(12,  7), array(12, 26), array(39, 14), array(22, 41)), // 35
-			array(array( 6, 14), array( 6, 34), array(46, 10), array( 2, 64)), //
-			array(array(17,  4), array(29, 14), array(49, 10), array(24, 46)), //
-			array(array( 4, 18), array(13, 32), array(48, 14), array(42, 32)), //
-			array(array(20,  4), array(40,  7), array(43, 22), array(10, 67)), //
-			array(array(19,  6), array(18, 31), array(34, 34), array(20, 61))  // 40
-		);
+	/**
+	 * Encoding mode.
+	 * @protected
+	 */
+	protected $hint = QR_MODE_8B;
 
-		/**
-		 * @var array Positions of alignment patterns.
-		 * This array includes only the second and the third position of the alignment patterns. Rest of them can be calculated from the distance between them.
-		 * See Table 1 in Appendix E (pp.71) of JIS X0510:2004.
-		 * @access protected
-		 */
-		protected $alignmentPattern = array(
-			array( 0,  0),
-			array( 0,  0), array(18,  0), array(22,  0), array(26,  0), array(30,  0), //  1- 5
-			array(34,  0), array(22, 38), array(24, 42), array(26, 46), array(28, 50), //  6-10
-			array(30, 54), array(32, 58), array(34, 62), array(26, 46), array(26, 48), // 11-15
-			array(26, 50), array(30, 54), array(30, 56), array(30, 58), array(34, 62), // 16-20
-			array(28, 50), array(26, 50), array(30, 54), array(28, 54), array(32, 58), // 21-25
-			array(30, 58), array(34, 62), array(26, 50), array(30, 54), array(26, 52), // 26-30
-			array(30, 56), array(34, 60), array(30, 58), array(34, 62), array(30, 54), // 31-35
-			array(24, 50), array(28, 54), array(32, 58), array(26, 54), array(30, 58)  // 35-40
-		);
+	/**
+	 * Boolean flag, if true the input string will be converted to uppercase.
+	 * @protected
+	 */
+	protected $casesensitive = true;
 
-		/**
-		 * @var array Version information pattern (BCH coded).
-		 * See Table 1 in Appendix D (pp.68) of JIS X0510:2004.
-		 * size: [QRSPEC_VERSION_MAX - 6]
-		 * @access protected
-		 */
-		protected $versionPattern = array(
-			0x07c94, 0x085bc, 0x09a99, 0x0a4d3, 0x0bbf6, 0x0c762, 0x0d847, 0x0e60d, //
-			0x0f928, 0x10b78, 0x1145d, 0x12a17, 0x13532, 0x149a6, 0x15683, 0x168c9, //
-			0x177ec, 0x18ec4, 0x191e1, 0x1afab, 0x1b08e, 0x1cc1a, 0x1d33f, 0x1ed75, //
-			0x1f250, 0x209d5, 0x216f0, 0x228ba, 0x2379f, 0x24b0b, 0x2542e, 0x26a64, //
-			0x27541, 0x28c69
-		);
+	/**
+	 * Structured QR code (not supported yet).
+	 * @protected
+	 */
+	protected $structured = 0;
+
+	/**
+	 * Mask data.
+	 * @protected
+	 */
+	protected $data;
+
+	// FrameFiller
+
+	/**
+	 * Width.
+	 * @protected
+	 */
+	protected $width;
+
+	/**
+	 * Frame.
+	 * @protected
+	 */
+	protected $frame;
+
+	/**
+	 * X position of bit.
+	 * @protected
+	 */
+	protected $x;
+
+	/**
+	 * Y position of bit.
+	 * @protected
+	 */
+	protected $y;
+
+	/**
+	 * Direction.
+	 * @protected
+	 */
+	protected $dir;
+
+	/**
+	 * Single bit value.
+	 * @protected
+	 */
+	protected $bit;
+
+	// ---- QRrawcode ----
+
+	/**
+	 * Data code.
+	 * @protected
+	 */
+	protected $datacode = array();
+
+	/**
+	 * Error correction code.
+	 * @protected
+	 */
+	protected $ecccode = array();
+
+	/**
+	 * Blocks.
+	 * @protected
+	 */
+	protected $blocks;
+
+	/**
+	 * Reed-Solomon blocks.
+	 * @protected
+	 */
+	protected $rsblocks = array(); //of RSblock
+
+	/**
+	 * Counter.
+	 * @protected
+	 */
+	protected $count;
+
+	/**
+	 * Data length.
+	 * @protected
+	 */
+	protected $dataLength;
+
+	/**
+	 * Error correction length.
+	 * @protected
+	 */
+	protected $eccLength;
+
+	/**
+	 * Value b1.
+	 * @protected
+	 */
+	protected $b1;
+
+	// ---- QRmask ----
+
+	/**
+	 * Run length.
+	 * @protected
+	 */
+	protected $runLength = array();
+
+	// ---- QRsplit ----
+
+	/**
+	 * Input data string.
+	 * @protected
+	 */
+	protected $dataStr = '';
+
+	/**
+	 * Input items.
+	 * @protected
+	 */
+	protected $items;
+
+	// Reed-Solomon items
+
+	/**
+	 * Reed-Solomon items.
+	 * @protected
+	 */
+	protected $rsitems = array();
+
+	/**
+	 * Array of frames.
+	 * @protected
+	 */
+	protected $frames = array();
 
-		/**
-		 * @var array Format information
-		 * @access protected
-		 */
-		protected $formatInfo = array(
-			array(0x77c4, 0x72f3, 0x7daa, 0x789d, 0x662f, 0x6318, 0x6c41, 0x6976), //
-			array(0x5412, 0x5125, 0x5e7c, 0x5b4b, 0x45f9, 0x40ce, 0x4f97, 0x4aa0), //
-			array(0x355f, 0x3068, 0x3f31, 0x3a06, 0x24b4, 0x2183, 0x2eda, 0x2bed), //
-			array(0x1689, 0x13be, 0x1ce7, 0x19d0, 0x0762, 0x0255, 0x0d0c, 0x083b)  //
+	/**
+	 * Alphabet-numeric convesion table.
+	 * @protected
+	 */
+	protected $anTable = array(
+		-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, //
+		-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, //
+		36, -1, -1, -1, 37, 38, -1, -1, -1, -1, 39, 40, -1, 41, 42, 43, //
+		 0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 44, -1, -1, -1, -1, -1, //
+		-1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, //
+		25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1, //
+		-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, //
+		-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1  //
 		);
 
+	/**
+	 * Array Table of the capacity of symbols.
+	 * See Table 1 (pp.13) and Table 12-16 (pp.30-36), JIS X0510:2004.
+	 * @protected
+	 */
+	protected $capacity = array(
+		array(  0,    0, 0, array(   0,    0,    0,    0)), //
+		array( 21,   26, 0, array(   7,   10,   13,   17)), //  1
+		array( 25,   44, 7, array(  10,   16,   22,   28)), //
+		array( 29,   70, 7, array(  15,   26,   36,   44)), //
+		array( 33,  100, 7, array(  20,   36,   52,   64)), //
+		array( 37,  134, 7, array(  26,   48,   72,   88)), //  5
+		array( 41,  172, 7, array(  36,   64,   96,  112)), //
+		array( 45,  196, 0, array(  40,   72,  108,  130)), //
+		array( 49,  242, 0, array(  48,   88,  132,  156)), //
+		array( 53,  292, 0, array(  60,  110,  160,  192)), //
+		array( 57,  346, 0, array(  72,  130,  192,  224)), // 10
+		array( 61,  404, 0, array(  80,  150,  224,  264)), //
+		array( 65,  466, 0, array(  96,  176,  260,  308)), //
+		array( 69,  532, 0, array( 104,  198,  288,  352)), //
+		array( 73,  581, 3, array( 120,  216,  320,  384)), //
+		array( 77,  655, 3, array( 132,  240,  360,  432)), // 15
+		array( 81,  733, 3, array( 144,  280,  408,  480)), //
+		array( 85,  815, 3, array( 168,  308,  448,  532)), //
+		array( 89,  901, 3, array( 180,  338,  504,  588)), //
+		array( 93,  991, 3, array( 196,  364,  546,  650)), //
+		array( 97, 1085, 3, array( 224,  416,  600,  700)), // 20
+		array(101, 1156, 4, array( 224,  442,  644,  750)), //
+		array(105, 1258, 4, array( 252,  476,  690,  816)), //
+		array(109, 1364, 4, array( 270,  504,  750,  900)), //
+		array(113, 1474, 4, array( 300,  560,  810,  960)), //
+		array(117, 1588, 4, array( 312,  588,  870, 1050)), // 25
+		array(121, 1706, 4, array( 336,  644,  952, 1110)), //
+		array(125, 1828, 4, array( 360,  700, 1020, 1200)), //
+		array(129, 1921, 3, array( 390,  728, 1050, 1260)), //
+		array(133, 2051, 3, array( 420,  784, 1140, 1350)), //
+		array(137, 2185, 3, array( 450,  812, 1200, 1440)), // 30
+		array(141, 2323, 3, array( 480,  868, 1290, 1530)), //
+		array(145, 2465, 3, array( 510,  924, 1350, 1620)), //
+		array(149, 2611, 3, array( 540,  980, 1440, 1710)), //
+		array(153, 2761, 3, array( 570, 1036, 1530, 1800)), //
+		array(157, 2876, 0, array( 570, 1064, 1590, 1890)), // 35
+		array(161, 3034, 0, array( 600, 1120, 1680, 1980)), //
+		array(165, 3196, 0, array( 630, 1204, 1770, 2100)), //
+		array(169, 3362, 0, array( 660, 1260, 1860, 2220)), //
+		array(173, 3532, 0, array( 720, 1316, 1950, 2310)), //
+		array(177, 3706, 0, array( 750, 1372, 2040, 2430))  // 40
+	);
+
+	/**
+	 * Array Length indicator.
+	 * @protected
+	 */
+	protected $lengthTableBits = array(
+		array(10, 12, 14),
+		array( 9, 11, 13),
+		array( 8, 16, 16),
+		array( 8, 10, 12)
+	);
+
+	/**
+	 * Array Table of the error correction code (Reed-Solomon block).
+	 * See Table 12-16 (pp.30-36), JIS X0510:2004.
+	 * @protected
+	 */
+	protected $eccTable = array(
+		array(array( 0,  0), array( 0,  0), array( 0,  0), array( 0,  0)), //
+		array(array( 1,  0), array( 1,  0), array( 1,  0), array( 1,  0)), //  1
+		array(array( 1,  0), array( 1,  0), array( 1,  0), array( 1,  0)), //
+		array(array( 1,  0), array( 1,  0), array( 2,  0), array( 2,  0)), //
+		array(array( 1,  0), array( 2,  0), array( 2,  0), array( 4,  0)), //
+		array(array( 1,  0), array( 2,  0), array( 2,  2), array( 2,  2)), //  5
+		array(array( 2,  0), array( 4,  0), array( 4,  0), array( 4,  0)), //
+		array(array( 2,  0), array( 4,  0), array( 2,  4), array( 4,  1)), //
+		array(array( 2,  0), array( 2,  2), array( 4,  2), array( 4,  2)), //
+		array(array( 2,  0), array( 3,  2), array( 4,  4), array( 4,  4)), //
+		array(array( 2,  2), array( 4,  1), array( 6,  2), array( 6,  2)), // 10
+		array(array( 4,  0), array( 1,  4), array( 4,  4), array( 3,  8)), //
+		array(array( 2,  2), array( 6,  2), array( 4,  6), array( 7,  4)), //
+		array(array( 4,  0), array( 8,  1), array( 8,  4), array(12,  4)), //
+		array(array( 3,  1), array( 4,  5), array(11,  5), array(11,  5)), //
+		array(array( 5,  1), array( 5,  5), array( 5,  7), array(11,  7)), // 15
+		array(array( 5,  1), array( 7,  3), array(15,  2), array( 3, 13)), //
+		array(array( 1,  5), array(10,  1), array( 1, 15), array( 2, 17)), //
+		array(array( 5,  1), array( 9,  4), array(17,  1), array( 2, 19)), //
+		array(array( 3,  4), array( 3, 11), array(17,  4), array( 9, 16)), //
+		array(array( 3,  5), array( 3, 13), array(15,  5), array(15, 10)), // 20
+		array(array( 4,  4), array(17,  0), array(17,  6), array(19,  6)), //
+		array(array( 2,  7), array(17,  0), array( 7, 16), array(34,  0)), //
+		array(array( 4,  5), array( 4, 14), array(11, 14), array(16, 14)), //
+		array(array( 6,  4), array( 6, 14), array(11, 16), array(30,  2)), //
+		array(array( 8,  4), array( 8, 13), array( 7, 22), array(22, 13)), // 25
+		array(array(10,  2), array(19,  4), array(28,  6), array(33,  4)), //
+		array(array( 8,  4), array(22,  3), array( 8, 26), array(12, 28)), //
+		array(array( 3, 10), array( 3, 23), array( 4, 31), array(11, 31)), //
+		array(array( 7,  7), array(21,  7), array( 1, 37), array(19, 26)), //
+		array(array( 5, 10), array(19, 10), array(15, 25), array(23, 25)), // 30
+		array(array(13,  3), array( 2, 29), array(42,  1), array(23, 28)), //
+		array(array(17,  0), array(10, 23), array(10, 35), array(19, 35)), //
+		array(array(17,  1), array(14, 21), array(29, 19), array(11, 46)), //
+		array(array(13,  6), array(14, 23), array(44,  7), array(59,  1)), //
+		array(array(12,  7), array(12, 26), array(39, 14), array(22, 41)), // 35
+		array(array( 6, 14), array( 6, 34), array(46, 10), array( 2, 64)), //
+		array(array(17,  4), array(29, 14), array(49, 10), array(24, 46)), //
+		array(array( 4, 18), array(13, 32), array(48, 14), array(42, 32)), //
+		array(array(20,  4), array(40,  7), array(43, 22), array(10, 67)), //
+		array(array(19,  6), array(18, 31), array(34, 34), array(20, 61))  // 40
+	);
 
-		// -------------------------------------------------
-		// -------------------------------------------------
+	/**
+	 * Array Positions of alignment patterns.
+	 * This array includes only the second and the third position of the alignment patterns. Rest of them can be calculated from the distance between them.
+	 * See Table 1 in Appendix E (pp.71) of JIS X0510:2004.
+	 * @protected
+	 */
+	protected $alignmentPattern = array(
+		array( 0,  0),
+		array( 0,  0), array(18,  0), array(22,  0), array(26,  0), array(30,  0), //  1- 5
+		array(34,  0), array(22, 38), array(24, 42), array(26, 46), array(28, 50), //  6-10
+		array(30, 54), array(32, 58), array(34, 62), array(26, 46), array(26, 48), // 11-15
+		array(26, 50), array(30, 54), array(30, 56), array(30, 58), array(34, 62), // 16-20
+		array(28, 50), array(26, 50), array(30, 54), array(28, 54), array(32, 58), // 21-25
+		array(30, 58), array(34, 62), array(26, 50), array(30, 54), array(26, 52), // 26-30
+		array(30, 56), array(34, 60), array(30, 58), array(34, 62), array(30, 54), // 31-35
+		array(24, 50), array(28, 54), array(32, 58), array(26, 54), array(30, 58)  // 35-40
+	);
 
+	/**
+	 * Array Version information pattern (BCH coded).
+	 * See Table 1 in Appendix D (pp.68) of JIS X0510:2004.
+	 * size: [QRSPEC_VERSION_MAX - 6]
+	 * @protected
+	 */
+	protected $versionPattern = array(
+		0x07c94, 0x085bc, 0x09a99, 0x0a4d3, 0x0bbf6, 0x0c762, 0x0d847, 0x0e60d, //
+		0x0f928, 0x10b78, 0x1145d, 0x12a17, 0x13532, 0x149a6, 0x15683, 0x168c9, //
+		0x177ec, 0x18ec4, 0x191e1, 0x1afab, 0x1b08e, 0x1cc1a, 0x1d33f, 0x1ed75, //
+		0x1f250, 0x209d5, 0x216f0, 0x228ba, 0x2379f, 0x24b0b, 0x2542e, 0x26a64, //
+		0x27541, 0x28c69
+	);
 
-		/**
-		 * This is the class constructor.
-		 * Creates a QRcode object
-		 * @param string $code code to represent using QRcode
-		 * @param string $eclevel error level: <ul><li>L : About 7% or less errors can be corrected.</li><li>M : About 15% or less errors can be corrected.</li><li>Q : About 25% or less errors can be corrected.</li><li>H : About 30% or less errors can be corrected.</li></ul>
-		 * @access public
-		 * @since 1.0.000
-		 */
-		public function __construct($code, $eclevel = 'L') {
-			$barcode_array = array();
-			if ((is_null($code)) OR ($code == '\0') OR ($code == '')) {
-				return false;
-			}
-			// set error correction level
-			$this->level = array_search($eclevel, array('L', 'M', 'Q', 'H'));
-			if ($this->level === false) {
-				$this->level = QR_ECLEVEL_L;
-			}
-			if (($this->hint != QR_MODE_8B) AND ($this->hint != QR_MODE_KJ)) {
-				return false;
-			}
-			if (($this->version < 0) OR ($this->version > QRSPEC_VERSION_MAX)) {
-				return false;
-			}
-			$this->items = array();
-			$this->encodeString($code);
-			$qrTab = $this->binarize($this->data);
-			$size = count($qrTab);
-			$barcode_array['num_rows'] = $size;
-			$barcode_array['num_cols'] = $size;
-			$barcode_array['bcode'] = array();
-			foreach ($qrTab as $line) {
-				$arrAdd = array();
-				foreach (str_split($line) as $char) {
-					$arrAdd[] = ($char=='1')?1:0;
-				}
-				$barcode_array['bcode'][] = $arrAdd;
-			}
-			$this->barcode_array = $barcode_array;
-		}
-
-		/**
-		 * Returns a barcode array which is readable by TCPDF
-		 * @return array barcode array readable by TCPDF;
-		 * @access public
-		 */
-		public function getBarcodeArray() {
-			return $this->barcode_array;
-		}
-
-		/**
-		 * Convert the frame in binary form
-		 * @param array $frame array to binarize
-		 * @return array frame in binary form
-		 */
-		protected function binarize($frame) {
-			$len = count($frame);
-			// the frame is square (width = height)
-			foreach ($frame as &$frameLine) {
-				for ($i=0; $i<$len; $i++) {
-					$frameLine[$i] = (ord($frameLine[$i])&1)?'1':'0';
-				}
+	/**
+	 * Array Format information
+	 * @protected
+	 */
+	protected $formatInfo = array(
+		array(0x77c4, 0x72f3, 0x7daa, 0x789d, 0x662f, 0x6318, 0x6c41, 0x6976), //
+		array(0x5412, 0x5125, 0x5e7c, 0x5b4b, 0x45f9, 0x40ce, 0x4f97, 0x4aa0), //
+		array(0x355f, 0x3068, 0x3f31, 0x3a06, 0x24b4, 0x2183, 0x2eda, 0x2bed), //
+		array(0x1689, 0x13be, 0x1ce7, 0x19d0, 0x0762, 0x0255, 0x0d0c, 0x083b)  //
+	);
+
+
+	// -------------------------------------------------
+	// -------------------------------------------------
+
+
+	/**
+	 * This is the class constructor.
+	 * Creates a QRcode object
+	 * @param $code (string) code to represent using QRcode
+	 * @param $eclevel (string) error level: <ul><li>L : About 7% or less errors can be corrected.</li><li>M : About 15% or less errors can be corrected.</li><li>Q : About 25% or less errors can be corrected.</li><li>H : About 30% or less errors can be corrected.</li></ul>
+	 * @public
+	 * @since 1.0.000
+	 */
+	public function __construct($code, $eclevel = 'L') {
+		$barcode_array = array();
+		if ((is_null($code)) OR ($code == '\0') OR ($code == '')) {
+			return false;
+		}
+		// set error correction level
+		$this->level = array_search($eclevel, array('L', 'M', 'Q', 'H'));
+		if ($this->level === false) {
+			$this->level = QR_ECLEVEL_L;
+		}
+		if (($this->hint != QR_MODE_8B) AND ($this->hint != QR_MODE_KJ)) {
+			return false;
+		}
+		if (($this->version < 0) OR ($this->version > QRSPEC_VERSION_MAX)) {
+			return false;
+		}
+		$this->items = array();
+		$this->encodeString($code);
+		if (is_null($this->data)) {
+			return false;
+		}
+		$qrTab = $this->binarize($this->data);
+		$size = count($qrTab);
+		$barcode_array['num_rows'] = $size;
+		$barcode_array['num_cols'] = $size;
+		$barcode_array['bcode'] = array();
+		foreach ($qrTab as $line) {
+			$arrAdd = array();
+			foreach (str_split($line) as $char) {
+				$arrAdd[] = ($char=='1')?1:0;
 			}
-			return $frame;
+			$barcode_array['bcode'][] = $arrAdd;
 		}
+		$this->barcode_array = $barcode_array;
+	}
 
-		/**
-		 * Encode the input string to QR code
-		 * @param string $string input string to encode
-		 */
-		protected function encodeString($string) {
-			$this->dataStr = $string;
-			if (!$this->casesensitive) {
-				$this->toUpper();
-			}
-			$ret = $this->splitString();
-			if ($ret < 0) {
-				return NULL;
+	/**
+	 * Returns a barcode array which is readable by TCPDF
+	 * @return array barcode array readable by TCPDF;
+	 * @public
+	 */
+	public function getBarcodeArray() {
+		return $this->barcode_array;
+	}
+
+	/**
+	 * Convert the frame in binary form
+	 * @param $frame (array) array to binarize
+	 * @return array frame in binary form
+	 */
+	protected function binarize($frame) {
+		$len = count($frame);
+		// the frame is square (width = height)
+		foreach ($frame as &$frameLine) {
+			for ($i=0; $i<$len; $i++) {
+				$frameLine[$i] = (ord($frameLine[$i])&1)?'1':'0';
 			}
-			$this->encodeMask(-1);
 		}
+		return $frame;
+	}
 
-		/**
-		 * Encode mask
-		 * @param int $mask masking mode
-		 */
-		protected function encodeMask($mask) {
-			$spec = array(0, 0, 0, 0, 0);
-			$this->datacode = $this->getByteStream($this->items);
-			if (is_null($this->datacode)) {
-				return NULL;
-			}
-			$spec = $this->getEccSpec($this->version, $this->level, $spec);
-			$this->b1 = $this->rsBlockNum1($spec);
-			$this->dataLength = $this->rsDataLength($spec);
-			$this->eccLength = $this->rsEccLength($spec);
-			$this->ecccode = array_fill(0, $this->eccLength, 0);
-			$this->blocks = $this->rsBlockNum($spec);
-			$ret = $this->init($spec);
-			if ($ret < 0) {
-				return NULL;
-			}
-			$this->count = 0;
-			$this->width = $this->getWidth($this->version);
-			$this->frame = $this->newFrame($this->version);
-			$this->x = $this->width - 1;
-			$this->y = $this->width - 1;
-			$this->dir = -1;
-			$this->bit = -1;
-			// inteleaved data and ecc codes
-			for ($i=0; $i < ($this->dataLength + $this->eccLength); $i++) {
-				$code = $this->getCode();
-				$bit = 0x80;
-				for ($j=0; $j<8; $j++) {
-					$addr = $this->getNextPosition();
-					$this->setFrameAt($addr, 0x02 | (($bit & $code) != 0));
-					$bit = $bit >> 1;
-				}
-			}
-			// remainder bits
-			$j = $this->getRemainder($this->version);
-			for ($i=0; $i<$j; $i++) {
+	/**
+	 * Encode the input string to QR code
+	 * @param $string (string) input string to encode
+	 */
+	protected function encodeString($string) {
+		$this->dataStr = $string;
+		if (!$this->casesensitive) {
+			$this->toUpper();
+		}
+		$ret = $this->splitString();
+		if ($ret < 0) {
+			return NULL;
+		}
+		$this->encodeMask(-1);
+	}
+
+	/**
+	 * Encode mask
+	 * @param $mask (int) masking mode
+	 */
+	protected function encodeMask($mask) {
+		$spec = array(0, 0, 0, 0, 0);
+		$this->datacode = $this->getByteStream($this->items);
+		if (is_null($this->datacode)) {
+			return NULL;
+		}
+		$spec = $this->getEccSpec($this->version, $this->level, $spec);
+		$this->b1 = $this->rsBlockNum1($spec);
+		$this->dataLength = $this->rsDataLength($spec);
+		$this->eccLength = $this->rsEccLength($spec);
+		$this->ecccode = array_fill(0, $this->eccLength, 0);
+		$this->blocks = $this->rsBlockNum($spec);
+		$ret = $this->init($spec);
+		if ($ret < 0) {
+			return NULL;
+		}
+		$this->count = 0;
+		$this->width = $this->getWidth($this->version);
+		$this->frame = $this->newFrame($this->version);
+		$this->x = $this->width - 1;
+		$this->y = $this->width - 1;
+		$this->dir = -1;
+		$this->bit = -1;
+		// inteleaved data and ecc codes
+		for ($i=0; $i < ($this->dataLength + $this->eccLength); $i++) {
+			$code = $this->getCode();
+			$bit = 0x80;
+			for ($j=0; $j<8; $j++) {
 				$addr = $this->getNextPosition();
-				$this->setFrameAt($addr, 0x02);
+				$this->setFrameAt($addr, 0x02 | (($bit & $code) != 0));
+				$bit = $bit >> 1;
 			}
-			// masking
-			$this->runLength = array_fill(0, QRSPEC_WIDTH_MAX + 1, 0);
-			if ($mask < 0) {
-				if (QR_FIND_BEST_MASK) {
-					$masked = $this->mask($this->width, $this->frame, $this->level);
-				} else {
-					$masked = $this->makeMask($this->width, $this->frame, (intval(QR_DEFAULT_MASK) % 8), $this->level);
-				}
+		}
+		// remainder bits
+		$j = $this->getRemainder($this->version);
+		for ($i=0; $i<$j; $i++) {
+			$addr = $this->getNextPosition();
+			$this->setFrameAt($addr, 0x02);
+		}
+		// masking
+		$this->runLength = array_fill(0, QRSPEC_WIDTH_MAX + 1, 0);
+		if ($mask < 0) {
+			if (QR_FIND_BEST_MASK) {
+				$masked = $this->mask($this->width, $this->frame, $this->level);
 			} else {
-				$masked = $this->makeMask($this->width, $this->frame, $mask, $this->level);
-			}
-			if ($masked == NULL) {
-				return NULL;
+				$masked = $this->makeMask($this->width, $this->frame, (intval(QR_DEFAULT_MASK) % 8), $this->level);
 			}
-			$this->data = $masked;
+		} else {
+			$masked = $this->makeMask($this->width, $this->frame, $mask, $this->level);
 		}
+		if ($masked == NULL) {
+			return NULL;
+		}
+		$this->data = $masked;
+	}
 
-		// - - - - - - - - - - - - - - - - - - - - - - - - -
+	// - - - - - - - - - - - - - - - - - - - - - - - - -
 
-		// FrameFiller
+	// FrameFiller
 
-		/**
-		 * Set frame value at specified position
-		 * @param array $at x,y position
-		 * @param int $val value of the character to set
-		 */
-		protected function setFrameAt($at, $val) {
-			$this->frame[$at['y']][$at['x']] = chr($val);
-		}
+	/**
+	 * Set frame value at specified position
+	 * @param $at (array) x,y position
+	 * @param $val (int) value of the character to set
+	 */
+	protected function setFrameAt($at, $val) {
+		$this->frame[$at['y']][$at['x']] = chr($val);
+	}
 
-		/**
-		 * Get frame value at specified position
-		 * @param array $at x,y position
-		 * @return value at specified position
-		 */
-		protected function getFrameAt($at) {
-			return ord($this->frame[$at['y']][$at['x']]);
-		}
+	/**
+	 * Get frame value at specified position
+	 * @param $at (array) x,y position
+	 * @return value at specified position
+	 */
+	protected function getFrameAt($at) {
+		return ord($this->frame[$at['y']][$at['x']]);
+	}
 
-		/**
-		 * Return the next frame position
-		 * @return array of x,y coordinates
-		 */
-		protected function getNextPosition() {
-			do {
-				if ($this->bit == -1) {
-					$this->bit = 0;
-					return array('x'=>$this->x, 'y'=>$this->y);
-				}
-				$x = $this->x;
-				$y = $this->y;
-				$w = $this->width;
-				if ($this->bit == 0) {
-					$x--;
-					$this->bit++;
-				} else {
-					$x++;
-					$y += $this->dir;
-					$this->bit--;
-				}
-				if ($this->dir < 0) {
-					if ($y < 0) {
-						$y = 0;
-						$x -= 2;
-						$this->dir = 1;
-						if ($x == 6) {
-							$x--;
-							$y = 9;
-						}
-					}
-				} else {
-					if ($y == $w) {
-						$y = $w - 1;
-						$x -= 2;
-						$this->dir = -1;
-						if ($x == 6) {
-							$x--;
-							$y -= 8;
-						}
+	/**
+	 * Return the next frame position
+	 * @return array of x,y coordinates
+	 */
+	protected function getNextPosition() {
+		do {
+			if ($this->bit == -1) {
+				$this->bit = 0;
+				return array('x'=>$this->x, 'y'=>$this->y);
+			}
+			$x = $this->x;
+			$y = $this->y;
+			$w = $this->width;
+			if ($this->bit == 0) {
+				$x--;
+				$this->bit++;
+			} else {
+				$x++;
+				$y += $this->dir;
+				$this->bit--;
+			}
+			if ($this->dir < 0) {
+				if ($y < 0) {
+					$y = 0;
+					$x -= 2;
+					$this->dir = 1;
+					if ($x == 6) {
+						$x--;
+						$y = 9;
 					}
 				}
-				if (($x < 0) OR ($y < 0)) {
-					return NULL;
+			} else {
+				if ($y == $w) {
+					$y = $w - 1;
+					$x -= 2;
+					$this->dir = -1;
+					if ($x == 6) {
+						$x--;
+						$y -= 8;
+					}
 				}
-				$this->x = $x;
-				$this->y = $y;
-			} while(ord($this->frame[$y][$x]) & 0x80);
-			return array('x'=>$x, 'y'=>$y);
-		}
-
-		// - - - - - - - - - - - - - - - - - - - - - - - - -
-
-		// QRrawcode
-
-		/**
-		 * Initialize code.
-		 * @param array $spec array of ECC specification
-		 * @return 0 in case of success, -1 in case of error
-		 */
-		protected function init($spec) {
-			$dl = $this->rsDataCodes1($spec);
-			$el = $this->rsEccCodes1($spec);
-			$rs = $this->init_rs(8, 0x11d, 0, 1, $el, 255 - $dl - $el);
-			$blockNo = 0;
-			$dataPos = 0;
-			$eccPos = 0;
-			$endfor = $this->rsBlockNum1($spec);
-			for ($i=0; $i < $endfor; ++$i) {
-				$ecc = array_slice($this->ecccode, $eccPos);
-				$this->rsblocks[$blockNo] = array();
-				$this->rsblocks[$blockNo]['dataLength'] = $dl;
-				$this->rsblocks[$blockNo]['data'] = array_slice($this->datacode, $dataPos);
-				$this->rsblocks[$blockNo]['eccLength'] = $el;
-				$ecc = $this->encode_rs_char($rs, $this->rsblocks[$blockNo]['data'], $ecc);
-				$this->rsblocks[$blockNo]['ecc'] = $ecc;
-				$this->ecccode = array_merge(array_slice($this->ecccode,0, $eccPos), $ecc);
-				$dataPos += $dl;
-				$eccPos += $el;
-				$blockNo++;
-			}
-			if ($this->rsBlockNum2($spec) == 0) {
-				return 0;
 			}
-			$dl = $this->rsDataCodes2($spec);
-			$el = $this->rsEccCodes2($spec);
-			$rs = $this->init_rs(8, 0x11d, 0, 1, $el, 255 - $dl - $el);
-			if ($rs == NULL) {
-				return -1;
-			}
-			$endfor = $this->rsBlockNum2($spec);
-			for ($i=0; $i < $endfor; ++$i) {
-				$ecc = array_slice($this->ecccode, $eccPos);
-				$this->rsblocks[$blockNo] = array();
-				$this->rsblocks[$blockNo]['dataLength'] = $dl;
-				$this->rsblocks[$blockNo]['data'] = array_slice($this->datacode, $dataPos);
-				$this->rsblocks[$blockNo]['eccLength'] = $el;
-				$ecc = $this->encode_rs_char($rs, $this->rsblocks[$blockNo]['data'], $ecc);
-				$this->rsblocks[$blockNo]['ecc'] = $ecc;
-				$this->ecccode = array_merge(array_slice($this->ecccode, 0, $eccPos), $ecc);
-				$dataPos += $dl;
-				$eccPos += $el;
-				$blockNo++;
+			if (($x < 0) OR ($y < 0)) {
+				return NULL;
 			}
+			$this->x = $x;
+			$this->y = $y;
+		} while(ord($this->frame[$y][$x]) & 0x80);
+		return array('x'=>$x, 'y'=>$y);
+	}
+
+	// - - - - - - - - - - - - - - - - - - - - - - - - -
+
+	// QRrawcode
+
+	/**
+	 * Initialize code.
+	 * @param $spec (array) array of ECC specification
+	 * @return 0 in case of success, -1 in case of error
+	 */
+	protected function init($spec) {
+		$dl = $this->rsDataCodes1($spec);
+		$el = $this->rsEccCodes1($spec);
+		$rs = $this->init_rs(8, 0x11d, 0, 1, $el, 255 - $dl - $el);
+		$blockNo = 0;
+		$dataPos = 0;
+		$eccPos = 0;
+		$endfor = $this->rsBlockNum1($spec);
+		for ($i=0; $i < $endfor; ++$i) {
+			$ecc = array_slice($this->ecccode, $eccPos);
+			$this->rsblocks[$blockNo] = array();
+			$this->rsblocks[$blockNo]['dataLength'] = $dl;
+			$this->rsblocks[$blockNo]['data'] = array_slice($this->datacode, $dataPos);
+			$this->rsblocks[$blockNo]['eccLength'] = $el;
+			$ecc = $this->encode_rs_char($rs, $this->rsblocks[$blockNo]['data'], $ecc);
+			$this->rsblocks[$blockNo]['ecc'] = $ecc;
+			$this->ecccode = array_merge(array_slice($this->ecccode,0, $eccPos), $ecc);
+			$dataPos += $dl;
+			$eccPos += $el;
+			$blockNo++;
+		}
+		if ($this->rsBlockNum2($spec) == 0) {
 			return 0;
 		}
+		$dl = $this->rsDataCodes2($spec);
+		$el = $this->rsEccCodes2($spec);
+		$rs = $this->init_rs(8, 0x11d, 0, 1, $el, 255 - $dl - $el);
+		if ($rs == NULL) {
+			return -1;
+		}
+		$endfor = $this->rsBlockNum2($spec);
+		for ($i=0; $i < $endfor; ++$i) {
+			$ecc = array_slice($this->ecccode, $eccPos);
+			$this->rsblocks[$blockNo] = array();
+			$this->rsblocks[$blockNo]['dataLength'] = $dl;
+			$this->rsblocks[$blockNo]['data'] = array_slice($this->datacode, $dataPos);
+			$this->rsblocks[$blockNo]['eccLength'] = $el;
+			$ecc = $this->encode_rs_char($rs, $this->rsblocks[$blockNo]['data'], $ecc);
+			$this->rsblocks[$blockNo]['ecc'] = $ecc;
+			$this->ecccode = array_merge(array_slice($this->ecccode, 0, $eccPos), $ecc);
+			$dataPos += $dl;
+			$eccPos += $el;
+			$blockNo++;
+		}
+		return 0;
+	}
 
-		/**
-		 * Return Reed-Solomon block code.
-		 * @return array rsblocks
-		 */
-		protected function getCode() {
-			if ($this->count < $this->dataLength) {
-				$row = $this->count % $this->blocks;
-				$col = $this->count / $this->blocks;
-				if ($col >= $this->rsblocks[0]['dataLength']) {
-					$row += $this->b1;
-				}
-				$ret = $this->rsblocks[$row]['data'][$col];
-			} elseif ($this->count < $this->dataLength + $this->eccLength) {
-				$row = ($this->count - $this->dataLength) % $this->blocks;
-				$col = ($this->count - $this->dataLength) / $this->blocks;
-				$ret = $this->rsblocks[$row]['ecc'][$col];
-			} else {
-				return 0;
-			}
-			$this->count++;
-			return $ret;
+	/**
+	 * Return Reed-Solomon block code.
+	 * @return array rsblocks
+	 */
+	protected function getCode() {
+		if ($this->count < $this->dataLength) {
+			$row = $this->count % $this->blocks;
+			$col = $this->count / $this->blocks;
+			if ($col >= $this->rsblocks[0]['dataLength']) {
+				$row += $this->b1;
+			}
+			$ret = $this->rsblocks[$row]['data'][$col];
+		} elseif ($this->count < $this->dataLength + $this->eccLength) {
+			$row = ($this->count - $this->dataLength) % $this->blocks;
+			$col = ($this->count - $this->dataLength) / $this->blocks;
+			$ret = $this->rsblocks[$row]['ecc'][$col];
+		} else {
+			return 0;
 		}
+		$this->count++;
+		return $ret;
+	}
 
-		// - - - - - - - - - - - - - - - - - - - - - - - - -
+	// - - - - - - - - - - - - - - - - - - - - - - - - -
 
-		// QRmask
+	// QRmask
 
-		/**
-		 * Write Format Information on frame and returns the number of black bits
-		 * @param int $width frame width
-		 * @param array $frame frame
-		 * @param array $mask masking mode
-		 * @param int $level error correction level
-		 * @return int blacks
-		 */
-		 protected function writeFormatInformation($width, &$frame, $mask, $level) {
-			$blacks = 0;
-			$format =  $this->getFormatInfo($mask, $level);
-			for ($i=0; $i<8; ++$i) {
-				if ($format & 1) {
-					$blacks += 2;
-					$v = 0x85;
-				} else {
-					$v = 0x84;
-				}
-				$frame[8][$width - 1 - $i] = chr($v);
-				if ($i < 6) {
-					$frame[$i][8] = chr($v);
-				} else {
-					$frame[$i + 1][8] = chr($v);
-				}
-				$format = $format >> 1;
-			}
-			for ($i=0; $i<7; ++$i) {
+	/**
+	 * Write Format Information on frame and returns the number of black bits
+	 * @param $width (int) frame width
+	 * @param $frame (array) frame
+	 * @param $mask (array) masking mode
+	 * @param $level (int) error correction level
+	 * @return int blacks
+	 */
+	 protected function writeFormatInformation($width, &$frame, $mask, $level) {
+		$blacks = 0;
+		$format =  $this->getFormatInfo($mask, $level);
+		for ($i=0; $i<8; ++$i) {
 			if ($format & 1) {
 				$blacks += 2;
 				$v = 0x85;
 			} else {
 				$v = 0x84;
 			}
-			$frame[$width - 7 + $i][8] = chr($v);
-			if ($i == 0) {
-				$frame[8][7] = chr($v);
+			$frame[8][$width - 1 - $i] = chr($v);
+			if ($i < 6) {
+				$frame[$i][8] = chr($v);
 			} else {
-				$frame[8][6 - $i] = chr($v);
+				$frame[$i + 1][8] = chr($v);
 			}
 			$format = $format >> 1;
-			}
-			return $blacks;
-		}
-
-		/**
-		 * mask0
-		 * @param int $x X position
-		 * @param int $y Y position
-		 * @return int mask
-		 */
-		 protected function mask0($x, $y) {
-			return ($x + $y) & 1;
-		}
-
-		/**
-		 * mask1
-		 * @param int $x X position
-		 * @param int $y Y position
-		 * @return int mask
-		 */
-		 protected function mask1($x, $y) {
-			return ($y & 1);
-		}
-
-		/**
-		 * mask2
-		 * @param int $x X position
-		 * @param int $y Y position
-		 * @return int mask
-		 */
-		 protected function mask2($x, $y) {
-			return ($x % 3);
-		}
-
-		/**
-		 * mask3
-		 * @param int $x X position
-		 * @param int $y Y position
-		 * @return int mask
-		 */
-		 protected function mask3($x, $y) {
-			return ($x + $y) % 3;
-		}
-
-		/**
-		 * mask4
-		 * @param int $x X position
-		 * @param int $y Y position
-		 * @return int mask
-		 */
-		 protected function mask4($x, $y) {
-			return (((int)($y / 2)) + ((int)($x / 3))) & 1;
-		}
-
-		/**
-		 * mask5
-		 * @param int $x X position
-		 * @param int $y Y position
-		 * @return int mask
-		 */
-		 protected function mask5($x, $y) {
-			return (($x * $y) & 1) + ($x * $y) % 3;
-		}
-
-		/**
-		 * mask6
-		 * @param int $x X position
-		 * @param int $y Y position
-		 * @return int mask
-		 */
-		 protected function mask6($x, $y) {
-			return ((($x * $y) & 1) + ($x * $y) % 3) & 1;
-		}
-
-		/**
-		 * mask7
-		 * @param int $x X position
-		 * @param int $y Y position
-		 * @return int mask
-		 */
-		 protected function mask7($x, $y) {
-			return ((($x * $y) % 3) + (($x + $y) & 1)) & 1;
-		}
-
-		/**
-		 * Return bitmask
-		 * @param int $maskNo mask number
-		 * @param int $width width
-		 * @param array $frame frame
-		 * @return array bitmask
-		 */
-		protected function generateMaskNo($maskNo, $width, $frame) {
-			$bitMask = array_fill(0, $width, array_fill(0, $width, 0));
-			for ($y=0; $y<$width; ++$y) {
-				for ($x=0; $x<$width; ++$x) {
-					if (ord($frame[$y][$x]) & 0x80) {
-						$bitMask[$y][$x] = 0;
-					} else {
-						$maskFunc = call_user_func(array($this, 'mask'.$maskNo), $x, $y);
-						$bitMask[$y][$x] = ($maskFunc == 0)?1:0;
-					}
-				}
-			}
-			return $bitMask;
-		}
-
-		/**
-		 * makeMaskNo
-		 * @param int $maskNo
-		 * @param int $width
-		 * @param int $s
-		 * @param int $d
-		 * @param boolean $maskGenOnly
-		 * @return int b
-		 */
-		 protected function makeMaskNo($maskNo, $width, $s, &$d, $maskGenOnly=false) {
-			$b = 0;
-			$bitMask = array();
-			$bitMask = $this->generateMaskNo($maskNo, $width, $s, $d);
-			if ($maskGenOnly) {
-				return;
-			}
-			$d = $s;
-			for ($y=0; $y<$width; ++$y) {
-				for ($x=0; $x<$width; ++$x) {
-					if ($bitMask[$y][$x] == 1) {
-						$d[$y][$x] = chr(ord($s[$y][$x]) ^ (int)$bitMask[$y][$x]);
-					}
-					$b += (int)(ord($d[$y][$x]) & 1);
-				}
-			}
-			return $b;
-		}
-
-		/**
-		 * makeMask
-		 * @param int $width
-		 * @param array $frame
-		 * @param int $maskNo
-		 * @param int $level
-		 * @return array mask
-		 */
-		 protected function makeMask($width, $frame, $maskNo, $level) {
-			$masked = array_fill(0, $width, str_repeat("\0", $width));
-			$this->makeMaskNo($maskNo, $width, $frame, $masked);
-			$this->writeFormatInformation($width, $masked, $maskNo, $level);
-			return $masked;
-		}
-
-		/**
-		 * calcN1N3
-		 * @param int $length
-		 * @return int demerit
-		 */
-		 protected function calcN1N3($length) {
-			$demerit = 0;
-			for ($i=0; $i<$length; ++$i) {
-				if ($this->runLength[$i] >= 5) {
-					$demerit += (N1 + ($this->runLength[$i] - 5));
-				}
-				if ($i & 1) {
-					if (($i >= 3) AND ($i < ($length-2)) AND ($this->runLength[$i] % 3 == 0)) {
-						$fact = (int)($this->runLength[$i] / 3);
-						if (($this->runLength[$i-2] == $fact)
-							AND ($this->runLength[$i-1] == $fact)
-							AND ($this->runLength[$i+1] == $fact)
-							AND ($this->runLength[$i+2] == $fact)) {
-							if (($this->runLength[$i-3] < 0) OR ($this->runLength[$i-3] >= (4 * $fact))) {
-								$demerit += N3;
-							} elseif ((($i+3) >= $length) OR ($this->runLength[$i+3] >= (4 * $fact))) {
-								$demerit += N3;
-							}
-						}
-					}
-				}
-			}
-			return $demerit;
 		}
+		for ($i=0; $i<7; ++$i) {
+		if ($format & 1) {
+			$blacks += 2;
+			$v = 0x85;
+		} else {
+			$v = 0x84;
+		}
+		$frame[$width - 7 + $i][8] = chr($v);
+		if ($i == 0) {
+			$frame[8][7] = chr($v);
+		} else {
+			$frame[8][6 - $i] = chr($v);
+		}
+		$format = $format >> 1;
+		}
+		return $blacks;
+	}
 
-		/**
-		 * evaluateSymbol
-		 * @param int $width
-		 * @param array $frame
-		 * @return int demerit
-		 */
-		 protected function evaluateSymbol($width, $frame) {
-			$head = 0;
-			$demerit = 0;
-			for ($y=0; $y<$width; ++$y) {
-				$head = 0;
-				$this->runLength[0] = 1;
-				$frameY = $frame[$y];
-				if ($y > 0) {
-					$frameYM = $frame[$y-1];
-				}
-				for ($x=0; $x<$width; ++$x) {
-					if (($x > 0) AND ($y > 0)) {
-						$b22 = ord($frameY[$x]) & ord($frameY[$x-1]) & ord($frameYM[$x]) & ord($frameYM[$x-1]);
-						$w22 = ord($frameY[$x]) | ord($frameY[$x-1]) | ord($frameYM[$x]) | ord($frameYM[$x-1]);
-						if (($b22 | ($w22 ^ 1)) & 1) {
-							$demerit += N2;
-						}
-					}
-					if (($x == 0) AND (ord($frameY[$x]) & 1)) {
-						$this->runLength[0] = -1;
-						$head = 1;
-						$this->runLength[$head] = 1;
-					} elseif ($x > 0) {
-						if ((ord($frameY[$x]) ^ ord($frameY[$x-1])) & 1) {
-							$head++;
-							$this->runLength[$head] = 1;
-						} else {
-							$this->runLength[$head]++;
-						}
-					}
-				}
-				$demerit += $this->calcN1N3($head+1);
-			}
-			for ($x=0; $x<$width; ++$x) {
-				$head = 0;
-				$this->runLength[0] = 1;
-				for ($y=0; $y<$width; ++$y) {
-					if (($y == 0) AND (ord($frame[$y][$x]) & 1)) {
-						$this->runLength[0] = -1;
-						$head = 1;
-						$this->runLength[$head] = 1;
-					} elseif ($y > 0) {
-						if ((ord($frame[$y][$x]) ^ ord($frame[$y-1][$x])) & 1) {
-							$head++;
-							$this->runLength[$head] = 1;
-						} else {
-							$this->runLength[$head]++;
-						}
-					}
-				}
-				$demerit += $this->calcN1N3($head+1);
-			}
-			return $demerit;
-		}
-
-		/**
-		 * mask
-		 * @param int $width
-		 * @param array $frame
-		 * @param int $level
-		 * @return array best mask
-		 */
-		 protected function mask($width, $frame, $level) {
-			$minDemerit = PHP_INT_MAX;
-			$bestMaskNum = 0;
-			$bestMask = array();
-			$checked_masks = array(0, 1, 2, 3, 4, 5, 6, 7);
-			if (QR_FIND_FROM_RANDOM !== false) {
-				$howManuOut = 8 - (QR_FIND_FROM_RANDOM % 9);
-				for ($i = 0; $i <  $howManuOut; ++$i) {
-					$remPos = rand (0, count($checked_masks)-1);
-					unset($checked_masks[$remPos]);
-					$checked_masks = array_values($checked_masks);
-				}
-			}
-			$bestMask = $frame;
-			foreach ($checked_masks as $i) {
-				$mask = array_fill(0, $width, str_repeat("\0", $width));
-				$demerit = 0;
-				$blacks = 0;
-				$blacks  = $this->makeMaskNo($i, $width, $frame, $mask);
-				$blacks += $this->writeFormatInformation($width, $mask, $i, $level);
-				$blacks  = (int)(100 * $blacks / ($width * $width));
-				$demerit = (int)((int)(abs($blacks - 50) / 5) * N4);
-				$demerit += $this->evaluateSymbol($width, $mask);
-				if ($demerit < $minDemerit) {
-					$minDemerit = $demerit;
-					$bestMask = $mask;
-					$bestMaskNum = $i;
-				}
-			}
-			return $bestMask;
-		}
+	/**
+	 * mask0
+	 * @param $x (int) X position
+	 * @param $y (int) Y position
+	 * @return int mask
+	 */
+	 protected function mask0($x, $y) {
+		return ($x + $y) & 1;
+	}
 
-		// - - - - - - - - - - - - - - - - - - - - - - - - -
+	/**
+	 * mask1
+	 * @param $x (int) X position
+	 * @param $y (int) Y position
+	 * @return int mask
+	 */
+	 protected function mask1($x, $y) {
+		return ($y & 1);
+	}
 
-		// QRsplit
+	/**
+	 * mask2
+	 * @param $x (int) X position
+	 * @param $y (int) Y position
+	 * @return int mask
+	 */
+	 protected function mask2($x, $y) {
+		return ($x % 3);
+	}
 
-		/**
-		 * Return true if the character at specified position is a number
-		 * @param string $str string
-		 * @param int $pos characted position
-		 * @return boolean true of false
-		 */
-		 protected function isdigitat($str, $pos) {
-			if ($pos >= strlen($str)) {
-				return false;
-			}
-			return ((ord($str[$pos]) >= ord('0'))&&(ord($str[$pos]) <= ord('9')));
-		}
+	/**
+	 * mask3
+	 * @param $x (int) X position
+	 * @param $y (int) Y position
+	 * @return int mask
+	 */
+	 protected function mask3($x, $y) {
+		return ($x + $y) % 3;
+	}
 
-		/**
-		 * Return true if the character at specified position is an alphanumeric character
-		 * @param string $str string
-		 * @param int $pos characted position
-		 * @return boolean true of false
-		 */
-		 protected function isalnumat($str, $pos) {
-			if ($pos >= strlen($str)) {
-				return false;
-			}
-			return ($this->lookAnTable(ord($str[$pos])) >= 0);
-		}
-
-		/**
-		 * identifyMode
-		 * @param int $pos
-		 * @return int mode
-		 */
-		 protected function identifyMode($pos) {
-			if ($pos >= strlen($this->dataStr)) {
-				return QR_MODE_NL;
-			}
-			$c = $this->dataStr[$pos];
-			if ($this->isdigitat($this->dataStr, $pos)) {
-				return QR_MODE_NM;
-			} elseif ($this->isalnumat($this->dataStr, $pos)) {
-				return QR_MODE_AN;
-			} elseif ($this->hint == QR_MODE_KJ) {
-				if ($pos+1 < strlen($this->dataStr)) {
-					$d = $this->dataStr[$pos+1];
-					$word = (ord($c) << 8) | ord($d);
-					if (($word >= 0x8140 && $word <= 0x9ffc) OR ($word >= 0xe040 && $word <= 0xebbf)) {
-						return QR_MODE_KJ;
-					}
+	/**
+	 * mask4
+	 * @param $x (int) X position
+	 * @param $y (int) Y position
+	 * @return int mask
+	 */
+	 protected function mask4($x, $y) {
+		return (((int)($y / 2)) + ((int)($x / 3))) & 1;
+	}
+
+	/**
+	 * mask5
+	 * @param $x (int) X position
+	 * @param $y (int) Y position
+	 * @return int mask
+	 */
+	 protected function mask5($x, $y) {
+		return (($x * $y) & 1) + ($x * $y) % 3;
+	}
+
+	/**
+	 * mask6
+	 * @param $x (int) X position
+	 * @param $y (int) Y position
+	 * @return int mask
+	 */
+	 protected function mask6($x, $y) {
+		return ((($x * $y) & 1) + ($x * $y) % 3) & 1;
+	}
+
+	/**
+	 * mask7
+	 * @param $x (int) X position
+	 * @param $y (int) Y position
+	 * @return int mask
+	 */
+	 protected function mask7($x, $y) {
+		return ((($x * $y) % 3) + (($x + $y) & 1)) & 1;
+	}
+
+	/**
+	 * Return bitmask
+	 * @param $maskNo (int) mask number
+	 * @param $width (int) width
+	 * @param $frame (array) frame
+	 * @return array bitmask
+	 */
+	protected function generateMaskNo($maskNo, $width, $frame) {
+		$bitMask = array_fill(0, $width, array_fill(0, $width, 0));
+		for ($y=0; $y<$width; ++$y) {
+			for ($x=0; $x<$width; ++$x) {
+				if (ord($frame[$y][$x]) & 0x80) {
+					$bitMask[$y][$x] = 0;
+				} else {
+					$maskFunc = call_user_func(array($this, 'mask'.$maskNo), $x, $y);
+					$bitMask[$y][$x] = ($maskFunc == 0)?1:0;
 				}
 			}
-			return QR_MODE_8B;
 		}
+		return $bitMask;
+	}
 
-		/**
-		 * eatNum
-		 * @return int run
-		 */
-		 protected function eatNum() {
-			$ln = $this->lengthIndicator(QR_MODE_NM, $this->version);
-			$p = 0;
-			while($this->isdigitat($this->dataStr, $p)) {
-				$p++;
-			}
-			$run = $p;
-			$mode = $this->identifyMode($p);
-			if ($mode == QR_MODE_8B) {
-				$dif = $this->estimateBitsModeNum($run) + 4 + $ln
-				+ $this->estimateBitsMode8(1)         // + 4 + l8
-				- $this->estimateBitsMode8($run + 1); // - 4 - l8
-				if ($dif > 0) {
-					return $this->eat8();
-				}
-			}
-			if ($mode == QR_MODE_AN) {
-				$dif = $this->estimateBitsModeNum($run) + 4 + $ln
-				+ $this->estimateBitsModeAn(1)        // + 4 + la
-				- $this->estimateBitsModeAn($run + 1);// - 4 - la
-				if ($dif > 0) {
-					return $this->eatAn();
+	/**
+	 * makeMaskNo
+	 * @param $maskNo (int)
+	 * @param $width (int)
+	 * @param $s (int)
+	 * @param $d (int)
+	 * @param $maskGenOnly (boolean)
+	 * @return int b
+	 */
+	 protected function makeMaskNo($maskNo, $width, $s, &$d, $maskGenOnly=false) {
+		$b = 0;
+		$bitMask = array();
+		$bitMask = $this->generateMaskNo($maskNo, $width, $s, $d);
+		if ($maskGenOnly) {
+			return;
+		}
+		$d = $s;
+		for ($y=0; $y<$width; ++$y) {
+			for ($x=0; $x<$width; ++$x) {
+				if ($bitMask[$y][$x] == 1) {
+					$d[$y][$x] = chr(ord($s[$y][$x]) ^ ((int)($bitMask[$y][$x])));
 				}
+				$b += (int)(ord($d[$y][$x]) & 1);
 			}
-			$this->items = $this->appendNewInputItem($this->items, QR_MODE_NM, $run, str_split($this->dataStr));
-			return $run;
-		}
-
-		/**
-		 * eatAn
-		 * @return int run
-		 */
-		 protected function eatAn() {
-			$la = $this->lengthIndicator(QR_MODE_AN,  $this->version);
-			$ln = $this->lengthIndicator(QR_MODE_NM, $this->version);
-			$p = 0;
-			while($this->isalnumat($this->dataStr, $p)) {
-				if ($this->isdigitat($this->dataStr, $p)) {
-					$q = $p;
-					while($this->isdigitat($this->dataStr, $q)) {
-						$q++;
-					}
-					$dif = $this->estimateBitsModeAn($p) // + 4 + la
-					+ $this->estimateBitsModeNum($q - $p) + 4 + $ln
-					- $this->estimateBitsModeAn($q); // - 4 - la
-					if ($dif < 0) {
-						break;
-					} else {
-						$p = $q;
+		}
+		return $b;
+	}
+
+	/**
+	 * makeMask
+	 * @param $width (int)
+	 * @param $frame (array)
+	 * @param $maskNo (int)
+	 * @param $level (int)
+	 * @return array mask
+	 */
+	 protected function makeMask($width, $frame, $maskNo, $level) {
+		$masked = array_fill(0, $width, str_repeat("\0", $width));
+		$this->makeMaskNo($maskNo, $width, $frame, $masked);
+		$this->writeFormatInformation($width, $masked, $maskNo, $level);
+		return $masked;
+	}
+
+	/**
+	 * calcN1N3
+	 * @param $length (int)
+	 * @return int demerit
+	 */
+	 protected function calcN1N3($length) {
+		$demerit = 0;
+		for ($i=0; $i<$length; ++$i) {
+			if ($this->runLength[$i] >= 5) {
+				$demerit += (N1 + ($this->runLength[$i] - 5));
+			}
+			if ($i & 1) {
+				if (($i >= 3) AND ($i < ($length-2)) AND ($this->runLength[$i] % 3 == 0)) {
+					$fact = (int)($this->runLength[$i] / 3);
+					if (($this->runLength[$i-2] == $fact)
+						AND ($this->runLength[$i-1] == $fact)
+						AND ($this->runLength[$i+1] == $fact)
+						AND ($this->runLength[$i+2] == $fact)) {
+						if (($this->runLength[$i-3] < 0) OR ($this->runLength[$i-3] >= (4 * $fact))) {
+							$demerit += N3;
+						} elseif ((($i+3) >= $length) OR ($this->runLength[$i+3] >= (4 * $fact))) {
+							$demerit += N3;
+						}
 					}
-				} else {
-					$p++;
-				}
-			}
-			$run = $p;
-			if (!$this->isalnumat($this->dataStr, $p)) {
-				$dif = $this->estimateBitsModeAn($run) + 4 + $la
-				+ $this->estimateBitsMode8(1) // + 4 + l8
-				- $this->estimateBitsMode8($run + 1); // - 4 - l8
-				if ($dif > 0) {
-					return $this->eat8();
 				}
 			}
-			$this->items = $this->appendNewInputItem($this->items, QR_MODE_AN, $run, str_split($this->dataStr));
-			return $run;
 		}
+		return $demerit;
+	}
 
-		/**
-		 * eatKanji
-		 * @return int run
-		 */
-		 protected function eatKanji() {
-			$p = 0;
-			while($this->identifyMode($p) == QR_MODE_KJ) {
-				$p += 2;
+	/**
+	 * evaluateSymbol
+	 * @param $width (int)
+	 * @param $frame (array)
+	 * @return int demerit
+	 */
+	 protected function evaluateSymbol($width, $frame) {
+		$head = 0;
+		$demerit = 0;
+		for ($y=0; $y<$width; ++$y) {
+			$head = 0;
+			$this->runLength[0] = 1;
+			$frameY = $frame[$y];
+			if ($y > 0) {
+				$frameYM = $frame[$y-1];
 			}
-			$this->items = $this->appendNewInputItem($this->items, QR_MODE_KJ, $p, str_split($this->dataStr));
-			return $run;
-		}
-
-		/**
-		 * eat8
-		 * @return int run
-		 */
-		 protected function eat8() {
-			$la = $this->lengthIndicator(QR_MODE_AN, $this->version);
-			$ln = $this->lengthIndicator(QR_MODE_NM, $this->version);
-			$p = 1;
-			$dataStrLen = strlen($this->dataStr);
-			while($p < $dataStrLen) {
-				$mode = $this->identifyMode($p);
-				if ($mode == QR_MODE_KJ) {
-					break;
-				}
-				if ($mode == QR_MODE_NM) {
-					$q = $p;
-					while($this->isdigitat($this->dataStr, $q)) {
-						$q++;
-					}
-					$dif = $this->estimateBitsMode8($p) // + 4 + l8
-					+ $this->estimateBitsModeNum($q - $p) + 4 + $ln
-					- $this->estimateBitsMode8($q); // - 4 - l8
-					if ($dif < 0) {
-						break;
-					} else {
-						$p = $q;
-					}
-				} elseif ($mode == QR_MODE_AN) {
-					$q = $p;
-					while($this->isalnumat($this->dataStr, $q)) {
-						$q++;
+			for ($x=0; $x<$width; ++$x) {
+				if (($x > 0) AND ($y > 0)) {
+					$b22 = ord($frameY[$x]) & ord($frameY[$x-1]) & ord($frameYM[$x]) & ord($frameYM[$x-1]);
+					$w22 = ord($frameY[$x]) | ord($frameY[$x-1]) | ord($frameYM[$x]) | ord($frameYM[$x-1]);
+					if (($b22 | ($w22 ^ 1)) & 1) {
+						$demerit += N2;
 					}
-					$dif = $this->estimateBitsMode8($p)  // + 4 + l8
-					+ $this->estimateBitsModeAn($q - $p) + 4 + $la
-					- $this->estimateBitsMode8($q); // - 4 - l8
-					if ($dif < 0) {
-						break;
+				}
+				if (($x == 0) AND (ord($frameY[$x]) & 1)) {
+					$this->runLength[0] = -1;
+					$head = 1;
+					$this->runLength[$head] = 1;
+				} elseif ($x > 0) {
+					if ((ord($frameY[$x]) ^ ord($frameY[$x-1])) & 1) {
+						$head++;
+						$this->runLength[$head] = 1;
 					} else {
-						$p = $q;
+						$this->runLength[$head]++;
 					}
-				} else {
-					$p++;
 				}
 			}
-			$run = $p;
-			$this->items = $this->appendNewInputItem($this->items, QR_MODE_8B, $run, str_split($this->dataStr));
-			return $run;
+			$demerit += $this->calcN1N3($head+1);
 		}
-
-		/**
-		 * splitString
-		 */
-		 protected function splitString() {
-			while (strlen($this->dataStr) > 0) {
-				if ($this->dataStr == '') {
-					return 0;
-				}
-				$mode = $this->identifyMode(0);
-				switch ($mode) {
-					case QR_MODE_NM: {
-						$length = $this->eatNum();
-						break;
-					}
-					case QR_MODE_AN: {
-						$length = $this->eatAn();
-						break;
-					}
-					case QR_MODE_KJ: {
-						if ($hint == QR_MODE_KJ) {
-							$length = $this->eatKanji();
-						} else {
-							$length = $this->eat8();
-						}
-						break;
-					}
-					default: {
-						$length = $this->eat8();
-						break;
+		for ($x=0; $x<$width; ++$x) {
+			$head = 0;
+			$this->runLength[0] = 1;
+			for ($y=0; $y<$width; ++$y) {
+				if (($y == 0) AND (ord($frame[$y][$x]) & 1)) {
+					$this->runLength[0] = -1;
+					$head = 1;
+					$this->runLength[$head] = 1;
+				} elseif ($y > 0) {
+					if ((ord($frame[$y][$x]) ^ ord($frame[$y-1][$x])) & 1) {
+						$head++;
+						$this->runLength[$head] = 1;
+					} else {
+						$this->runLength[$head]++;
 					}
 				}
-				if ($length == 0) {
-					return 0;
-				}
-				if ($length < 0) {
-					return -1;
-				}
-				$this->dataStr = substr($this->dataStr, $length);
 			}
+			$demerit += $this->calcN1N3($head+1);
 		}
+		return $demerit;
+	}
 
-		/**
-		 * toUpper
-		 */
-		 protected function toUpper() {
-			$stringLen = strlen($this->dataStr);
-			$p = 0;
-			while ($p < $stringLen) {
-				$mode = $this->identifyMode(substr($this->dataStr, $p), $this->hint);
-				if ($mode == QR_MODE_KJ) {
-					$p += 2;
-				} else {
-					if ((ord($this->dataStr[$p]) >= ord('a')) AND (ord($this->dataStr[$p]) <= ord('z'))) {
-						$this->dataStr[$p] = chr(ord($this->dataStr[$p]) - 32);
-					}
-					$p++;
-				}
-			}
-			return $this->dataStr;
-		}
+	/**
+	 * mask
+	 * @param $width (int)
+	 * @param $frame (array)
+	 * @param $level (int)
+	 * @return array best mask
+	 */
+	 protected function mask($width, $frame, $level) {
+		$minDemerit = PHP_INT_MAX;
+		$bestMaskNum = 0;
+		$bestMask = array();
+		$checked_masks = array(0, 1, 2, 3, 4, 5, 6, 7);
+		if (QR_FIND_FROM_RANDOM !== false) {
+			$howManuOut = 8 - (QR_FIND_FROM_RANDOM % 9);
+			for ($i = 0; $i <  $howManuOut; ++$i) {
+				$remPos = rand (0, count($checked_masks)-1);
+				unset($checked_masks[$remPos]);
+				$checked_masks = array_values($checked_masks);
+			}
+		}
+		$bestMask = $frame;
+		foreach ($checked_masks as $i) {
+			$mask = array_fill(0, $width, str_repeat("\0", $width));
+			$demerit = 0;
+			$blacks = 0;
+			$blacks  = $this->makeMaskNo($i, $width, $frame, $mask);
+			$blacks += $this->writeFormatInformation($width, $mask, $i, $level);
+			$blacks  = (int)(100 * $blacks / ($width * $width));
+			$demerit = (int)((int)(abs($blacks - 50) / 5) * N4);
+			$demerit += $this->evaluateSymbol($width, $mask);
+			if ($demerit < $minDemerit) {
+				$minDemerit = $demerit;
+				$bestMask = $mask;
+				$bestMaskNum = $i;
+			}
+		}
+		return $bestMask;
+	}
 
-		// - - - - - - - - - - - - - - - - - - - - - - - - -
+	// - - - - - - - - - - - - - - - - - - - - - - - - -
 
-		// QRinputItem
+	// QRsplit
 
-		/**
-		 * newInputItem
-		 * @param int $mode
-		 * @param int $size
-		 * @param array $data
-		 * @param array $bstream
-		 * @return array input item
-		 */
-		 protected function newInputItem($mode, $size, $data, $bstream=null) {
-			$setData = array_slice($data, 0, $size);
-			if (count($setData) < $size) {
-				$setData = array_merge($setData, array_fill(0, ($size - count($setData)), 0));
-			}
-			if (!$this->check($mode, $size, $setData)) {
-				return NULL;
-			}
-			$inputitem = array();
-			$inputitem['mode'] = $mode;
-			$inputitem['size'] = $size;
-			$inputitem['data'] = $setData;
-			$inputitem['bstream'] = $bstream;
-			return $inputitem;
-		}
-
-		/**
-		 * encodeModeNum
-		 * @param array $inputitem
-		 * @param int $version
-		 * @return array input item
-		 */
-		 protected function encodeModeNum($inputitem, $version) {
-			$words = (int)($inputitem['size'] / 3);
-			$inputitem['bstream'] = array();
-			$val = 0x1;
-			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, $val);
-			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_NM, $version), $inputitem['size']);
-			for ($i=0; $i < $words; ++$i) {
-				$val  = (ord($inputitem['data'][$i*3  ]) - ord('0')) * 100;
-				$val += (ord($inputitem['data'][$i*3+1]) - ord('0')) * 10;
-				$val += (ord($inputitem['data'][$i*3+2]) - ord('0'));
-				$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 10, $val);
-			}
-			if ($inputitem['size'] - $words * 3 == 1) {
-				$val = ord($inputitem['data'][$words*3]) - ord('0');
-				$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, $val);
-			} elseif (($inputitem['size'] - ($words * 3)) == 2) {
-				$val  = (ord($inputitem['data'][$words*3  ]) - ord('0')) * 10;
-				$val += (ord($inputitem['data'][$words*3+1]) - ord('0'));
-				$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 7, $val);
-			}
-			return $inputitem;
-		}
-
-		/**
-		 * encodeModeAn
-		 * @param array $inputitem
-		 * @param int $version
-		 * @return array input item
-		 */
-		 protected function encodeModeAn($inputitem, $version) {
-			$words = (int)($inputitem['size'] / 2);
-			$inputitem['bstream'] = array();
-			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x02);
-			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_AN, $version), $inputitem['size']);
-			for ($i=0; $i < $words; ++$i) {
-				$val  = (int)$this->lookAnTable(ord($inputitem['data'][$i*2  ])) * 45;
-				$val += (int)$this->lookAnTable(ord($inputitem['data'][$i*2+1]));
-				$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 11, $val);
-			}
-			if ($inputitem['size'] & 1) {
-				$val = $this->lookAnTable(ord($inputitem['data'][($words * 2)]));
-				$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 6, $val);
-			}
-			return $inputitem;
-		}
-
-		/**
-		 * encodeMode8
-		 * @param array $inputitem
-		 * @param int $version
-		 * @return array input item
-		 */
-		 protected function encodeMode8($inputitem, $version) {
-			$inputitem['bstream'] = array();
-			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x4);
-			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_8B, $version), $inputitem['size']);
-			for ($i=0; $i < $inputitem['size']; ++$i) {
-				$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 8, ord($inputitem['data'][$i]));
-			}
-			return $inputitem;
+	/**
+	 * Return true if the character at specified position is a number
+	 * @param $str (string) string
+	 * @param $pos (int) characted position
+	 * @return boolean true of false
+	 */
+	 protected function isdigitat($str, $pos) {
+		if ($pos >= strlen($str)) {
+			return false;
 		}
+		return ((ord($str[$pos]) >= ord('0'))&&(ord($str[$pos]) <= ord('9')));
+	}
 
-		/**
-		 * encodeModeKanji
-		 * @param array $inputitem
-		 * @param int $version
-		 * @return array input item
-		 */
-		 protected function encodeModeKanji($inputitem, $version) {
-			$inputitem['bstream'] = array();
-			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x8);
-			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_KJ, $version), (int)($inputitem['size'] / 2));
-			for ($i=0; $i<$inputitem['size']; $i+=2) {
-				$val = (ord($inputitem['data'][$i]) << 8) | ord($inputitem['data'][$i+1]);
-				if ($val <= 0x9ffc) {
-					$val -= 0x8140;
-				} else {
-					$val -= 0xc140;
-				}
-				$h = ($val >> 8) * 0xc0;
-				$val = ($val & 0xff) + $h;
-				$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 13, $val);
-			}
-			return $inputitem;
+	/**
+	 * Return true if the character at specified position is an alphanumeric character
+	 * @param $str (string) string
+	 * @param $pos (int) characted position
+	 * @return boolean true of false
+	 */
+	 protected function isalnumat($str, $pos) {
+		if ($pos >= strlen($str)) {
+			return false;
 		}
+		return ($this->lookAnTable(ord($str[$pos])) >= 0);
+	}
 
-		/**
-		 * encodeModeStructure
-		 * @param array $inputitem
-		 * @return array input item
-		 */
-		 protected function encodeModeStructure($inputitem) {
-			$inputitem['bstream'] = array();
-			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x03);
-			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, ord($inputitem['data'][1]) - 1);
-			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, ord($inputitem['data'][0]) - 1);
-			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 8, ord($inputitem['data'][2]));
-			return $inputitem;
-		}
-
-		/**
-		 * encodeBitStream
-		 * @param array $inputitem
-		 * @param int $version
-		 * @return array input item
-		 */
-		 protected function encodeBitStream($inputitem, $version) {
-			$inputitem['bstream'] = array();
-			$words = $this->maximumWords($inputitem['mode'], $version);
-			if ($inputitem['size'] > $words) {
-				$st1 = $this->newInputItem($inputitem['mode'], $words, $inputitem['data']);
-				$st2 = $this->newInputItem($inputitem['mode'], $inputitem['size'] - $words, array_slice($inputitem['data'], $words));
-				$st1 = $this->encodeBitStream($st1, $version);
-				$st2 = $this->encodeBitStream($st2, $version);
-				$inputitem['bstream'] = array();
-				$inputitem['bstream'] = $this->appendBitstream($inputitem['bstream'], $st1['bstream']);
-				$inputitem['bstream'] = $this->appendBitstream($inputitem['bstream'], $st2['bstream']);
-			} else {
-				switch($inputitem['mode']) {
-					case QR_MODE_NM: {
-						$inputitem = $this->encodeModeNum($inputitem, $version);
-						break;
-					}
-					case QR_MODE_AN: {
-						$inputitem = $this->encodeModeAn($inputitem, $version);
-						break;
-					}
-					case QR_MODE_8B: {
-						$inputitem = $this->encodeMode8($inputitem, $version);
-						break;
-					}
-					case QR_MODE_KJ: {
-						$inputitem = $this->encodeModeKanji($inputitem, $version);
-						break;
-					}
-					case QR_MODE_ST: {
-						$inputitem = $this->encodeModeStructure($inputitem);
-						break;
-					}
-					default: {
-						break;
-					}
-				}
-			}
-			return $inputitem;
-		}
-
-		// - - - - - - - - - - - - - - - - - - - - - - - - -
-
-		// QRinput
-
-		/**
-		 * Append data to an input object.
-		 * The data is copied and appended to the input object.
-		 * @param array items input items
-		 * @param int $mode encoding mode.
-		 * @param int $size size of data (byte).
-		 * @param array $data array of input data.
-		 * @return items
-		 *
-		 */
-		protected function appendNewInputItem($items, $mode, $size, $data) {
-			$items[] = $this->newInputItem($mode, $size, $data);
-			return $items;
-		}
-
-		/**
-		 * insertStructuredAppendHeader
-		 * @param array $items
-		 * @param int $size
-		 * @param int $index
-		 * @param int $parity
-		 * @return array items
-		 */
-		 protected function insertStructuredAppendHeader($items, $size, $index, $parity) {
-			if ($size > MAX_STRUCTURED_SYMBOLS) {
-				return -1;
-			}
-			if (($index <= 0) OR ($index > MAX_STRUCTURED_SYMBOLS)) {
-				return -1;
-			}
-			$buf = array($size, $index, $parity);
-			$entry = $this->newInputItem(QR_MODE_ST, 3, buf);
-			array_unshift($items, $entry);
-			return $items;
-		}
-
-		/**
-		 * calcParity
-		 * @param array $items
-		 * @return int parity
-		 */
-		 protected function calcParity($items) {
-			$parity = 0;
-			foreach ($items as $item) {
-				if ($item['mode'] != QR_MODE_ST) {
-					for ($i=$item['size']-1; $i>=0; --$i) {
-						$parity ^= $item['data'][$i];
-					}
-				}
-			}
-			return $parity;
+	/**
+	 * identifyMode
+	 * @param $pos (int)
+	 * @return int mode
+	 */
+	 protected function identifyMode($pos) {
+		if ($pos >= strlen($this->dataStr)) {
+			return QR_MODE_NL;
 		}
-
-		/**
-		 * checkModeNum
-		 * @param int $size
-		 * @param array $data
-		 * @return boolean true or false
-		 */
-		 protected function checkModeNum($size, $data) {
-			for ($i=0; $i<$size; ++$i) {
-				if ((ord($data[$i]) < ord('0')) OR (ord($data[$i]) > ord('9'))){
-					return false;
+		$c = $this->dataStr[$pos];
+		if ($this->isdigitat($this->dataStr, $pos)) {
+			return QR_MODE_NM;
+		} elseif ($this->isalnumat($this->dataStr, $pos)) {
+			return QR_MODE_AN;
+		} elseif ($this->hint == QR_MODE_KJ) {
+			if ($pos+1 < strlen($this->dataStr)) {
+				$d = $this->dataStr[$pos+1];
+				$word = (ord($c) << 8) | ord($d);
+				if (($word >= 0x8140 && $word <= 0x9ffc) OR ($word >= 0xe040 && $word <= 0xebbf)) {
+					return QR_MODE_KJ;
 				}
 			}
-			return true;
 		}
+		return QR_MODE_8B;
+	}
 
-		/**
-		 * estimateBitsModeNum
-		 * @param int $size
-		 * @return int number of bits
-		 */
-		 protected function estimateBitsModeNum($size) {
-			$w = (int)$size / 3;
-			$bits = $w * 10;
-			switch($size - $w * 3) {
-				case 1: {
-					$bits += 4;
-					break;
-				}
-				case 2: {
-					$bits += 7;
-					break;
-				}
-				default: {
+	/**
+	 * eatNum
+	 * @return int run
+	 */
+	 protected function eatNum() {
+		$ln = $this->lengthIndicator(QR_MODE_NM, $this->version);
+		$p = 0;
+		while($this->isdigitat($this->dataStr, $p)) {
+			$p++;
+		}
+		$run = $p;
+		$mode = $this->identifyMode($p);
+		if ($mode == QR_MODE_8B) {
+			$dif = $this->estimateBitsModeNum($run) + 4 + $ln
+			+ $this->estimateBitsMode8(1)         // + 4 + l8
+			- $this->estimateBitsMode8($run + 1); // - 4 - l8
+			if ($dif > 0) {
+				return $this->eat8();
+			}
+		}
+		if ($mode == QR_MODE_AN) {
+			$dif = $this->estimateBitsModeNum($run) + 4 + $ln
+			+ $this->estimateBitsModeAn(1)        // + 4 + la
+			- $this->estimateBitsModeAn($run + 1);// - 4 - la
+			if ($dif > 0) {
+				return $this->eatAn();
+			}
+		}
+		$this->items = $this->appendNewInputItem($this->items, QR_MODE_NM, $run, str_split($this->dataStr));
+		return $run;
+	}
+
+	/**
+	 * eatAn
+	 * @return int run
+	 */
+	 protected function eatAn() {
+		$la = $this->lengthIndicator(QR_MODE_AN,  $this->version);
+		$ln = $this->lengthIndicator(QR_MODE_NM, $this->version);
+		$p =1 ;
+		while($this->isalnumat($this->dataStr, $p)) {
+			if ($this->isdigitat($this->dataStr, $p)) {
+				$q = $p;
+				while($this->isdigitat($this->dataStr, $q)) {
+					$q++;
+				}
+				$dif = $this->estimateBitsModeAn($p) // + 4 + la
+				+ $this->estimateBitsModeNum($q - $p) + 4 + $ln
+				- $this->estimateBitsModeAn($q); // - 4 - la
+				if ($dif < 0) {
 					break;
+				} else {
+					$p = $q;
 				}
+			} else {
+				$p++;
 			}
-			return $bits;
 		}
-
-		/**
-		 * Look up the alphabet-numeric convesion table (see JIS X0510:2004, pp.19).
-		 * @param int $c character value
-		 * @return value
-		 */
-		protected function lookAnTable($c) {
-			return (($c > 127)?-1:$this->anTable[$c]);
+		$run = $p;
+		if (!$this->isalnumat($this->dataStr, $p)) {
+			$dif = $this->estimateBitsModeAn($run) + 4 + $la
+			+ $this->estimateBitsMode8(1) // + 4 + l8
+			- $this->estimateBitsMode8($run + 1); // - 4 - l8
+			if ($dif > 0) {
+				return $this->eat8();
+			}
 		}
+		$this->items = $this->appendNewInputItem($this->items, QR_MODE_AN, $run, str_split($this->dataStr));
+		return $run;
+	}
 
-		/**
-		 * checkModeAn
-		 * @param int $size
-		 * @param array $data
-		 * @return boolean true or false
-		 */
-		 protected function checkModeAn($size, $data) {
-			for ($i=0; $i<$size; ++$i) {
-				if ($this->lookAnTable(ord($data[$i])) == -1) {
-					return false;
-				}
-			}
-			return true;
-		}
-
-		/**
-		 * estimateBitsModeAn
-		 * @param int $size
-		 * @return int number of bits
-		 */
-		 protected function estimateBitsModeAn($size) {
-			$w = (int)($size / 2);
-			$bits = $w * 11;
-			if ($size & 1) {
-				$bits += 6;
-			}
-			return $bits;
-		}
-
-		/**
-		 * estimateBitsMode8
-		 * @param int $size
-		 * @return int number of bits
-		 */
-		 protected function estimateBitsMode8($size) {
-			return $size * 8;
-		}
-
-		/**
-		 * estimateBitsModeKanji
-		 * @param int $size
-		 * @return int number of bits
-		 */
-		 protected function estimateBitsModeKanji($size) {
-			return (int)(($size / 2) * 13);
-		}
-
-		/**
-		 * checkModeKanji
-		 * @param int $size
-		 * @param array $data
-		 * @return boolean true or false
-		 */
-		 protected function checkModeKanji($size, $data) {
-			if ($size & 1) {
-				return false;
-			}
-			for ($i=0; $i<$size; $i+=2) {
-				$val = (ord($data[$i]) << 8) | ord($data[$i+1]);
-				if (($val < 0x8140) OR (($val > 0x9ffc) AND ($val < 0xe040)) OR ($val > 0xebbf)) {
-					return false;
-				}
-			}
-			return true;
+	/**
+	 * eatKanji
+	 * @return int run
+	 */
+	 protected function eatKanji() {
+		$p = 0;
+		while($this->identifyMode($p) == QR_MODE_KJ) {
+			$p += 2;
 		}
+		$this->items = $this->appendNewInputItem($this->items, QR_MODE_KJ, $p, str_split($this->dataStr));
+		return $run;
+	}
 
-		/**
-		 * Validate the input data.
-		 * @param int $mode encoding mode.
-		 * @param int $size size of data (byte).
-		 * @param array data data to validate
-		 * @return boolean true in case of valid data, false otherwise
-		 */
-		protected function check($mode, $size, $data) {
-			if ($size <= 0) {
-				return false;
+	/**
+	 * eat8
+	 * @return int run
+	 */
+	 protected function eat8() {
+		$la = $this->lengthIndicator(QR_MODE_AN, $this->version);
+		$ln = $this->lengthIndicator(QR_MODE_NM, $this->version);
+		$p = 1;
+		$dataStrLen = strlen($this->dataStr);
+		while($p < $dataStrLen) {
+			$mode = $this->identifyMode($p);
+			if ($mode == QR_MODE_KJ) {
+				break;
 			}
-			switch($mode) {
-				case QR_MODE_NM: {
-					return $this->checkModeNum($size, $data);
-				}
-				case QR_MODE_AN: {
-					return $this->checkModeAn($size, $data);
-				}
-				case QR_MODE_KJ: {
-					return $this->checkModeKanji($size, $data);
+			if ($mode == QR_MODE_NM) {
+				$q = $p;
+				while($this->isdigitat($this->dataStr, $q)) {
+					$q++;
 				}
-				case QR_MODE_8B: {
-					return true;
+				$dif = $this->estimateBitsMode8($p) // + 4 + l8
+				+ $this->estimateBitsModeNum($q - $p) + 4 + $ln
+				- $this->estimateBitsMode8($q); // - 4 - l8
+				if ($dif < 0) {
+					break;
+				} else {
+					$p = $q;
 				}
-				case QR_MODE_ST: {
-					return true;
+			} elseif ($mode == QR_MODE_AN) {
+				$q = $p;
+				while($this->isalnumat($this->dataStr, $q)) {
+					$q++;
 				}
-				default: {
+				$dif = $this->estimateBitsMode8($p)  // + 4 + l8
+				+ $this->estimateBitsModeAn($q - $p) + 4 + $la
+				- $this->estimateBitsMode8($q); // - 4 - l8
+				if ($dif < 0) {
 					break;
+				} else {
+					$p = $q;
 				}
+			} else {
+				$p++;
 			}
-			return false;
 		}
+		$run = $p;
+		$this->items = $this->appendNewInputItem($this->items, QR_MODE_8B, $run, str_split($this->dataStr));
+		return $run;
+	}
 
-		/**
-		 * estimateBitStreamSize
-		 * @param array $items
-		 * @param int $version
-		 * @return int bits
-		 */
-		 protected function estimateBitStreamSize($items, $version) {
-			$bits = 0;
-			if ($version == 0) {
-				$version = 1;
-			}
-			foreach ($items as $item) {
-				switch($item['mode']) {
-					case QR_MODE_NM: {
-						$bits = $this->estimateBitsModeNum($item['size']);
-						break;
-					}
-					case QR_MODE_AN: {
-						$bits = $this->estimateBitsModeAn($item['size']);
-						break;
-					}
-					case QR_MODE_8B: {
-						$bits = $this->estimateBitsMode8($item['size']);
-						break;
-					}
-					case QR_MODE_KJ: {
-						$bits = $this->estimateBitsModeKanji($item['size']);
-						break;
-					}
-					case QR_MODE_ST: {
-						return STRUCTURE_HEADER_BITS;
-					}
-					default: {
-						return 0;
-					}
-				}
-				$l = $this->lengthIndicator($item['mode'], $version);
-				$m = 1 << $l;
-				$num = (int)(($item['size'] + $m - 1) / $m);
-				$bits += $num * (4 + $l);
-			}
-			return $bits;
-		}
-
-		/**
-		 * estimateVersion
-		 * @param array $items
-		 * @return int version
-		 */
-		 protected function estimateVersion($items) {
-			$version = 0;
-			$prev = 0;
-			do {
-				$prev = $version;
-				$bits = $this->estimateBitStreamSize($items, $prev);
-				$version = $this->getMinimumVersion((int)(($bits + 7) / 8), $this->level);
-				if ($version < 0) {
-					return -1;
-				}
-			} while ($version > $prev);
-			return $version;
-		}
-
-		/**
-		 * lengthOfCode
-		 * @param int $mode
-		 * @param int $version
-		 * @param int $bits
-		 * @return int size
-		 */
-		 protected function lengthOfCode($mode, $version, $bits) {
-			$payload = $bits - 4 - $this->lengthIndicator($mode, $version);
-			switch($mode) {
+	/**
+	 * splitString
+	 */
+	 protected function splitString() {
+		while (strlen($this->dataStr) > 0) {
+			if ($this->dataStr == '') {
+				return 0;
+			}
+			$mode = $this->identifyMode(0);
+			switch ($mode) {
 				case QR_MODE_NM: {
-					$chunks = (int)($payload / 10);
-					$remain = $payload - $chunks * 10;
-					$size = $chunks * 3;
-					if ($remain >= 7) {
-						$size += 2;
-					} elseif ($remain >= 4) {
-						$size += 1;
-					}
+					$length = $this->eatNum();
 					break;
 				}
 				case QR_MODE_AN: {
-					$chunks = (int)($payload / 11);
-					$remain = $payload - $chunks * 11;
-					$size = $chunks * 2;
-					if ($remain >= 6) {
-						++$size;
-					}
-					break;
-				}
-				case QR_MODE_8B: {
-					$size = (int)($payload / 8);
+					$length = $this->eatAn();
 					break;
 				}
 				case QR_MODE_KJ: {
-					$size = (int)(($payload / 13) * 2);
-					break;
-				}
-				case QR_MODE_ST: {
-					$size = (int)($payload / 8);
+					if ($hint == QR_MODE_KJ) {
+						$length = $this->eatKanji();
+					} else {
+						$length = $this->eat8();
+					}
 					break;
 				}
 				default: {
-					$size = 0;
+					$length = $this->eat8();
 					break;
 				}
 			}
-			$maxsize = $this->maximumWords($mode, $version);
-			if ($size < 0) {
-				$size = 0;
-			}
-			if ($size > $maxsize) {
-				$size = $maxsize;
+			if ($length == 0) {
+				return 0;
 			}
-			return $size;
-		}
-
-		/**
-		 * createBitStream
-		 * @param array $items
-		 * @return array of items and total bits
-		 */
-		 protected function createBitStream($items) {
-			$total = 0;
-			foreach ($items as $key => $item) {
-				$items[$key] = $this->encodeBitStream($item, $this->version);
-				$bits = count($items[$key]['bstream']);
-				$total += $bits;
+			if ($length < 0) {
+				return -1;
 			}
-			return array($items, $total);
+			$this->dataStr = substr($this->dataStr, $length);
 		}
+	}
 
-		/**
-		 * convertData
-		 * @param array $items
-		 * @return array items
-		 */
-		 protected function convertData($items) {
-			$ver = $this->estimateVersion($items);
-			if ($ver > $this->version) {
-				$this->version = $ver;
-			}
-			for (;;) {
-				$cbs = $this->createBitStream($items);
-				$items = $cbs[0];
-				$bits = $cbs[1];
-				if ($bits < 0) {
-					return -1;
-				}
-				$ver = $this->getMinimumVersion((int)(($bits + 7) / 8), $this->level);
-				if ($ver < 0) {
-					return -1;
-				} elseif ($ver > $this->version) {
-					$this->version = $ver;
-				} else {
-					break;
+	/**
+	 * toUpper
+	 */
+	 protected function toUpper() {
+		$stringLen = strlen($this->dataStr);
+		$p = 0;
+		while ($p < $stringLen) {
+			$mode = $this->identifyMode(substr($this->dataStr, $p), $this->hint);
+			if ($mode == QR_MODE_KJ) {
+				$p += 2;
+			} else {
+				if ((ord($this->dataStr[$p]) >= ord('a')) AND (ord($this->dataStr[$p]) <= ord('z'))) {
+					$this->dataStr[$p] = chr(ord($this->dataStr[$p]) - 32);
 				}
+				$p++;
 			}
-			return $items;
 		}
+		return $this->dataStr;
+	}
 
-		/**
-		 * Append Padding Bit to bitstream
-		 * @param array $bstream
-		 * @return array bitstream
-		 */
-		 protected function appendPaddingBit($bstream) {
-			$bits = count($bstream);
-			$maxwords = $this->getDataLength($this->version, $this->level);
-			$maxbits = $maxwords * 8;
-			if ($maxbits == $bits) {
-				return 0;
-			}
-			if ($maxbits - $bits < 5) {
-				return $this->appendNum($bstream, $maxbits - $bits, 0);
-			}
-			$bits += 4;
-			$words = (int)(($bits + 7) / 8);
-			$padding = array();
-			$padding = $this->appendNum($padding, $words * 8 - $bits + 4, 0);
-			$padlen = $maxwords - $words;
-			if ($padlen > 0) {
-				$padbuf = array();
-				for ($i=0; $i<$padlen; ++$i) {
-					$padbuf[$i] = ($i&1)?0x11:0xec;
-				}
-				$padding = $this->appendBytes($padding, $padlen, $padbuf);
-			}
-			return $this->appendBitstream($bstream, $padding);
-		}
+	// - - - - - - - - - - - - - - - - - - - - - - - - -
 
-		/**
-		 * mergeBitStream
-		 * @param array $bstream
-		 * @return array bitstream
-		 */
-		 protected function mergeBitStream($items) {
-			$items = $this->convertData($items);
-			$bstream = array();
-			foreach ($items as $item) {
-				$bstream = $this->appendBitstream($bstream, $item['bstream']);
-			}
-			return $bstream;
-		}
+	// QRinputItem
 
-		/**
-		 * Returns a stream of bits.
-		 * @param int $items
-		 * @return array padded merged byte stream
-		 */
-		protected function getBitStream($items) {
-			$bstream = $this->mergeBitStream($items);
-			return $this->appendPaddingBit($bstream);
-		}
-
-		/**
-		 * Pack all bit streams padding bits into a byte array.
-		 * @param int $items
-		 * @return array padded merged byte stream
-		 */
-		protected function getByteStream($items) {
-			$bstream = $this->getBitStream($items);
-			return $this->bitstreamToByte($bstream);
-		}
-
-		// - - - - - - - - - - - - - - - - - - - - - - - - -
-
-		// QRbitstream
-
-		/**
-		 * Return an array with zeros
-		 * @param int $setLength array size
-		 * @return array
-		 */
-		 protected function allocate($setLength) {
-			return array_fill(0, $setLength, 0);
-		}
-
-		/**
-		 * Return new bitstream from number
-		 * @param int $bits number of bits
-		 * @param int $num number
-		 * @return array bitstream
-		 */
-		 protected function newFromNum($bits, $num) {
-			$bstream = $this->allocate($bits);
-			$mask = 1 << ($bits - 1);
-			for ($i=0; $i<$bits; ++$i) {
-				if ($num & $mask) {
-					$bstream[$i] = 1;
-				} else {
-					$bstream[$i] = 0;
-				}
-				$mask = $mask >> 1;
+	/**
+	 * newInputItem
+	 * @param $mode (int)
+	 * @param $size (int)
+	 * @param $data (array)
+	 * @param $bstream (array)
+	 * @return array input item
+	 */
+	 protected function newInputItem($mode, $size, $data, $bstream=null) {
+		$setData = array_slice($data, 0, $size);
+		if (count($setData) < $size) {
+			$setData = array_merge($setData, array_fill(0, ($size - count($setData)), 0));
+		}
+		if (!$this->check($mode, $size, $setData)) {
+			return NULL;
+		}
+		$inputitem = array();
+		$inputitem['mode'] = $mode;
+		$inputitem['size'] = $size;
+		$inputitem['data'] = $setData;
+		$inputitem['bstream'] = $bstream;
+		return $inputitem;
+	}
+
+	/**
+	 * encodeModeNum
+	 * @param $inputitem (array)
+	 * @param $version (int)
+	 * @return array input item
+	 */
+	 protected function encodeModeNum($inputitem, $version) {
+		$words = (int)($inputitem['size'] / 3);
+		$inputitem['bstream'] = array();
+		$val = 0x1;
+		$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, $val);
+		$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_NM, $version), $inputitem['size']);
+		for ($i=0; $i < $words; ++$i) {
+			$val  = (ord($inputitem['data'][$i*3  ]) - ord('0')) * 100;
+			$val += (ord($inputitem['data'][$i*3+1]) - ord('0')) * 10;
+			$val += (ord($inputitem['data'][$i*3+2]) - ord('0'));
+			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 10, $val);
+		}
+		if ($inputitem['size'] - $words * 3 == 1) {
+			$val = ord($inputitem['data'][$words*3]) - ord('0');
+			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, $val);
+		} elseif (($inputitem['size'] - ($words * 3)) == 2) {
+			$val  = (ord($inputitem['data'][$words*3  ]) - ord('0')) * 10;
+			$val += (ord($inputitem['data'][$words*3+1]) - ord('0'));
+			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 7, $val);
+		}
+		return $inputitem;
+	}
+
+	/**
+	 * encodeModeAn
+	 * @param $inputitem (array)
+	 * @param $version (int)
+	 * @return array input item
+	 */
+	 protected function encodeModeAn($inputitem, $version) {
+		$words = (int)($inputitem['size'] / 2);
+		$inputitem['bstream'] = array();
+		$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x02);
+		$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_AN, $version), $inputitem['size']);
+		for ($i=0; $i < $words; ++$i) {
+			$val  = (int)($this->lookAnTable(ord($inputitem['data'][$i*2])) * 45);
+			$val += (int)($this->lookAnTable(ord($inputitem['data'][($i*2)+1])));
+			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 11, $val);
+		}
+		if ($inputitem['size'] & 1) {
+			$val = $this->lookAnTable(ord($inputitem['data'][($words * 2)]));
+			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 6, $val);
+		}
+		return $inputitem;
+	}
+
+	/**
+	 * encodeMode8
+	 * @param $inputitem (array)
+	 * @param $version (int)
+	 * @return array input item
+	 */
+	 protected function encodeMode8($inputitem, $version) {
+		$inputitem['bstream'] = array();
+		$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x4);
+		$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_8B, $version), $inputitem['size']);
+		for ($i=0; $i < $inputitem['size']; ++$i) {
+			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 8, ord($inputitem['data'][$i]));
+		}
+		return $inputitem;
+	}
+
+	/**
+	 * encodeModeKanji
+	 * @param $inputitem (array)
+	 * @param $version (int)
+	 * @return array input item
+	 */
+	 protected function encodeModeKanji($inputitem, $version) {
+		$inputitem['bstream'] = array();
+		$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x8);
+		$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_KJ, $version), (int)($inputitem['size'] / 2));
+		for ($i=0; $i<$inputitem['size']; $i+=2) {
+			$val = (ord($inputitem['data'][$i]) << 8) | ord($inputitem['data'][$i+1]);
+			if ($val <= 0x9ffc) {
+				$val -= 0x8140;
+			} else {
+				$val -= 0xc140;
 			}
-			return $bstream;
+			$h = ($val >> 8) * 0xc0;
+			$val = ($val & 0xff) + $h;
+			$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 13, $val);
 		}
+		return $inputitem;
+	}
 
-		/**
-		 * Return new bitstream from bytes
-		 * @param int $size size
-		 * @param array $data bytes
-		 * @return array bitstream
-		 */
-		 protected function newFromBytes($size, $data) {
-			$bstream = $this->allocate($size * 8);
-			$p=0;
-			for ($i=0; $i<$size; ++$i) {
-				$mask = 0x80;
-				for ($j=0; $j<8; ++$j) {
-					if ($data[$i] & $mask) {
-						$bstream[$p] = 1;
-					} else {
-						$bstream[$p] = 0;
-					}
-					$p++;
-					$mask = $mask >> 1;
+	/**
+	 * encodeModeStructure
+	 * @param $inputitem (array)
+	 * @return array input item
+	 */
+	 protected function encodeModeStructure($inputitem) {
+		$inputitem['bstream'] = array();
+		$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x03);
+		$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, ord($inputitem['data'][1]) - 1);
+		$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, ord($inputitem['data'][0]) - 1);
+		$inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 8, ord($inputitem['data'][2]));
+		return $inputitem;
+	}
+
+	/**
+	 * encodeBitStream
+	 * @param $inputitem (array)
+	 * @param $version (int)
+	 * @return array input item
+	 */
+	 protected function encodeBitStream($inputitem, $version) {
+		$inputitem['bstream'] = array();
+		$words = $this->maximumWords($inputitem['mode'], $version);
+		if ($inputitem['size'] > $words) {
+			$st1 = $this->newInputItem($inputitem['mode'], $words, $inputitem['data']);
+			$st2 = $this->newInputItem($inputitem['mode'], $inputitem['size'] - $words, array_slice($inputitem['data'], $words));
+			$st1 = $this->encodeBitStream($st1, $version);
+			$st2 = $this->encodeBitStream($st2, $version);
+			$inputitem['bstream'] = array();
+			$inputitem['bstream'] = $this->appendBitstream($inputitem['bstream'], $st1['bstream']);
+			$inputitem['bstream'] = $this->appendBitstream($inputitem['bstream'], $st2['bstream']);
+		} else {
+			switch($inputitem['mode']) {
+				case QR_MODE_NM: {
+					$inputitem = $this->encodeModeNum($inputitem, $version);
+					break;
+				}
+				case QR_MODE_AN: {
+					$inputitem = $this->encodeModeAn($inputitem, $version);
+					break;
+				}
+				case QR_MODE_8B: {
+					$inputitem = $this->encodeMode8($inputitem, $version);
+					break;
+				}
+				case QR_MODE_KJ: {
+					$inputitem = $this->encodeModeKanji($inputitem, $version);
+					break;
+				}
+				case QR_MODE_ST: {
+					$inputitem = $this->encodeModeStructure($inputitem);
+					break;
+				}
+				default: {
+					break;
 				}
 			}
-			return $bstream;
 		}
+		return $inputitem;
+	}
 
-		/**
-		 * Append one bitstream to another
-		 * @param array $bitstream original bitstream
-		 * @param array $append bitstream to append
-		 * @return array bitstream
-		 */
-		 protected function appendBitstream($bitstream, $append) {
-			if ((!is_array($append)) OR (count($append) == 0)) {
-				return $bitstream;
-			}
-			if (count($bitstream) == 0) {
-				return $append;
-			}
-			return array_values(array_merge($bitstream, $append));
+	// - - - - - - - - - - - - - - - - - - - - - - - - -
+
+	// QRinput
+
+	/**
+	 * Append data to an input object.
+	 * The data is copied and appended to the input object.
+	 * @param $items (arrray) input items
+	 * @param $mode (int) encoding mode.
+	 * @param $size (int) size of data (byte).
+	 * @param $data (array) array of input data.
+	 * @return items
+	 *
+	 */
+	protected function appendNewInputItem($items, $mode, $size, $data) {
+		$newitem = $this->newInputItem($mode, $size, $data);
+		if (!empty($newitem)) {
+			$items[] = $newitem;
 		}
+		return $items;
+	}
 
-		/**
-		 * Append one bitstream created from number to another
-		 * @param array $bitstream original bitstream
-		 * @param int $bits number of bits
-		 * @param int $num number
-		 * @return array bitstream
-		 */
-		 protected function appendNum($bitstream, $bits, $num) {
-			if ($bits == 0) {
-				return 0;
-			}
-			$b = $this->newFromNum($bits, $num);
-			return $this->appendBitstream($bitstream, $b);
+	/**
+	 * insertStructuredAppendHeader
+	 * @param $items (array)
+	 * @param $size (int)
+	 * @param $index (int)
+	 * @param $parity (int)
+	 * @return array items
+	 */
+	 protected function insertStructuredAppendHeader($items, $size, $index, $parity) {
+		if ($size > MAX_STRUCTURED_SYMBOLS) {
+			return -1;
 		}
+		if (($index <= 0) OR ($index > MAX_STRUCTURED_SYMBOLS)) {
+			return -1;
+		}
+		$buf = array($size, $index, $parity);
+		$entry = $this->newInputItem(QR_MODE_ST, 3, buf);
+		array_unshift($items, $entry);
+		return $items;
+	}
 
-		/**
-		 * Append one bitstream created from bytes to another
-		 * @param array $bitstream original bitstream
-		 * @param int $size size
-		 * @param array $data bytes
-		 * @return array bitstream
-		 */
-		 protected function appendBytes($bitstream, $size, $data) {
-			if ($size == 0) {
-				return 0;
-			}
-			$b = $this->newFromBytes($size, $data);
-			return $this->appendBitstream($bitstream, $b);
-		}
-
-		/**
-		 * Convert bitstream to bytes
-		 * @param array $bitstream original bitstream
-		 * @return array of bytes
-		 */
-		 protected function bitstreamToByte($bstream) {
-			$size = count($bstream);
-			if ($size == 0) {
-				return array();
-			}
-			$data = array_fill(0, (int)(($size + 7) / 8), 0);
-			$bytes = (int)($size / 8);
-			$p = 0;
-			for ($i=0; $i<$bytes; $i++) {
-				$v = 0;
-				for ($j=0; $j<8; $j++) {
-					$v = $v << 1;
-					$v |= $bstream[$p];
-					$p++;
-				}
-				$data[$i] = $v;
-			}
-			if ($size & 7) {
-				$v = 0;
-				for ($j=0; $j<($size & 7); $j++) {
-					$v = $v << 1;
-					$v |= $bstream[$p];
-					$p++;
-				}
-				$data[$bytes] = $v;
-			}
-			return $data;
-		}
-
-		// - - - - - - - - - - - - - - - - - - - - - - - - -
-
-		// QRspec
-
-		/**
-		 * Replace a value on the array at the specified position
-		 * @param array $srctab
-		 * @param int $x X position
-		 * @param int $y Y position
-		 * @param string $repl value to replace
-		 * @param int $replLen length of the repl string
-		 * @return array srctab
-		 */
-		 protected function qrstrset($srctab, $x, $y, $repl, $replLen=false) {
-			$srctab[$y] = substr_replace($srctab[$y], ($replLen !== false)?substr($repl,0,$replLen):$repl, $x, ($replLen !== false)?$replLen:strlen($repl));
-			return $srctab;
-		}
-
-		/**
-		 * Return maximum data code length (bytes) for the version.
-		 * @param int $version version
-		 * @param int $level error correction level
-		 * @return int maximum size (bytes)
-		 */
-		protected function getDataLength($version, $level) {
-			return $this->capacity[$version][QRCAP_WORDS] - $this->capacity[$version][QRCAP_EC][$level];
-		}
-
-		/**
-		 * Return maximum error correction code length (bytes) for the version.
-		 * @param int $version version
-		 * @param int $level error correction level
-		 * @return int ECC size (bytes)
-		 */
-		protected function getECCLength($version, $level){
-			return $this->capacity[$version][QRCAP_EC][$level];
-		}
-
-		/**
-		 * Return the width of the symbol for the version.
-		 * @param int $version version
-		 * @return int width
-		 */
-		protected function getWidth($version) {
-			return $this->capacity[$version][QRCAP_WIDTH];
-		}
-
-		/**
-		 * Return the numer of remainder bits.
-		 * @param int $version version
-		 * @return int number of remainder bits
-		 */
-		protected function getRemainder($version) {
-			return $this->capacity[$version][QRCAP_REMINDER];
-		}
-
-		/**
-		 * Return a version number that satisfies the input code length.
-		 * @param int $size input code length (byte)
-		 * @param int $level error correction level
-		 * @return int version number
-		 */
-		protected function getMinimumVersion($size, $level) {
-			for ($i=1; $i <= QRSPEC_VERSION_MAX; ++$i) {
-				$words  = $this->capacity[$i][QRCAP_WORDS] - $this->capacity[$i][QRCAP_EC][$level];
-				if ($words >= $size) {
-					return $i;
+	/**
+	 * calcParity
+	 * @param $items (array)
+	 * @return int parity
+	 */
+	 protected function calcParity($items) {
+		$parity = 0;
+		foreach ($items as $item) {
+			if ($item['mode'] != QR_MODE_ST) {
+				for ($i=$item['size']-1; $i>=0; --$i) {
+					$parity ^= $item['data'][$i];
 				}
 			}
-			return -1;
 		}
+		return $parity;
+	}
 
-		/**
-		 * Return the size of length indicator for the mode and version.
-		 * @param int $mode encoding mode
-		 * @param int $version version
-		 * @return int the size of the appropriate length indicator (bits).
-		 */
-		protected function lengthIndicator($mode, $version) {
-			if ($mode == QR_MODE_ST) {
-				return 0;
+	/**
+	 * checkModeNum
+	 * @param $size (int)
+	 * @param $data (array)
+	 * @return boolean true or false
+	 */
+	 protected function checkModeNum($size, $data) {
+		for ($i=0; $i<$size; ++$i) {
+			if ((ord($data[$i]) < ord('0')) OR (ord($data[$i]) > ord('9'))){
+				return false;
 			}
-			if ($version <= 9) {
-				$l = 0;
-			} elseif ($version <= 26) {
-				$l = 1;
-			} else {
-				$l = 2;
+		}
+		return true;
+	}
+
+	/**
+	 * Look up the alphabet-numeric convesion table (see JIS X0510:2004, pp.19).
+	 * @param $c (int) character value
+	 * @return value
+	 */
+	protected function lookAnTable($c) {
+		return (($c > 127)?-1:$this->anTable[$c]);
+	}
+
+	/**
+	 * checkModeAn
+	 * @param $size (int)
+	 * @param $data (array)
+	 * @return boolean true or false
+	 */
+	 protected function checkModeAn($size, $data) {
+		for ($i=0; $i<$size; ++$i) {
+			if ($this->lookAnTable(ord($data[$i])) == -1) {
+				return false;
 			}
-			return $this->lengthTableBits[$mode][$l];
 		}
+		return true;
+	}
 
-		/**
-		 * Return the maximum length for the mode and version.
-		 * @param int $mode encoding mode
-		 * @param int $version version
-		 * @return int the maximum length (bytes)
-		 */
-		protected function maximumWords($mode, $version) {
-			if ($mode == QR_MODE_ST) {
-				return 3;
+	/**
+	 * estimateBitsModeNum
+	 * @param $size (int)
+	 * @return int number of bits
+	 */
+	 protected function estimateBitsModeNum($size) {
+		$w = (int)($size / 3);
+		$bits = ($w * 10);
+		switch($size - ($w * 3)) {
+			case 1: {
+				$bits += 4;
+				break;
 			}
-			if ($version <= 9) {
-				$l = 0;
-			} else if ($version <= 26) {
-				$l = 1;
-			} else {
-				$l = 2;
+			case 2: {
+				$bits += 7;
+				break;
 			}
-			$bits = $this->lengthTableBits[$mode][$l];
-			$words = (1 << $bits) - 1;
-			if ($mode == QR_MODE_KJ) {
-				$words *= 2; // the number of bytes is required
-			}
-			return $words;
-		}
-
-		/**
-		 * Return an array of ECC specification.
-		 * @param int $version version
-		 * @param int $level error correction level
-		 * @param array $spec an array of ECC specification contains as following: {# of type1 blocks, # of data code, # of ecc code, # of type2 blocks, # of data code}
-		 * @return array spec
-		 */
-		protected function getEccSpec($version, $level, $spec) {
-			if (count($spec) < 5) {
-				$spec = array(0, 0, 0, 0, 0);
-			}
-			$b1 = $this->eccTable[$version][$level][0];
-			$b2 = $this->eccTable[$version][$level][1];
-			$data = $this->getDataLength($version, $level);
-			$ecc = $this->getECCLength($version, $level);
-			if ($b2 == 0) {
-				$spec[0] = $b1;
-				$spec[1] = (int)($data / $b1);
-				$spec[2] = (int)($ecc / $b1);
-				$spec[3] = 0;
-				$spec[4] = 0;
-			} else {
-				$spec[0] = $b1;
-				$spec[1] = (int)($data / ($b1 + $b2));
-				$spec[2] = (int)($ecc  / ($b1 + $b2));
-				$spec[3] = $b2;
-				$spec[4] = $spec[1] + 1;
-			}
-			return $spec;
-		}
-
-		/**
-		 * Put an alignment marker.
-		 * @param array $frame frame
-		 * @param int $width width
-		 * @param int $ox X center coordinate of the pattern
-		 * @param int $oy Y center coordinate of the pattern
-		 * @return array frame
-		 */
-		protected function putAlignmentMarker($frame, $ox, $oy) {
-			$finder = array(
-				"\xa1\xa1\xa1\xa1\xa1",
-				"\xa1\xa0\xa0\xa0\xa1",
-				"\xa1\xa0\xa1\xa0\xa1",
-				"\xa1\xa0\xa0\xa0\xa1",
-				"\xa1\xa1\xa1\xa1\xa1"
-				);
-			$yStart = $oy - 2;
-			$xStart = $ox - 2;
-			for ($y=0; $y < 5; $y++) {
-				$frame = $this->qrstrset($frame, $xStart, $yStart+$y, $finder[$y]);
+		}
+		return $bits;
+	}
+
+	/**
+	 * estimateBitsModeAn
+	 * @param $size (int)
+	 * @return int number of bits
+	 */
+	 protected function estimateBitsModeAn($size) {
+		$bits = (int)($size * 5.5); // (size / 2 ) * 11
+		if ($size & 1) {
+			$bits += 6;
+		}
+		return $bits;
+	}
+
+	/**
+	 * estimateBitsMode8
+	 * @param $size (int)
+	 * @return int number of bits
+	 */
+	 protected function estimateBitsMode8($size) {
+		return (int)($size * 8);
+	}
+
+	/**
+	 * estimateBitsModeKanji
+	 * @param $size (int)
+	 * @return int number of bits
+	 */
+	 protected function estimateBitsModeKanji($size) {
+		return (int)($size * 6.5); // (size / 2 ) * 13
+	}
+
+	/**
+	 * checkModeKanji
+	 * @param $size (int)
+	 * @param $data (array)
+	 * @return boolean true or false
+	 */
+	 protected function checkModeKanji($size, $data) {
+		if ($size & 1) {
+			return false;
+		}
+		for ($i=0; $i<$size; $i+=2) {
+			$val = (ord($data[$i]) << 8) | ord($data[$i+1]);
+			if (($val < 0x8140) OR (($val > 0x9ffc) AND ($val < 0xe040)) OR ($val > 0xebbf)) {
+				return false;
 			}
-			return $frame;
 		}
+		return true;
+	}
 
-		/**
-		 * Put an alignment pattern.
-		 * @param int $version version
-		 * @param array $fram frame
-		 * @param int $width width
-		 * @return array frame
-		 */
-		 protected function putAlignmentPattern($version, $frame, $width) {
-			if ($version < 2) {
-				return $frame;
-			}
-			$d = $this->alignmentPattern[$version][1] - $this->alignmentPattern[$version][0];
-			if ($d < 0) {
-				$w = 2;
-			} else {
-				$w = (int)(($width - $this->alignmentPattern[$version][0]) / $d + 2);
+	/**
+	 * Validate the input data.
+	 * @param $mode (int) encoding mode.
+	 * @param $size (int) size of data (byte).
+	 * @param $data (array) data to validate
+	 * @return boolean true in case of valid data, false otherwise
+	 */
+	protected function check($mode, $size, $data) {
+		if ($size <= 0) {
+			return false;
+		}
+		switch($mode) {
+			case QR_MODE_NM: {
+				return $this->checkModeNum($size, $data);
 			}
-			if ($w * $w - 3 == 1) {
-				$x = $this->alignmentPattern[$version][0];
-				$y = $this->alignmentPattern[$version][0];
-				$frame = $this->putAlignmentMarker($frame, $x, $y);
-				return $frame;
+			case QR_MODE_AN: {
+				return $this->checkModeAn($size, $data);
 			}
-			$cx = $this->alignmentPattern[$version][0];
-			$wo = $w - 1;
-			for ($x=1; $x < $wo; ++$x) {
-				$frame = $this->putAlignmentMarker($frame, 6, $cx);
-				$frame = $this->putAlignmentMarker($frame, $cx,  6);
-				$cx += $d;
+			case QR_MODE_KJ: {
+				return $this->checkModeKanji($size, $data);
 			}
-			$cy = $this->alignmentPattern[$version][0];
-			for ($y=0; $y < $wo; ++$y) {
-				$cx = $this->alignmentPattern[$version][0];
-				for ($x=0; $x < $wo; ++$x) {
-					$frame = $this->putAlignmentMarker($frame, $cx, $cy);
-					$cx += $d;
-				}
-				$cy += $d;
+			case QR_MODE_8B: {
+				return true;
+			}
+			case QR_MODE_ST: {
+				return true;
+			}
+			default: {
+				break;
 			}
-			return $frame;
 		}
+		return false;
+	}
 
-		/**
-		 * Return BCH encoded version information pattern that is used for the symbol of version 7 or greater. Use lower 18 bits.
-		 * @param int $version version
-		 * @return BCH encoded version information pattern
-		 */
-		protected function getVersionPattern($version) {
-			if (($version < 7) OR ($version > QRSPEC_VERSION_MAX)) {
-				return 0;
+	/**
+	 * estimateBitStreamSize
+	 * @param $items (array)
+	 * @param $version (int)
+	 * @return int bits
+	 */
+	 protected function estimateBitStreamSize($items, $version) {
+		$bits = 0;
+		if ($version == 0) {
+			$version = 1;
+		}
+		foreach ($items as $item) {
+			switch($item['mode']) {
+				case QR_MODE_NM: {
+					$bits = $this->estimateBitsModeNum($item['size']);
+					break;
+				}
+				case QR_MODE_AN: {
+					$bits = $this->estimateBitsModeAn($item['size']);
+					break;
+				}
+				case QR_MODE_8B: {
+					$bits = $this->estimateBitsMode8($item['size']);
+					break;
+				}
+				case QR_MODE_KJ: {
+					$bits = $this->estimateBitsModeKanji($item['size']);
+					break;
+				}
+				case QR_MODE_ST: {
+					return STRUCTURE_HEADER_BITS;
+				}
+				default: {
+					return 0;
+				}
 			}
-			return $this->versionPattern[($version - 7)];
+			$l = $this->lengthIndicator($item['mode'], $version);
+			$m = 1 << $l;
+			$num = (int)(($item['size'] + $m - 1) / $m);
+			$bits += $num * (4 + $l);
 		}
+		return $bits;
+	}
 
-		/**
-		 * Return BCH encoded format information pattern.
-		 * @param array $mask
-		 * @param int $level error correction level
-		 * @return BCH encoded format information pattern
-		 */
-		protected function getFormatInfo($mask, $level) {
-			if (($mask < 0) OR ($mask > 7)) {
-				return 0;
-			}
-			if (($level < 0) OR ($level > 3)) {
-				return 0;
+	/**
+	 * estimateVersion
+	 * @param $items (array)
+	 * @return int version
+	 */
+	 protected function estimateVersion($items) {
+		$version = 0;
+		$prev = 0;
+		do {
+			$prev = $version;
+			$bits = $this->estimateBitStreamSize($items, $prev);
+			$version = $this->getMinimumVersion((int)(($bits + 7) / 8), $this->level);
+			if ($version < 0) {
+				return -1;
 			}
-			return $this->formatInfo[$level][$mask];
-		}
-
-		/**
-		 * Put a finder pattern.
-		 * @param array $frame frame
-		 * @param int $width width
-		 * @param int $ox X center coordinate of the pattern
-		 * @param int $oy Y center coordinate of the pattern
-		 * @return array frame
-		 */
-		protected function putFinderPattern($frame, $ox, $oy) {
-			$finder = array(
-			"\xc1\xc1\xc1\xc1\xc1\xc1\xc1",
-			"\xc1\xc0\xc0\xc0\xc0\xc0\xc1",
-			"\xc1\xc0\xc1\xc1\xc1\xc0\xc1",
-			"\xc1\xc0\xc1\xc1\xc1\xc0\xc1",
-			"\xc1\xc0\xc1\xc1\xc1\xc0\xc1",
-			"\xc1\xc0\xc0\xc0\xc0\xc0\xc1",
-			"\xc1\xc1\xc1\xc1\xc1\xc1\xc1"
-			);
-			for ($y=0; $y < 7; $y++) {
-				$frame = $this->qrstrset($frame, $ox, ($oy + $y), $finder[$y]);
+		} while ($version > $prev);
+		return $version;
+	}
+
+	/**
+	 * lengthOfCode
+	 * @param $mode (int)
+	 * @param $version (int)
+	 * @param $bits (int)
+	 * @return int size
+	 */
+	 protected function lengthOfCode($mode, $version, $bits) {
+		$payload = $bits - 4 - $this->lengthIndicator($mode, $version);
+		switch($mode) {
+			case QR_MODE_NM: {
+				$chunks = (int)($payload / 10);
+				$remain = $payload - $chunks * 10;
+				$size = $chunks * 3;
+				if ($remain >= 7) {
+					$size += 2;
+				} elseif ($remain >= 4) {
+					$size += 1;
+				}
+				break;
+			}
+			case QR_MODE_AN: {
+				$chunks = (int)($payload / 11);
+				$remain = $payload - $chunks * 11;
+				$size = $chunks * 2;
+				if ($remain >= 6) {
+					++$size;
+				}
+				break;
+			}
+			case QR_MODE_8B: {
+				$size = (int)($payload / 8);
+				break;
+			}
+			case QR_MODE_KJ: {
+				$size = (int)(($payload / 13) * 2);
+				break;
+			}
+			case QR_MODE_ST: {
+				$size = (int)($payload / 8);
+				break;
+			}
+			default: {
+				$size = 0;
+				break;
 			}
-			return $frame;
 		}
+		$maxsize = $this->maximumWords($mode, $version);
+		if ($size < 0) {
+			$size = 0;
+		}
+		if ($size > $maxsize) {
+			$size = $maxsize;
+		}
+		return $size;
+	}
 
-		/**
-		 * Return a copy of initialized frame.
-		 * @param int $version version
-		 * @return Array of unsigned char.
-		 */
-		protected function createFrame($version) {
-			$width = $this->capacity[$version][QRCAP_WIDTH];
-			$frameLine = str_repeat ("\0", $width);
-			$frame = array_fill(0, $width, $frameLine);
-			// Finder pattern
-			$frame = $this->putFinderPattern($frame, 0, 0);
-			$frame = $this->putFinderPattern($frame, $width - 7, 0);
-			$frame = $this->putFinderPattern($frame, 0, $width - 7);
-			// Separator
-			$yOffset = $width - 7;
-			for ($y=0; $y < 7; ++$y) {
-				$frame[$y][7] = "\xc0";
-				$frame[$y][$width - 8] = "\xc0";
-				$frame[$yOffset][7] = "\xc0";
-				++$yOffset;
-			}
-			$setPattern = str_repeat("\xc0", 8);
-			$frame = $this->qrstrset($frame, 0, 7, $setPattern);
-			$frame = $this->qrstrset($frame, $width-8, 7, $setPattern);
-			$frame = $this->qrstrset($frame, 0, $width - 8, $setPattern);
-			// Format info
-			$setPattern = str_repeat("\x84", 9);
-			$frame = $this->qrstrset($frame, 0, 8, $setPattern);
-			$frame = $this->qrstrset($frame, $width - 8, 8, $setPattern, 8);
-			$yOffset = $width - 8;
-			for ($y=0; $y < 8; ++$y,++$yOffset) {
-				$frame[$y][8] = "\x84";
-				$frame[$yOffset][8] = "\x84";
-			}
-			// Timing pattern
-			$wo = $width - 15;
-			for ($i=1; $i < $wo; ++$i) {
-				$frame[6][7+$i] = chr(0x90 | ($i & 1));
-				$frame[7+$i][6] = chr(0x90 | ($i & 1));
-			}
-			// Alignment pattern
-			$frame = $this->putAlignmentPattern($version, $frame, $width);
-			// Version information
-			if ($version >= 7) {
-				$vinf = $this->getVersionPattern($version);
-				$v = $vinf;
-				for ($x=0; $x<6; ++$x) {
-					for ($y=0; $y<3; ++$y) {
-						$frame[($width - 11)+$y][$x] = chr(0x88 | ($v & 1));
-						$v = $v >> 1;
-					}
-				}
-				$v = $vinf;
-				for ($y=0; $y<6; ++$y) {
-					for ($x=0; $x<3; ++$x) {
-						$frame[$y][$x+($width - 11)] = chr(0x88 | ($v & 1));
-						$v = $v >> 1;
-					}
-				}
+	/**
+	 * createBitStream
+	 * @param $items (array)
+	 * @return array of items and total bits
+	 */
+	 protected function createBitStream($items) {
+		$total = 0;
+		foreach ($items as $key => $item) {
+			$items[$key] = $this->encodeBitStream($item, $this->version);
+			$bits = count($items[$key]['bstream']);
+			$total += $bits;
+		}
+		return array($items, $total);
+	}
+
+	/**
+	 * convertData
+	 * @param $items (array)
+	 * @return array items
+	 */
+	 protected function convertData($items) {
+		$ver = $this->estimateVersion($items);
+		if ($ver > $this->version) {
+			$this->version = $ver;
+		}
+		for (;;) {
+			$cbs = $this->createBitStream($items);
+			$items = $cbs[0];
+			$bits = $cbs[1];
+			if ($bits < 0) {
+				return -1;
+			}
+			$ver = $this->getMinimumVersion((int)(($bits + 7) / 8), $this->level);
+			if ($ver < 0) {
+				return -1;
+			} elseif ($ver > $this->version) {
+				$this->version = $ver;
+			} else {
+				break;
 			}
-			// and a little bit...
-			$frame[$width - 8][8] = "\x81";
-			return $frame;
 		}
+		return $items;
+	}
 
-		/**
-		 * Set new frame for the specified version.
-		 * @param int $version version
-		 * @return Array of unsigned char.
-		 */
-		protected function newFrame($version) {
-			if (($version < 1) OR ($version > QRSPEC_VERSION_MAX)) {
-				return NULL;
-			}
-			if (!isset($this->frames[$version])) {
-				$this->frames[$version] = $this->createFrame($version);
+	/**
+	 * Append Padding Bit to bitstream
+	 * @param $bstream (array)
+	 * @return array bitstream
+	 */
+	 protected function appendPaddingBit($bstream) {
+	 	if (is_null($bstream)) {
+	 		return null;
+	 	}
+		$bits = count($bstream);
+		$maxwords = $this->getDataLength($this->version, $this->level);
+		$maxbits = $maxwords * 8;
+		if ($maxbits == $bits) {
+			return $bstream;
+		}
+		if ($maxbits - $bits < 5) {
+			return $this->appendNum($bstream, $maxbits - $bits, 0);
+		}
+		$bits += 4;
+		$words = (int)(($bits + 7) / 8);
+		$padding = array();
+		$padding = $this->appendNum($padding, $words * 8 - $bits + 4, 0);
+		$padlen = $maxwords - $words;
+		if ($padlen > 0) {
+			$padbuf = array();
+			for ($i=0; $i<$padlen; ++$i) {
+				$padbuf[$i] = ($i&1)?0x11:0xec;
 			}
-			if (is_null($this->frames[$version])) {
-				return NULL;
+			$padding = $this->appendBytes($padding, $padlen, $padbuf);
+		}
+		return $this->appendBitstream($bstream, $padding);
+	}
+
+	/**
+	 * mergeBitStream
+	 * @param $items (array) items
+	 * @return array bitstream
+	 */
+	 protected function mergeBitStream($items) {
+		$items = $this->convertData($items);
+		if (!is_array($items)) {
+			return null;
+		}
+		$bstream = array();
+		foreach ($items as $item) {
+			$bstream = $this->appendBitstream($bstream, $item['bstream']);
+		}
+		return $bstream;
+	}
+
+	/**
+	 * Returns a stream of bits.
+	 * @param $items (int)
+	 * @return array padded merged byte stream
+	 */
+	protected function getBitStream($items) {
+		$bstream = $this->mergeBitStream($items);
+		return $this->appendPaddingBit($bstream);
+	}
+
+	/**
+	 * Pack all bit streams padding bits into a byte array.
+	 * @param $items (int)
+	 * @return array padded merged byte stream
+	 */
+	protected function getByteStream($items) {
+		$bstream = $this->getBitStream($items);
+		return $this->bitstreamToByte($bstream);
+	}
+
+	// - - - - - - - - - - - - - - - - - - - - - - - - -
+
+	// QRbitstream
+
+	/**
+	 * Return an array with zeros
+	 * @param $setLength (int) array size
+	 * @return array
+	 */
+	 protected function allocate($setLength) {
+		return array_fill(0, $setLength, 0);
+	}
+
+	/**
+	 * Return new bitstream from number
+	 * @param $bits (int) number of bits
+	 * @param $num (int) number
+	 * @return array bitstream
+	 */
+	 protected function newFromNum($bits, $num) {
+		$bstream = $this->allocate($bits);
+		$mask = 1 << ($bits - 1);
+		for ($i=0; $i<$bits; ++$i) {
+			if ($num & $mask) {
+				$bstream[$i] = 1;
+			} else {
+				$bstream[$i] = 0;
 			}
-			return $this->frames[$version];
-		}
-
-		/**
-		 * Return block number 0
-		 * @param array $spec
-		 * @return int value
-		 */
-		 protected function rsBlockNum($spec) {
-			return ($spec[0] + $spec[3]);
-		}
-
-		/**
-		* Return block number 1
-		 * @param array $spec
-		 * @return int value
-		 */
-		 protected function rsBlockNum1($spec) {
-			return $spec[0];
-		}
-
-		/**
-		 * Return data codes 1
-		 * @param array $spec
-		 * @return int value
-		 */
-		 protected function rsDataCodes1($spec) {
-			return $spec[1];
-		}
-
-		/**
-		 * Return ecc codes 1
-		 * @param array $spec
-		 * @return int value
-		 */
-		 protected function rsEccCodes1($spec) {
-			return $spec[2];
-		}
-
-		/**
-		 * Return block number 2
-		 * @param array $spec
-		 * @return int value
-		 */
-		 protected function rsBlockNum2($spec) {
-			return $spec[3];
-		}
-
-		/**
-		 * Return data codes 2
-		 * @param array $spec
-		 * @return int value
-		 */
-		 protected function rsDataCodes2($spec) {
-			return $spec[4];
-		}
-
-		/**
-		 * Return ecc codes 2
-		 * @param array $spec
-		 * @return int value
-		 */
-		 protected function rsEccCodes2($spec) {
-			return $spec[2];
-		}
-
-		/**
-		 * Return data length
-		 * @param array $spec
-		 * @return int value
-		 */
-		 protected function rsDataLength($spec) {
-			return ($spec[0] * $spec[1]) + ($spec[3] * $spec[4]);
-		}
-
-		/**
-		 * Return ecc length
-		 * @param array $spec
-		 * @return int value
-		 */
-		 protected function rsEccLength($spec) {
-			return ($spec[0] + $spec[3]) * $spec[2];
-		}
-
-		// - - - - - - - - - - - - - - - - - - - - - - - - -
-
-		// QRrs
-
-		/**
-		 * Initialize a Reed-Solomon codec and add it to existing rsitems
-		 * @param int $symsize symbol size, bits
-		 * @param int $gfpoly  Field generator polynomial coefficients
-		 * @param int $fcr  first root of RS code generator polynomial, index form
-		 * @param int $prim  primitive element to generate polynomial roots
-		 * @param int $nroots RS code generator polynomial degree (number of roots)
-		 * @param int $pad  padding bytes at front of shortened block
-		 * @return array Array of RS values:<ul><li>mm = Bits per symbol;</li><li>nn = Symbols per block;</li><li>alpha_to = log lookup table array;</li><li>index_of = Antilog lookup table array;</li><li>genpoly = Generator polynomial array;</li><li>nroots = Number of generator;</li><li>roots = number of parity symbols;</li><li>fcr = First consecutive root, index form;</li><li>prim = Primitive element, index form;</li><li>iprim = prim-th root of 1, index form;</li><li>pad = Padding bytes in shortened block;</li><li>gfpoly</ul>.
-		 */
-		 protected function init_rs($symsize, $gfpoly, $fcr, $prim, $nroots, $pad) {
-			foreach ($this->rsitems as $rs) {
-				if (($rs['pad'] != $pad) OR ($rs['nroots'] != $nroots) OR ($rs['mm'] != $symsize)
-					OR ($rs['gfpoly'] != $gfpoly) OR ($rs['fcr'] != $fcr) OR ($rs['prim'] != $prim)) {
-					continue;
+			$mask = $mask >> 1;
+		}
+		return $bstream;
+	}
+
+	/**
+	 * Return new bitstream from bytes
+	 * @param $size (int) size
+	 * @param $data (array) bytes
+	 * @return array bitstream
+	 */
+	 protected function newFromBytes($size, $data) {
+		$bstream = $this->allocate($size * 8);
+		$p=0;
+		for ($i=0; $i<$size; ++$i) {
+			$mask = 0x80;
+			for ($j=0; $j<8; ++$j) {
+				if ($data[$i] & $mask) {
+					$bstream[$p] = 1;
+				} else {
+					$bstream[$p] = 0;
 				}
-				return $rs;
+				$p++;
+				$mask = $mask >> 1;
 			}
-			$rs = $this->init_rs_char($symsize, $gfpoly, $fcr, $prim, $nroots, $pad);
-			array_unshift($this->rsitems, $rs);
-			return $rs;
 		}
+		return $bstream;
+	}
 
-		// - - - - - - - - - - - - - - - - - - - - - - - - -
-
-		// QRrsItem
-
-		/**
-		 * modnn
-		 * @param array RS values
-		 * @param int $x X position
-		 * @return int X osition
-		 */
-		 protected function modnn($rs, $x) {
-			while ($x >= $rs['nn']) {
-				$x -= $rs['nn'];
-				$x = ($x >> $rs['mm']) + ($x & $rs['nn']);
-			}
-			return $x;
-		}
-
-		/**
-		 * Initialize a Reed-Solomon codec and returns an array of values.
-		 * @param int $symsize symbol size, bits
-		 * @param int $gfpoly  Field generator polynomial coefficients
-		 * @param int $fcr  first root of RS code generator polynomial, index form
-		 * @param int $prim  primitive element to generate polynomial roots
-		 * @param int $nroots RS code generator polynomial degree (number of roots)
-		 * @param int $pad  padding bytes at front of shortened block
-		 * @return array Array of RS values:<ul><li>mm = Bits per symbol;</li><li>nn = Symbols per block;</li><li>alpha_to = log lookup table array;</li><li>index_of = Antilog lookup table array;</li><li>genpoly = Generator polynomial array;</li><li>nroots = Number of generator;</li><li>roots = number of parity symbols;</li><li>fcr = First consecutive root, index form;</li><li>prim = Primitive element, index form;</li><li>iprim = prim-th root of 1, index form;</li><li>pad = Padding bytes in shortened block;</li><li>gfpoly</ul>.
-		 */
-		protected function init_rs_char($symsize, $gfpoly, $fcr, $prim, $nroots, $pad) {
-			// Based on Reed solomon encoder by Phil Karn, KA9Q (GNU-LGPLv2)
-			$rs = null;
-			// Check parameter ranges
-			if (($symsize < 0) OR ($symsize > 8)) {
-				return $rs;
-			}
-			if (($fcr < 0) OR ($fcr >= (1<<$symsize))) {
-				return $rs;
-			}
-			if (($prim <= 0) OR ($prim >= (1<<$symsize))) {
-				return $rs;
-			}
-			if (($nroots < 0) OR ($nroots >= (1<<$symsize))) {
-				return $rs;
-			}
-			if (($pad < 0) OR ($pad >= ((1<<$symsize) -1 - $nroots))) {
-				return $rs;
-			}
-			$rs = array();
-			$rs['mm'] = $symsize;
-			$rs['nn'] = (1 << $symsize) - 1;
-			$rs['pad'] = $pad;
-			$rs['alpha_to'] = array_fill(0, ($rs['nn'] + 1), 0);
-			$rs['index_of'] = array_fill(0, ($rs['nn'] + 1), 0);
-			// PHP style macro replacement ;)
-			$NN =& $rs['nn'];
-			$A0 =& $NN;
-			// Generate Galois field lookup tables
-			$rs['index_of'][0] = $A0; // log(zero) = -inf
-			$rs['alpha_to'][$A0] = 0; // alpha**-inf = 0
-			$sr = 1;
-			for ($i=0; $i<$rs['nn']; ++$i) {
-				$rs['index_of'][$sr] = $i;
-				$rs['alpha_to'][$i] = $sr;
-				$sr <<= 1;
-				if ($sr & (1 << $symsize)) {
-					$sr ^= $gfpoly;
-				}
-				$sr &= $rs['nn'];
+	/**
+	 * Append one bitstream to another
+	 * @param $bitstream (array) original bitstream
+	 * @param $append (array) bitstream to append
+	 * @return array bitstream
+	 */
+	 protected function appendBitstream($bitstream, $append) {
+		if ((!is_array($append)) OR (count($append) == 0)) {
+			return $bitstream;
+		}
+		if (count($bitstream) == 0) {
+			return $append;
+		}
+		return array_values(array_merge($bitstream, $append));
+	}
+
+	/**
+	 * Append one bitstream created from number to another
+	 * @param $bitstream (array) original bitstream
+	 * @param $bits (int) number of bits
+	 * @param $num (int) number
+	 * @return array bitstream
+	 */
+	 protected function appendNum($bitstream, $bits, $num) {
+		if ($bits == 0) {
+			return 0;
+		}
+		$b = $this->newFromNum($bits, $num);
+		return $this->appendBitstream($bitstream, $b);
+	}
+
+	/**
+	 * Append one bitstream created from bytes to another
+	 * @param $bitstream (array) original bitstream
+	 * @param $size (int) size
+	 * @param $data (array) bytes
+	 * @return array bitstream
+	 */
+	 protected function appendBytes($bitstream, $size, $data) {
+		if ($size == 0) {
+			return 0;
+		}
+		$b = $this->newFromBytes($size, $data);
+		return $this->appendBitstream($bitstream, $b);
+	}
+
+	/**
+	 * Convert bitstream to bytes
+	 * @param $bstream (array) original bitstream
+	 * @return array of bytes
+	 */
+	 protected function bitstreamToByte($bstream) {
+		if (is_null($bstream)) {
+	 		return null;
+	 	}
+		$size = count($bstream);
+		if ($size == 0) {
+			return array();
+		}
+		$data = array_fill(0, (int)(($size + 7) / 8), 0);
+		$bytes = (int)($size / 8);
+		$p = 0;
+		for ($i=0; $i<$bytes; $i++) {
+			$v = 0;
+			for ($j=0; $j<8; $j++) {
+				$v = $v << 1;
+				$v |= $bstream[$p];
+				$p++;
 			}
-			if ($sr != 1) {
-				// field generator polynomial is not primitive!
-				return NULL;
+			$data[$i] = $v;
+		}
+		if ($size & 7) {
+			$v = 0;
+			for ($j=0; $j<($size & 7); $j++) {
+				$v = $v << 1;
+				$v |= $bstream[$p];
+				$p++;
 			}
-			// Form RS code generator polynomial from its roots
-			$rs['genpoly'] = array_fill(0, ($nroots + 1), 0);
-			$rs['fcr'] = $fcr;
-			$rs['prim'] = $prim;
-			$rs['nroots'] = $nroots;
-			$rs['gfpoly'] = $gfpoly;
-			// Find prim-th root of 1, used in decoding
-			for ($iprim=1; ($iprim % $prim) != 0; $iprim += $rs['nn']) {
-				; // intentional empty-body loop!
-			}
-			$rs['iprim'] = (int)($iprim / $prim);
-			$rs['genpoly'][0] = 1;
-			for ($i = 0,$root=$fcr*$prim; $i < $nroots; $i++, $root += $prim) {
-				$rs['genpoly'][$i+1] = 1;
-				// Multiply rs->genpoly[] by  @**(root + x)
-				for ($j = $i; $j > 0; --$j) {
-					if ($rs['genpoly'][$j] != 0) {
-						$rs['genpoly'][$j] = $rs['genpoly'][$j-1] ^ $rs['alpha_to'][$this->modnn($rs, $rs['index_of'][$rs['genpoly'][$j]] + $root)];
-					} else {
-						$rs['genpoly'][$j] = $rs['genpoly'][$j-1];
-					}
-				}
-				// rs->genpoly[0] can never be zero
-				$rs['genpoly'][0] = $rs['alpha_to'][$this->modnn($rs, $rs['index_of'][$rs['genpoly'][0]] + $root)];
+			$data[$bytes] = $v;
+		}
+		return $data;
+	}
+
+	// - - - - - - - - - - - - - - - - - - - - - - - - -
+
+	// QRspec
+
+	/**
+	 * Replace a value on the array at the specified position
+	 * @param $srctab (array)
+	 * @param $x (int) X position
+	 * @param $y (int) Y position
+	 * @param $repl (string) value to replace
+	 * @param $replLen (int) length of the repl string
+	 * @return array srctab
+	 */
+	 protected function qrstrset($srctab, $x, $y, $repl, $replLen=false) {
+		$srctab[$y] = substr_replace($srctab[$y], ($replLen !== false)?substr($repl,0,$replLen):$repl, $x, ($replLen !== false)?$replLen:strlen($repl));
+		return $srctab;
+	}
+
+	/**
+	 * Return maximum data code length (bytes) for the version.
+	 * @param $version (int) version
+	 * @param $level (int) error correction level
+	 * @return int maximum size (bytes)
+	 */
+	protected function getDataLength($version, $level) {
+		return $this->capacity[$version][QRCAP_WORDS] - $this->capacity[$version][QRCAP_EC][$level];
+	}
+
+	/**
+	 * Return maximum error correction code length (bytes) for the version.
+	 * @param $version (int) version
+	 * @param $level (int) error correction level
+	 * @return int ECC size (bytes)
+	 */
+	protected function getECCLength($version, $level){
+		return $this->capacity[$version][QRCAP_EC][$level];
+	}
+
+	/**
+	 * Return the width of the symbol for the version.
+	 * @param $version (int) version
+	 * @return int width
+	 */
+	protected function getWidth($version) {
+		return $this->capacity[$version][QRCAP_WIDTH];
+	}
+
+	/**
+	 * Return the numer of remainder bits.
+	 * @param $version (int) version
+	 * @return int number of remainder bits
+	 */
+	protected function getRemainder($version) {
+		return $this->capacity[$version][QRCAP_REMINDER];
+	}
+
+	/**
+	 * Return a version number that satisfies the input code length.
+	 * @param $size (int) input code length (byte)
+	 * @param $level (int) error correction level
+	 * @return int version number
+	 */
+	protected function getMinimumVersion($size, $level) {
+		for ($i=1; $i <= QRSPEC_VERSION_MAX; ++$i) {
+			$words = $this->capacity[$i][QRCAP_WORDS] - $this->capacity[$i][QRCAP_EC][$level];
+			if ($words >= $size) {
+				return $i;
 			}
-			// convert rs->genpoly[] to index form for quicker encoding
-			for ($i = 0; $i <= $nroots; ++$i) {
-				$rs['genpoly'][$i] = $rs['index_of'][$rs['genpoly'][$i]];
+		}
+		return -1;
+	}
+
+	/**
+	 * Return the size of length indicator for the mode and version.
+	 * @param $mode (int) encoding mode
+	 * @param $version (int) version
+	 * @return int the size of the appropriate length indicator (bits).
+	 */
+	protected function lengthIndicator($mode, $version) {
+		if ($mode == QR_MODE_ST) {
+			return 0;
+		}
+		if ($version <= 9) {
+			$l = 0;
+		} elseif ($version <= 26) {
+			$l = 1;
+		} else {
+			$l = 2;
+		}
+		return $this->lengthTableBits[$mode][$l];
+	}
+
+	/**
+	 * Return the maximum length for the mode and version.
+	 * @param $mode (int) encoding mode
+	 * @param $version (int) version
+	 * @return int the maximum length (bytes)
+	 */
+	protected function maximumWords($mode, $version) {
+		if ($mode == QR_MODE_ST) {
+			return 3;
+		}
+		if ($version <= 9) {
+			$l = 0;
+		} else if ($version <= 26) {
+			$l = 1;
+		} else {
+			$l = 2;
+		}
+		$bits = $this->lengthTableBits[$mode][$l];
+		$words = (1 << $bits) - 1;
+		if ($mode == QR_MODE_KJ) {
+			$words *= 2; // the number of bytes is required
+		}
+		return $words;
+	}
+
+	/**
+	 * Return an array of ECC specification.
+	 * @param $version (int) version
+	 * @param $level (int) error correction level
+	 * @param $spec (array) an array of ECC specification contains as following: {# of type1 blocks, # of data code, # of ecc code, # of type2 blocks, # of data code}
+	 * @return array spec
+	 */
+	protected function getEccSpec($version, $level, $spec) {
+		if (count($spec) < 5) {
+			$spec = array(0, 0, 0, 0, 0);
+		}
+		$b1 = $this->eccTable[$version][$level][0];
+		$b2 = $this->eccTable[$version][$level][1];
+		$data = $this->getDataLength($version, $level);
+		$ecc = $this->getECCLength($version, $level);
+		if ($b2 == 0) {
+			$spec[0] = $b1;
+			$spec[1] = (int)($data / $b1);
+			$spec[2] = (int)($ecc / $b1);
+			$spec[3] = 0;
+			$spec[4] = 0;
+		} else {
+			$spec[0] = $b1;
+			$spec[1] = (int)($data / ($b1 + $b2));
+			$spec[2] = (int)($ecc  / ($b1 + $b2));
+			$spec[3] = $b2;
+			$spec[4] = $spec[1] + 1;
+		}
+		return $spec;
+	}
+
+	/**
+	 * Put an alignment marker.
+	 * @param $frame (array) frame
+	 * @param $ox (int) X center coordinate of the pattern
+	 * @param $oy (int) Y center coordinate of the pattern
+	 * @return array frame
+	 */
+	protected function putAlignmentMarker($frame, $ox, $oy) {
+		$finder = array(
+			"\xa1\xa1\xa1\xa1\xa1",
+			"\xa1\xa0\xa0\xa0\xa1",
+			"\xa1\xa0\xa1\xa0\xa1",
+			"\xa1\xa0\xa0\xa0\xa1",
+			"\xa1\xa1\xa1\xa1\xa1"
+			);
+		$yStart = $oy - 2;
+		$xStart = $ox - 2;
+		for ($y=0; $y < 5; $y++) {
+			$frame = $this->qrstrset($frame, $xStart, $yStart+$y, $finder[$y]);
+		}
+		return $frame;
+	}
+
+	/**
+	 * Put an alignment pattern.
+	 * @param $version (int) version
+	 * @param $frame (array) frame
+	 * @param $width (int) width
+	 * @return array frame
+	 */
+	 protected function putAlignmentPattern($version, $frame, $width) {
+		if ($version < 2) {
+			return $frame;
+		}
+		$d = $this->alignmentPattern[$version][1] - $this->alignmentPattern[$version][0];
+		if ($d < 0) {
+			$w = 2;
+		} else {
+			$w = (int)(($width - $this->alignmentPattern[$version][0]) / $d + 2);
+		}
+		if ($w * $w - 3 == 1) {
+			$x = $this->alignmentPattern[$version][0];
+			$y = $this->alignmentPattern[$version][0];
+			$frame = $this->putAlignmentMarker($frame, $x, $y);
+			return $frame;
+		}
+		$cx = $this->alignmentPattern[$version][0];
+		$wo = $w - 1;
+		for ($x=1; $x < $wo; ++$x) {
+			$frame = $this->putAlignmentMarker($frame, 6, $cx);
+			$frame = $this->putAlignmentMarker($frame, $cx,  6);
+			$cx += $d;
+		}
+		$cy = $this->alignmentPattern[$version][0];
+		for ($y=0; $y < $wo; ++$y) {
+			$cx = $this->alignmentPattern[$version][0];
+			for ($x=0; $x < $wo; ++$x) {
+				$frame = $this->putAlignmentMarker($frame, $cx, $cy);
+				$cx += $d;
+			}
+			$cy += $d;
+		}
+		return $frame;
+	}
+
+	/**
+	 * Return BCH encoded version information pattern that is used for the symbol of version 7 or greater. Use lower 18 bits.
+	 * @param $version (int) version
+	 * @return BCH encoded version information pattern
+	 */
+	protected function getVersionPattern($version) {
+		if (($version < 7) OR ($version > QRSPEC_VERSION_MAX)) {
+			return 0;
+		}
+		return $this->versionPattern[($version - 7)];
+	}
+
+	/**
+	 * Return BCH encoded format information pattern.
+	 * @param $mask (array)
+	 * @param $level (int) error correction level
+	 * @return BCH encoded format information pattern
+	 */
+	protected function getFormatInfo($mask, $level) {
+		if (($mask < 0) OR ($mask > 7)) {
+			return 0;
+		}
+		if (($level < 0) OR ($level > 3)) {
+			return 0;
+		}
+		return $this->formatInfo[$level][$mask];
+	}
+
+	/**
+	 * Put a finder pattern.
+	 * @param $frame (array) frame
+	 * @param $ox (int) X center coordinate of the pattern
+	 * @param $oy (int) Y center coordinate of the pattern
+	 * @return array frame
+	 */
+	protected function putFinderPattern($frame, $ox, $oy) {
+		$finder = array(
+		"\xc1\xc1\xc1\xc1\xc1\xc1\xc1",
+		"\xc1\xc0\xc0\xc0\xc0\xc0\xc1",
+		"\xc1\xc0\xc1\xc1\xc1\xc0\xc1",
+		"\xc1\xc0\xc1\xc1\xc1\xc0\xc1",
+		"\xc1\xc0\xc1\xc1\xc1\xc0\xc1",
+		"\xc1\xc0\xc0\xc0\xc0\xc0\xc1",
+		"\xc1\xc1\xc1\xc1\xc1\xc1\xc1"
+		);
+		for ($y=0; $y < 7; $y++) {
+			$frame = $this->qrstrset($frame, $ox, ($oy + $y), $finder[$y]);
+		}
+		return $frame;
+	}
+
+	/**
+	 * Return a copy of initialized frame.
+	 * @param $version (int) version
+	 * @return Array of unsigned char.
+	 */
+	protected function createFrame($version) {
+		$width = $this->capacity[$version][QRCAP_WIDTH];
+		$frameLine = str_repeat ("\0", $width);
+		$frame = array_fill(0, $width, $frameLine);
+		// Finder pattern
+		$frame = $this->putFinderPattern($frame, 0, 0);
+		$frame = $this->putFinderPattern($frame, $width - 7, 0);
+		$frame = $this->putFinderPattern($frame, 0, $width - 7);
+		// Separator
+		$yOffset = $width - 7;
+		for ($y=0; $y < 7; ++$y) {
+			$frame[$y][7] = "\xc0";
+			$frame[$y][$width - 8] = "\xc0";
+			$frame[$yOffset][7] = "\xc0";
+			++$yOffset;
+		}
+		$setPattern = str_repeat("\xc0", 8);
+		$frame = $this->qrstrset($frame, 0, 7, $setPattern);
+		$frame = $this->qrstrset($frame, $width-8, 7, $setPattern);
+		$frame = $this->qrstrset($frame, 0, $width - 8, $setPattern);
+		// Format info
+		$setPattern = str_repeat("\x84", 9);
+		$frame = $this->qrstrset($frame, 0, 8, $setPattern);
+		$frame = $this->qrstrset($frame, $width - 8, 8, $setPattern, 8);
+		$yOffset = $width - 8;
+		for ($y=0; $y < 8; ++$y,++$yOffset) {
+			$frame[$y][8] = "\x84";
+			$frame[$yOffset][8] = "\x84";
+		}
+		// Timing pattern
+		$wo = $width - 15;
+		for ($i=1; $i < $wo; ++$i) {
+			$frame[6][7+$i] = chr(0x90 | ($i & 1));
+			$frame[7+$i][6] = chr(0x90 | ($i & 1));
+		}
+		// Alignment pattern
+		$frame = $this->putAlignmentPattern($version, $frame, $width);
+		// Version information
+		if ($version >= 7) {
+			$vinf = $this->getVersionPattern($version);
+			$v = $vinf;
+			for ($x=0; $x<6; ++$x) {
+				for ($y=0; $y<3; ++$y) {
+					$frame[($width - 11)+$y][$x] = chr(0x88 | ($v & 1));
+					$v = $v >> 1;
+				}
+			}
+			$v = $vinf;
+			for ($y=0; $y<6; ++$y) {
+				for ($x=0; $x<3; ++$x) {
+					$frame[$y][$x+($width - 11)] = chr(0x88 | ($v & 1));
+					$v = $v >> 1;
+				}
+			}
+		}
+		// and a little bit...
+		$frame[$width - 8][8] = "\x81";
+		return $frame;
+	}
+
+	/**
+	 * Set new frame for the specified version.
+	 * @param $version (int) version
+	 * @return Array of unsigned char.
+	 */
+	protected function newFrame($version) {
+		if (($version < 1) OR ($version > QRSPEC_VERSION_MAX)) {
+			return NULL;
+		}
+		if (!isset($this->frames[$version])) {
+			$this->frames[$version] = $this->createFrame($version);
+		}
+		if (is_null($this->frames[$version])) {
+			return NULL;
+		}
+		return $this->frames[$version];
+	}
+
+	/**
+	 * Return block number 0
+	 * @param $spec (array)
+	 * @return int value
+	 */
+	 protected function rsBlockNum($spec) {
+		return ($spec[0] + $spec[3]);
+	}
+
+	/**
+	* Return block number 1
+	 * @param $spec (array)
+	 * @return int value
+	 */
+	 protected function rsBlockNum1($spec) {
+		return $spec[0];
+	}
+
+	/**
+	 * Return data codes 1
+	 * @param $spec (array)
+	 * @return int value
+	 */
+	 protected function rsDataCodes1($spec) {
+		return $spec[1];
+	}
+
+	/**
+	 * Return ecc codes 1
+	 * @param $spec (array)
+	 * @return int value
+	 */
+	 protected function rsEccCodes1($spec) {
+		return $spec[2];
+	}
+
+	/**
+	 * Return block number 2
+	 * @param $spec (array)
+	 * @return int value
+	 */
+	 protected function rsBlockNum2($spec) {
+		return $spec[3];
+	}
+
+	/**
+	 * Return data codes 2
+	 * @param $spec (array)
+	 * @return int value
+	 */
+	 protected function rsDataCodes2($spec) {
+		return $spec[4];
+	}
+
+	/**
+	 * Return ecc codes 2
+	 * @param $spec (array)
+	 * @return int value
+	 */
+	 protected function rsEccCodes2($spec) {
+		return $spec[2];
+	}
+
+	/**
+	 * Return data length
+	 * @param $spec (array)
+	 * @return int value
+	 */
+	 protected function rsDataLength($spec) {
+		return ($spec[0] * $spec[1]) + ($spec[3] * $spec[4]);
+	}
+
+	/**
+	 * Return ecc length
+	 * @param $spec (array)
+	 * @return int value
+	 */
+	 protected function rsEccLength($spec) {
+		return ($spec[0] + $spec[3]) * $spec[2];
+	}
+
+	// - - - - - - - - - - - - - - - - - - - - - - - - -
+
+	// QRrs
+
+	/**
+	 * Initialize a Reed-Solomon codec and add it to existing rsitems
+	 * @param $symsize (int) symbol size, bits
+	 * @param $gfpoly (int)  Field generator polynomial coefficients
+	 * @param $fcr (int)  first root of RS code generator polynomial, index form
+	 * @param $prim (int)  primitive element to generate polynomial roots
+	 * @param $nroots (int) RS code generator polynomial degree (number of roots)
+	 * @param $pad (int)  padding bytes at front of shortened block
+	 * @return array Array of RS values:<ul><li>mm = Bits per symbol;</li><li>nn = Symbols per block;</li><li>alpha_to = log lookup table array;</li><li>index_of = Antilog lookup table array;</li><li>genpoly = Generator polynomial array;</li><li>nroots = Number of generator;</li><li>roots = number of parity symbols;</li><li>fcr = First consecutive root, index form;</li><li>prim = Primitive element, index form;</li><li>iprim = prim-th root of 1, index form;</li><li>pad = Padding bytes in shortened block;</li><li>gfpoly</ul>.
+	 */
+	 protected function init_rs($symsize, $gfpoly, $fcr, $prim, $nroots, $pad) {
+		foreach ($this->rsitems as $rs) {
+			if (($rs['pad'] != $pad) OR ($rs['nroots'] != $nroots) OR ($rs['mm'] != $symsize)
+				OR ($rs['gfpoly'] != $gfpoly) OR ($rs['fcr'] != $fcr) OR ($rs['prim'] != $prim)) {
+				continue;
 			}
 			return $rs;
 		}
+		$rs = $this->init_rs_char($symsize, $gfpoly, $fcr, $prim, $nroots, $pad);
+		array_unshift($this->rsitems, $rs);
+		return $rs;
+	}
 
-		/**
-		 * Encode a Reed-Solomon codec and returns the parity array
-		 * @param array $rs RS values
-		 * @param array $data data
-		 * @param array $parity parity
-		 * @return parity array
-		 */
-		 protected function encode_rs_char($rs, $data, $parity) {
-			$MM       =& $rs['mm']; // bits per symbol
-			$NN       =& $rs['nn']; // the total number of symbols in a RS block
-			$ALPHA_TO =& $rs['alpha_to']; // the address of an array of NN elements to convert Galois field elements in index (log) form to polynomial form
-			$INDEX_OF =& $rs['index_of']; // the address of an array of NN elements to convert Galois field elements in polynomial form to index (log) form
-			$GENPOLY  =& $rs['genpoly']; // an array of NROOTS+1 elements containing the generator polynomial in index form
-			$NROOTS   =& $rs['nroots']; // the number of roots in the RS code generator polynomial, which is the same as the number of parity symbols in a block
-			$FCR      =& $rs['fcr']; // first consecutive root, index form
-			$PRIM     =& $rs['prim']; // primitive element, index form
-			$IPRIM    =& $rs['iprim']; // prim-th root of 1, index form
-			$PAD      =& $rs['pad']; // the number of pad symbols in a block
-			$A0       =& $NN;
-			$parity = array_fill(0, $NROOTS, 0);
-			for ($i=0; $i < ($NN - $NROOTS - $PAD); $i++) {
-				$feedback = $INDEX_OF[$data[$i] ^ $parity[0]];
-				if ($feedback != $A0) {
-					// feedback term is non-zero
-					// This line is unnecessary when GENPOLY[NROOTS] is unity, as it must
-					// always be for the polynomials constructed by init_rs()
-					$feedback = $this->modnn($rs, $NN - $GENPOLY[$NROOTS] + $feedback);
-					for ($j=1; $j < $NROOTS; ++$j) {
-					$parity[$j] ^= $ALPHA_TO[$this->modnn($rs, $feedback + $GENPOLY[($NROOTS - $j)])];
-					}
-				}
-				// Shift
-				array_shift($parity);
-				if ($feedback != $A0) {
-					array_push($parity, $ALPHA_TO[$this->modnn($rs, $feedback + $GENPOLY[0])]);
+	// - - - - - - - - - - - - - - - - - - - - - - - - -
+
+	// QRrsItem
+
+	/**
+	 * modnn
+	 * @param $rs (array) RS values
+	 * @param $x (int) X position
+	 * @return int X osition
+	 */
+	 protected function modnn($rs, $x) {
+		while ($x >= $rs['nn']) {
+			$x -= $rs['nn'];
+			$x = ($x >> $rs['mm']) + ($x & $rs['nn']);
+		}
+		return $x;
+	}
+
+	/**
+	 * Initialize a Reed-Solomon codec and returns an array of values.
+	 * @param $symsize (int) symbol size, bits
+	 * @param $gfpoly (int)  Field generator polynomial coefficients
+	 * @param $fcr (int)  first root of RS code generator polynomial, index form
+	 * @param $prim (int)  primitive element to generate polynomial roots
+	 * @param $nroots (int) RS code generator polynomial degree (number of roots)
+	 * @param $pad (int)  padding bytes at front of shortened block
+	 * @return array Array of RS values:<ul><li>mm = Bits per symbol;</li><li>nn = Symbols per block;</li><li>alpha_to = log lookup table array;</li><li>index_of = Antilog lookup table array;</li><li>genpoly = Generator polynomial array;</li><li>nroots = Number of generator;</li><li>roots = number of parity symbols;</li><li>fcr = First consecutive root, index form;</li><li>prim = Primitive element, index form;</li><li>iprim = prim-th root of 1, index form;</li><li>pad = Padding bytes in shortened block;</li><li>gfpoly</ul>.
+	 */
+	protected function init_rs_char($symsize, $gfpoly, $fcr, $prim, $nroots, $pad) {
+		// Based on Reed solomon encoder by Phil Karn, KA9Q (GNU-LGPLv2)
+		$rs = null;
+		// Check parameter ranges
+		if (($symsize < 0) OR ($symsize > 8)) {
+			return $rs;
+		}
+		if (($fcr < 0) OR ($fcr >= (1<<$symsize))) {
+			return $rs;
+		}
+		if (($prim <= 0) OR ($prim >= (1<<$symsize))) {
+			return $rs;
+		}
+		if (($nroots < 0) OR ($nroots >= (1<<$symsize))) {
+			return $rs;
+		}
+		if (($pad < 0) OR ($pad >= ((1<<$symsize) -1 - $nroots))) {
+			return $rs;
+		}
+		$rs = array();
+		$rs['mm'] = $symsize;
+		$rs['nn'] = (1 << $symsize) - 1;
+		$rs['pad'] = $pad;
+		$rs['alpha_to'] = array_fill(0, ($rs['nn'] + 1), 0);
+		$rs['index_of'] = array_fill(0, ($rs['nn'] + 1), 0);
+		// PHP style macro replacement ;)
+		$NN =& $rs['nn'];
+		$A0 =& $NN;
+		// Generate Galois field lookup tables
+		$rs['index_of'][0] = $A0; // log(zero) = -inf
+		$rs['alpha_to'][$A0] = 0; // alpha**-inf = 0
+		$sr = 1;
+		for ($i=0; $i<$rs['nn']; ++$i) {
+			$rs['index_of'][$sr] = $i;
+			$rs['alpha_to'][$i] = $sr;
+			$sr <<= 1;
+			if ($sr & (1 << $symsize)) {
+				$sr ^= $gfpoly;
+			}
+			$sr &= $rs['nn'];
+		}
+		if ($sr != 1) {
+			// field generator polynomial is not primitive!
+			return NULL;
+		}
+		// Form RS code generator polynomial from its roots
+		$rs['genpoly'] = array_fill(0, ($nroots + 1), 0);
+		$rs['fcr'] = $fcr;
+		$rs['prim'] = $prim;
+		$rs['nroots'] = $nroots;
+		$rs['gfpoly'] = $gfpoly;
+		// Find prim-th root of 1, used in decoding
+		for ($iprim=1; ($iprim % $prim) != 0; $iprim += $rs['nn']) {
+			; // intentional empty-body loop!
+		}
+		$rs['iprim'] = (int)($iprim / $prim);
+		$rs['genpoly'][0] = 1;
+		for ($i = 0,$root=$fcr*$prim; $i < $nroots; $i++, $root += $prim) {
+			$rs['genpoly'][$i+1] = 1;
+			// Multiply rs->genpoly[] by  @**(root + x)
+			for ($j = $i; $j > 0; --$j) {
+				if ($rs['genpoly'][$j] != 0) {
+					$rs['genpoly'][$j] = $rs['genpoly'][$j-1] ^ $rs['alpha_to'][$this->modnn($rs, $rs['index_of'][$rs['genpoly'][$j]] + $root)];
 				} else {
-					array_push($parity, 0);
+					$rs['genpoly'][$j] = $rs['genpoly'][$j-1];
 				}
 			}
-			return $parity;
+			// rs->genpoly[0] can never be zero
+			$rs['genpoly'][0] = $rs['alpha_to'][$this->modnn($rs, $rs['index_of'][$rs['genpoly'][0]] + $root)];
 		}
+		// convert rs->genpoly[] to index form for quicker encoding
+		for ($i = 0; $i <= $nroots; ++$i) {
+			$rs['genpoly'][$i] = $rs['index_of'][$rs['genpoly'][$i]];
+		}
+		return $rs;
+	}
 
-	} // end QRcode class
+	/**
+	 * Encode a Reed-Solomon codec and returns the parity array
+	 * @param $rs (array) RS values
+	 * @param $data (array) data
+	 * @param $parity (array) parity
+	 * @return parity array
+	 */
+	 protected function encode_rs_char($rs, $data, $parity) {
+		$MM       =& $rs['mm']; // bits per symbol
+		$NN       =& $rs['nn']; // the total number of symbols in a RS block
+		$ALPHA_TO =& $rs['alpha_to']; // the address of an array of NN elements to convert Galois field elements in index (log) form to polynomial form
+		$INDEX_OF =& $rs['index_of']; // the address of an array of NN elements to convert Galois field elements in polynomial form to index (log) form
+		$GENPOLY  =& $rs['genpoly']; // an array of NROOTS+1 elements containing the generator polynomial in index form
+		$NROOTS   =& $rs['nroots']; // the number of roots in the RS code generator polynomial, which is the same as the number of parity symbols in a block
+		$FCR      =& $rs['fcr']; // first consecutive root, index form
+		$PRIM     =& $rs['prim']; // primitive element, index form
+		$IPRIM    =& $rs['iprim']; // prim-th root of 1, index form
+		$PAD      =& $rs['pad']; // the number of pad symbols in a block
+		$A0       =& $NN;
+		$parity = array_fill(0, $NROOTS, 0);
+		for ($i=0; $i < ($NN - $NROOTS - $PAD); $i++) {
+			$feedback = $INDEX_OF[$data[$i] ^ $parity[0]];
+			if ($feedback != $A0) {
+				// feedback term is non-zero
+				// This line is unnecessary when GENPOLY[NROOTS] is unity, as it must
+				// always be for the polynomials constructed by init_rs()
+				$feedback = $this->modnn($rs, $NN - $GENPOLY[$NROOTS] + $feedback);
+				for ($j=1; $j < $NROOTS; ++$j) {
+				$parity[$j] ^= $ALPHA_TO[$this->modnn($rs, $feedback + $GENPOLY[($NROOTS - $j)])];
+				}
+			}
+			// Shift
+			array_shift($parity);
+			if ($feedback != $A0) {
+				array_push($parity, $ALPHA_TO[$this->modnn($rs, $feedback + $GENPOLY[0])]);
+			} else {
+				array_push($parity, 0);
+			}
+		}
+		return $parity;
+	}
 
-} // END OF "class_exists QRcode"
-?>
+} // end QRcode class
+
+//============================================================+
+// END OF FILE
+//============================================================+
diff --git a/libs/tcpdf/spotcolors.php b/libs/tcpdf/spotcolors.php
new file mode 100644
index 0000000000000000000000000000000000000000..c7e1671123a714b317493304e98d404975256201
--- /dev/null
+++ b/libs/tcpdf/spotcolors.php
@@ -0,0 +1,57 @@
+<?php
+//============================================================+
+// File name   : spotcolors.php
+// Version     : 1.0.000
+// Begin       : 2010-11-11
+// Last Update : 2010-12-16
+// 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)
+// -------------------------------------------------------------------
+// Copyright (C) 2002-2010  Nicola Asuni - Tecnick.com S.r.l.
+//
+// This file is part of TCPDF software library.
+//
+// TCPDF is free software: you can redistribute it and/or modify it
+// under the terms of the GNU Lesser General Public License as
+// published by the Free Software Foundation, either version 3 of the
+// License, or (at your option) any later version.
+//
+// TCPDF is distributed in the hope that it will be useful, but
+// WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+// See the GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with TCPDF.  If not, see <http://www.gnu.org/licenses/>.
+//
+// See LICENSE.TXT file for more information.
+// -------------------------------------------------------------------
+//
+// Description : Array of Spot Colors for TCPDF library
+//
+//============================================================+
+
+/**
+ * @file
+ * Arrays of Spot Colors for TCPDF library
+ * @author Nicola Asuni
+ * @package com.tecnick.tcpdf
+ * @since 5.9.012 (2010-11-11)
+*/
+
+/**
+ * Array of Spot colors (C,M,Y,K,name)
+ * Color keys must be in lowercase and without spaces.
+ * Add here your spot colors ...
+ */
+$spotcolor = array (
+	// these are just examples, add your own spot colors ...
+	'pantone116c' => array(0, 20, 100, 0, 'Pantone 116 C'),
+	'pantone288c' => array(100, 60, 10, 5, 'Pantone 288 C'),
+	'hks16k' => array(30, 100, 90, 10, 'HKS 16 K'),
+	// ...
+);
+
+//============================================================+
+// END OF FILE
+//============================================================+
diff --git a/libs/tcpdf/tcpdf.php b/libs/tcpdf/tcpdf.php
index a42401c63291219e6d15ddbca88f45554ad55d24..cd42b20d411b4d40d7482591748eac512430a188 100644
--- a/libs/tcpdf/tcpdf.php
+++ b/libs/tcpdf/tcpdf.php
@@ -1,11 +1,11 @@
 <?php
 //============================================================+
 // File name   : tcpdf.php
-// Version     : 5.5.009
+// Version     : 5.9.034
 // Begin       : 2002-08-03
-// Last Update : 2010-07-05
+// Last Update : 2010-12-19
 // 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     : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3 + YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE GENERATED PDF DOCUMENTS.
 // -------------------------------------------------------------------
 // Copyright (C) 2002-2010  Nicola Asuni - Tecnick.com S.r.l.
 //
@@ -14,15 +14,18 @@
 // TCPDF is free software: you can redistribute it and/or modify it
 // under the terms of the GNU Lesser General Public License as
 // 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. Additionally,
+// YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE
+// GENERATED PDF DOCUMENTS.
 //
 // TCPDF is distributed in the hope that it will be useful, but
 // WITHOUT ANY WARRANTY; without even the implied warranty of
 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 // See the GNU Lesser General Public License for more details.
 //
-// You should have received a copy of the GNU Lesser General Public License
-// along with TCPDF.  If not, see <http://www.gnu.org/licenses/>.
+// You should have received a copy of the License
+// along with TCPDF. If not, see
+// <http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT>.
 //
 // See LICENSE.TXT file for more information.
 // -------------------------------------------------------------------
@@ -33,7 +36,8 @@
 // NOTE:
 //   This class was originally derived in 2002 from the Public
 //   Domain FPDF class by Olivier Plathey (http://www.fpdf.org),
-//   but now is almost entirely rewritten.
+//   but now is almost entirely rewritten and contains thousands of
+//   new lines of code and hundreds new features.
 //
 // Main features:
 //  * no external libraries are required for the basic functions;
@@ -47,17 +51,20 @@
 //  * 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;
 //  * automatic page header and footer management;
-//  * document encryption and digital signature certifications;
+//  * document encryption up to 256 bit and digital signature certifications;
 //  * transactions to UNDO commands;
 //  * PDF annotations, including links, text and file attachments;
 //  * text rendering modes (fill, stroke and clipping);
 //  * multiple columns mode;
+//  * no-write page regions;
 //  * bookmarks and table of content;
 //  * text hyphenation;
+//  * text stretching and spacing (tracking/kerning);
 //  * automatic page break, line break and text alignments including justification;
 //  * automatic page numbering and page groups;
 //  * move and delete pages;
 //  * page compression (requires php-zlib extension);
+//  * XOBject Templates;
 //
 // -----------------------------------------------------------
 // THANKS TO:
@@ -69,7 +76,7 @@
 // dullus for text Justification.
 // Bob Vincent (pillarsdotnet@users.sourceforge.net) for <li> value attribute.
 // Patrick Benny for text stretch suggestion on Cell().
-// Johannes G�ntert for JavaScript support.
+// Johannes Güntert for JavaScript support.
 // Denis Van Nuffelen for Dynamic Form.
 // Jacek Czekaj for multibyte justification
 // Anthony Ferrara for the reintroduction of legacy image methods.
@@ -80,7 +87,7 @@
 // Mohamad Ali Golkar, Saleh AlMatrafe, Charles Abbott for Arabic and Persian support.
 // Moritz Wagner and Andreas Wurmser for graphic functions.
 // Andrew Whitehead for core fonts support.
-// Esteban Jo�l Mar�n for OpenType font conversion.
+// Esteban Joël Marín for OpenType font conversion.
 // Teus Hagen for several suggestions and fixes.
 // Yukihiro Nakadaira for CID-0 CJK fonts fixes.
 // Kosmas Papachristos for some CSS improvements.
@@ -88,10 +95,12 @@
 // Won Kyu Park for several suggestions, fixes and patches.
 // Dominik Dzienia for QR-code support.
 // Laurent Minguet for some suggestions.
+// Christian Deligant for some suggestions and fixes.
 // Anyone that has reported a bug or sent a suggestion.
 //============================================================+
 
 /**
+ * @file
  * This is a PHP class for generating PDF documents without requiring external extensions.<br>
  * TCPDF project (http://www.tcpdf.org) was originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.<br>
  * <h3>TCPDF main features are:</h3>
@@ -107,5462 +116,6161 @@
  * <li>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;</li>
  * <li>Grayscale, RGB, CMYK, Spot Colors and Transparencies;</li>
  * <li>automatic page header and footer management;</li>
- * <li>document encryption and digital signature certifications;</li>
+ * <li>document encryption up to 256 bit and digital signature certifications;</li>
  * <li>transactions to UNDO commands;</li>
  * <li>PDF annotations, including links, text and file attachments;</li>
  * <li>text rendering modes (fill, stroke and clipping);</li>
  * <li>multiple columns mode;</li>
+ * <li>no-write page regions;</li>
  * <li>bookmarks and table of content;</li>
  * <li>text hyphenation;</li>
+ * <li>text stretching and spacing (tracking/kerning);</li>
  * <li>automatic page break, line break and text alignments including justification;</li>
  * <li>automatic page numbering and page groups;</li>
  * <li>move and delete pages;</li>
  * <li>page compression (requires php-zlib extension);</li>
+ * <li>XOBject Templates;</li>
  * </ul>
  * Tools to encode your unicode fonts are on fonts/utils directory.</p>
  * @package com.tecnick.tcpdf
- * @abstract Class for generating PDF files on-the-fly without requiring external extensions.
  * @author Nicola Asuni
- * @copyright 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
- * @link http://www.tcpdf.org
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
- * @version 5.5.009
+ * @version 5.9.034
  */
 
+// Main configuration file. Define the K_TCPDF_EXTERNAL_CONFIG constant to skip this file.
+require_once(dirname(__FILE__).'/config/tcpdf_config.php');
+
 /**
- * main configuration file
+ * @class TCPDF
+ * PHP class for generating PDF documents without requiring external extensions.
+ * TCPDF project (http://www.tcpdf.org) has been originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.<br>
+ * @package com.tecnick.tcpdf
+ * @brief PHP class for generating PDF documents without requiring external extensions.
+ * @version 5.9.034
+ * @author Nicola Asuni - info@tecnick.com
  */
-require_once(dirname(__FILE__).'/config/tcpdf_config.php');
+class TCPDF {
+
+	// private properties
+
+	/**
+	 * Current TCPDF version.
+	 * @private
+	 */
+	private $tcpdf_version = '5.9.034';
+
+	// Protected properties
+
+	/**
+	 * Current page number.
+	 * @protected
+	 */
+	protected $page;
+
+	/**
+	 * Current object number.
+	 * @protected
+	 */
+	protected $n;
+
+	/**
+	 * Array of object offsets.
+	 * @protected
+	 */
+	protected $offsets;
+
+	/**
+	 * Buffer holding in-memory PDF.
+	 * @protected
+	 */
+	protected $buffer;
+
+	/**
+	 * Array containing pages.
+	 * @protected
+	 */
+	protected $pages = array();
+
+	/**
+	 * Current document state.
+	 * @protected
+	 */
+	protected $state;
+
+	/**
+	 * Compression flag.
+	 * @protected
+	 */
+	protected $compress;
+
+	/**
+	 * Current page orientation (P = Portrait, L = Landscape).
+	 * @protected
+	 */
+	protected $CurOrientation;
+
+	/**
+	 * Page dimensions.
+	 * @protected
+	 */
+	protected $pagedim = array();
+
+	/**
+	 * Scale factor (number of points in user unit).
+	 * @protected
+	 */
+	protected $k;
+
+	/**
+	 * Width of page format in points.
+	 * @protected
+	 */
+	protected $fwPt;
+
+	/**
+	 * Height of page format in points.
+	 * @protected
+	 */
+	protected $fhPt;
+
+	/**
+	 * Current width of page in points.
+	 * @protected
+	 */
+	protected $wPt;
+
+	/**
+	 * Current height of page in points.
+	 * @protected
+	 */
+	protected $hPt;
+
+	/**
+	 * Current width of page in user unit.
+	 * @protected
+	 */
+	protected $w;
+
+	/**
+	 * Current height of page in user unit.
+	 * @protected
+	 */
+	protected $h;
+
+	/**
+	 * Left margin.
+	 * @protected
+	 */
+	protected $lMargin;
+
+	/**
+	 * Top margin.
+	 * @protected
+	 */
+	protected $tMargin;
+
+	/**
+	 * Right margin.
+	 * @protected
+	 */
+	protected $rMargin;
+
+	/**
+	 * Page break margin.
+	 * @protected
+	 */
+	protected $bMargin;
+
+	/**
+	 * Array of cell internal paddings ('T' => top, 'R' => right, 'B' => bottom, 'L' => left).
+	 * @since 5.9.000 (2010-10-03)
+	 * @protected
+	 */
+	protected $cell_padding = array('T' => 0, 'R' => 0, 'B' => 0, 'L' => 0);
+
+	/**
+	 * Array of cell margins ('T' => top, 'R' => right, 'B' => bottom, 'L' => left).
+	 * @since 5.9.000 (2010-10-04)
+	 * @protected
+	 */
+	protected $cell_margin = array('T' => 0, 'R' => 0, 'B' => 0, 'L' => 0);
+
+	/**
+	 * Current horizontal position in user unit for cell positioning.
+	 * @protected
+	 */
+	protected $x;
+
+	/**
+	 * Current vertical position in user unit for cell positioning.
+	 * @protected
+	 */
+	protected $y;
+
+	/**
+	 * Height of last cell printed.
+	 * @protected
+	 */
+	protected $lasth;
+
+	/**
+	 * Line width in user unit.
+	 * @protected
+	 */
+	protected $LineWidth;
+
+	/**
+	 * Array of standard font names.
+	 * @protected
+	 */
+	protected $CoreFonts;
+
+	/**
+	 * Array of used fonts.
+	 * @protected
+	 */
+	protected $fonts = array();
+
+	/**
+	 * Array of font files.
+	 * @protected
+	 */
+	protected $FontFiles = array();
+
+	/**
+	 * Array of encoding differences.
+	 * @protected
+	 */
+	protected $diffs = array();
+
+	/**
+	 * Array of used images.
+	 * @protected
+	 */
+	protected $images = array();
+
+	/**
+	 * Array of Annotations in pages.
+	 * @protected
+	 */
+	protected $PageAnnots = array();
+
+	/**
+	 * Array of internal links.
+	 * @protected
+	 */
+	protected $links = array();
+
+	/**
+	 * Current font family.
+	 * @protected
+	 */
+	protected $FontFamily;
+
+	/**
+	 * Current font style.
+	 * @protected
+	 */
+	protected $FontStyle;
+
+	/**
+	 * Current font ascent (distance between font top and baseline).
+	 * @protected
+	 * @since 2.8.000 (2007-03-29)
+	 */
+	protected $FontAscent;
+
+	/**
+	 * Current font descent (distance between font bottom and baseline).
+	 * @protected
+	 * @since 2.8.000 (2007-03-29)
+	 */
+	protected $FontDescent;
+
+	/**
+	 * Underlining flag.
+	 * @protected
+	 */
+	protected $underline;
+
+	/**
+	 * Overlining flag.
+	 * @protected
+	 */
+	protected $overline;
+
+	/**
+	 * Current font info.
+	 * @protected
+	 */
+	protected $CurrentFont;
+
+	/**
+	 * Current font size in points.
+	 * @protected
+	 */
+	protected $FontSizePt;
+
+	/**
+	 * Current font size in user unit.
+	 * @protected
+	 */
+	protected $FontSize;
+
+	/**
+	 * Commands for drawing color.
+	 * @protected
+	 */
+	protected $DrawColor;
+
+	/**
+	 * Commands for filling color.
+	 * @protected
+	 */
+	protected $FillColor;
+
+	/**
+	 * Commands for text color.
+	 * @protected
+	 */
+	protected $TextColor;
+
+	/**
+	 * Indicates whether fill and text colors are different.
+	 * @protected
+	 */
+	protected $ColorFlag;
+
+	/**
+	 * Automatic page breaking.
+	 * @protected
+	 */
+	protected $AutoPageBreak;
+
+	/**
+	 * Threshold used to trigger page breaks.
+	 * @protected
+	 */
+	protected $PageBreakTrigger;
+
+	/**
+	 * Flag set when processing footer.
+	 * @protected
+	 */
+	protected $InFooter = false;
+
+	/**
+	 * Zoom display mode.
+	 * @protected
+	 */
+	protected $ZoomMode;
+
+	/**
+	 * Layout display mode.
+	 * @protected
+	 */
+	protected $LayoutMode;
+
+	/**
+	 * If true set the document information dictionary in Unicode.
+	 * @protected
+	 */
+	protected $docinfounicode = true;
+
+	/**
+	 * Document title.
+	 * @protected
+	 */
+	protected $title = '';
+
+	/**
+	 * Document subject.
+	 * @protected
+	 */
+	protected $subject = '';
+
+	/**
+	 * Document author.
+	 * @protected
+	 */
+	protected $author = '';
+
+	/**
+	 * Document keywords.
+	 * @protected
+	 */
+	protected $keywords = '';
+
+	/**
+	 * Document creator.
+	 * @protected
+	 */
+	protected $creator = '';
+
+	/**
+	 * String alias for total number of pages.
+	 * @protected
+	 */
+	protected $AliasNbPages = '{nb}';
+
+	/**
+	 * String alias for page number.
+	 * @protected
+	 */
+	protected $AliasNumPage = '{pnb}';
+
+	/**
+	 * The right-bottom (or left-bottom for RTL) corner X coordinate of last inserted image.
+	 * @since 2002-07-31
+	 * @author Nicola Asuni
+	 * @protected
+	 */
+	protected $img_rb_x;
+
+	/**
+	 * The right-bottom corner Y coordinate of last inserted image.
+	 * @since 2002-07-31
+	 * @author Nicola Asuni
+	 * @protected
+	 */
+	protected $img_rb_y;
+
+	/**
+	 * Adjusting factor to convert pixels to user units.
+	 * @since 2004-06-14
+	 * @author Nicola Asuni
+	 * @protected
+	 */
+	protected $imgscale = 1;
+
+	/**
+	 * Boolean flag set to true when the input text is unicode (require unicode fonts).
+	 * @since 2005-01-02
+	 * @author Nicola Asuni
+	 * @protected
+	 */
+	protected $isunicode = false;
+
+	/**
+	 * Object containing unicode data.
+	 * @since 5.9.004 (2010-10-18)
+	 * @author Nicola Asuni
+	 * @protected
+	 */
+	protected $unicode;
+
+	/**
+	 * PDF version.
+	 * @since 1.5.3
+	 * @protected
+	 */
+	protected $PDFVersion = '1.7';
+
+	/**
+	 * Minimum distance between header and top page margin.
+	 * @protected
+	 */
+	protected $header_margin;
+
+	/**
+	 * Minimum distance between footer and bottom page margin.
+	 * @protected
+	 */
+	protected $footer_margin;
+
+	/**
+	 * Original left margin value.
+	 * @protected
+	 * @since 1.53.0.TC013
+	 */
+	protected $original_lMargin;
+
+	/**
+	 * Original right margin value.
+	 * @protected
+	 * @since 1.53.0.TC013
+	 */
+	protected $original_rMargin;
+
+	/**
+	 * Default font used on page header.
+	 * @protected
+	 */
+	protected $header_font;
+
+	/**
+	 * Default font used on page footer.
+	 * @protected
+	 */
+	protected $footer_font;
+
+	/**
+	 * Language templates.
+	 * @protected
+	 */
+	protected $l;
+
+	/**
+	 * Barcode to print on page footer (only if set).
+	 * @protected
+	 */
+	protected $barcode = false;
+
+	/**
+	 * Boolean flag to print/hide page header.
+	 * @protected
+	 */
+	protected $print_header = true;
+
+	/**
+	 * Boolean flag to print/hide page footer.
+	 * @protected
+	 */
+	protected $print_footer = true;
+
+	/**
+	 * Header image logo.
+	 * @protected
+	 */
+	protected $header_logo = '';
+
+	/**
+	 * Width of header image logo in user units.
+	 * @protected
+	 */
+	protected $header_logo_width = 30;
+
+	/**
+	 * Title to be printed on default page header.
+	 * @protected
+	 */
+	protected $header_title = '';
+
+	/**
+	 * String to pring on page header after title.
+	 * @protected
+	 */
+	protected $header_string = '';
+
+	/**
+	 * Default number of columns for html table.
+	 * @protected
+	 */
+	protected $default_table_columns = 4;
+
+	// variables for html parser
+
+	/**
+	 * HTML PARSER: array to store current link and rendering styles.
+	 * @protected
+	 */
+	protected $HREF = array();
+
+	/**
+	 * List of available fonts on filesystem.
+	 * @protected
+	 */
+	protected $fontlist = array();
+
+	/**
+	 * Current foreground color.
+	 * @protected
+	 */
+	protected $fgcolor;
+
+	/**
+	 * HTML PARSER: array of boolean values, true in case of ordered list (OL), false otherwise.
+	 * @protected
+	 */
+	protected $listordered = array();
+
+	/**
+	 * HTML PARSER: array count list items on nested lists.
+	 * @protected
+	 */
+	protected $listcount = array();
+
+	/**
+	 * HTML PARSER: current list nesting level.
+	 * @protected
+	 */
+	protected $listnum = 0;
+
+	/**
+	 * HTML PARSER: indent amount for lists.
+	 * @protected
+	 */
+	protected $listindent = 0;
+
+	/**
+	 * HTML PARSER: current list indententation level.
+	 * @protected
+	 */
+	protected $listindentlevel = 0;
+
+	/**
+	 * Current background color.
+	 * @protected
+	 */
+	protected $bgcolor;
+
+	/**
+	 * Temporary font size in points.
+	 * @protected
+	 */
+	protected $tempfontsize = 10;
+
+	/**
+	 * Spacer string for LI tags.
+	 * @protected
+	 */
+	protected $lispacer = '';
+
+	/**
+	 * Default encoding.
+	 * @protected
+	 * @since 1.53.0.TC010
+	 */
+	protected $encoding = 'UTF-8';
+
+	/**
+	 * PHP internal encoding.
+	 * @protected
+	 * @since 1.53.0.TC016
+	 */
+	protected $internal_encoding;
+
+	/**
+	 * Boolean flag to indicate if the document language is Right-To-Left.
+	 * @protected
+	 * @since 2.0.000
+	 */
+	protected $rtl = false;
+
+	/**
+	 * Boolean flag used to force RTL or LTR string direction.
+	 * @protected
+	 * @since 2.0.000
+	 */
+	protected $tmprtl = false;
+
+	// --- Variables used for document encryption:
+
+	/**
+	 * IBoolean flag indicating whether document is protected.
+	 * @protected
+	 * @since 2.0.000 (2008-01-02)
+	 */
+	protected $encrypted;
+
+	/**
+	 * Array containing encryption settings.
+	 * @protected
+	 * @since 5.0.005 (2010-05-11)
+	 */
+	protected $encryptdata = array();
+
+	/**
+	 * Last RC4 key encrypted (cached for optimisation).
+	 * @protected
+	 * @since 2.0.000 (2008-01-02)
+	 */
+	protected $last_enc_key;
+
+	/**
+	 * Last RC4 computed key.
+	 * @protected
+	 * @since 2.0.000 (2008-01-02)
+	 */
+	protected $last_enc_key_c;
+
+	/**
+	 * Encryption padding string.
+	 * @protected
+	 */
+	protected $enc_padding = "\x28\xBF\x4E\x5E\x4E\x75\x8A\x41\x64\x00\x4E\x56\xFF\xFA\x01\x08\x2E\x2E\x00\xB6\xD0\x68\x3E\x80\x2F\x0C\xA9\xFE\x64\x53\x69\x7A";
+
+	/**
+	 * File ID (used on document trailer).
+	 * @protected
+	 * @since 5.0.005 (2010-05-12)
+	 */
+	protected $file_id;
+
+	// --- bookmark ---
+
+	/**
+	 * Outlines for bookmark.
+	 * @protected
+	 * @since 2.1.002 (2008-02-12)
+	 */
+	protected $outlines = array();
+
+	/**
+	 * Outline root for bookmark.
+	 * @protected
+	 * @since 2.1.002 (2008-02-12)
+	 */
+	protected $OutlineRoot;
+
+	// --- javascript and form ---
+
+	/**
+	 * Javascript code.
+	 * @protected
+	 * @since 2.1.002 (2008-02-12)
+	 */
+	protected $javascript = '';
+
+	/**
+	 * Javascript counter.
+	 * @protected
+	 * @since 2.1.002 (2008-02-12)
+	 */
+	protected $n_js;
+
+	/**
+	 * line trough state
+	 * @protected
+	 * @since 2.8.000 (2008-03-19)
+	 */
+	protected $linethrough;
+
+	/**
+	 * Array with additional document-wide usage rights for the document.
+	 * @protected
+	 * @since 5.8.014 (2010-08-23)
+	 */
+	protected $ur = array();
+
+	/**
+	 * DPI (Dot Per Inch) Document Resolution (do not change).
+	 * @protected
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	protected $dpi = 72;
+
+	/**
+	 * Array of page numbers were a new page group was started.
+	 * @protected
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	protected $newpagegroup = array();
+
+	/**
+	 * Contains the number of pages of the groups.
+	 * @protected
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	protected $pagegroups;
+
+	/**
+	 * Contains the alias of the current page group.
+	 * @protected
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	protected $currpagegroup;
+
+	/**
+	 * Restrict the rendering of some elements to screen or printout.
+	 * @protected
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	protected $visibility = 'all';
+
+	/**
+	 * Print visibility.
+	 * @protected
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	protected $n_ocg_print;
+
+	/**
+	 * View visibility.
+	 * @protected
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	protected $n_ocg_view;
+
+	/**
+	 * Array of transparency objects and parameters.
+	 * @protected
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	protected $extgstates;
+
+	/**
+	 * Set the default JPEG compression quality (1-100).
+	 * @protected
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	protected $jpeg_quality;
+
+	/**
+	 * Default cell height ratio.
+	 * @protected
+	 * @since 3.0.014 (2008-05-23)
+	 */
+	protected $cell_height_ratio = K_CELL_HEIGHT_RATIO;
+
+	/**
+	 * PDF viewer preferences.
+	 * @protected
+	 * @since 3.1.000 (2008-06-09)
+	 */
+	protected $viewer_preferences;
+
+	/**
+	 * A name object specifying how the document should be displayed when opened.
+	 * @protected
+	 * @since 3.1.000 (2008-06-09)
+	 */
+	protected $PageMode;
+
+	/**
+	 * Array for storing gradient information.
+	 * @protected
+	 * @since 3.1.000 (2008-06-09)
+	 */
+	protected $gradients = array();
+
+	/**
+	 * Array used to store positions inside the pages buffer (keys are the page numbers).
+	 * @protected
+	 * @since 3.2.000 (2008-06-26)
+	 */
+	protected $intmrk = array();
+
+	/**
+	 * Array used to store positions inside the pages buffer (keys are the page numbers).
+	 * @protected
+	 * @since 5.7.000 (2010-08-03)
+	 */
+	protected $bordermrk = array();
+
+	/**
+	 * Array used to store page positions to track empty pages (keys are the page numbers).
+	 * @protected
+	 * @since 5.8.007 (2010-08-18)
+	 */
+	protected $emptypagemrk = array();
+
+	/**
+	 * Array used to store content positions inside the pages buffer (keys are the page numbers).
+	 * @protected
+	 * @since 4.6.021 (2009-07-20)
+	 */
+	protected $cntmrk = array();
+
+	/**
+	 * Array used to store footer positions of each page.
+	 * @protected
+	 * @since 3.2.000 (2008-07-01)
+	 */
+	protected $footerpos = array();
+
+	/**
+	 * Array used to store footer length of each page.
+	 * @protected
+	 * @since 4.0.014 (2008-07-29)
+	 */
+	protected $footerlen = array();
+
+	/**
+	 * Boolean flag to indicate if a new line is created.
+	 * @protected
+	 * @since 3.2.000 (2008-07-01)
+	 */
+	protected $newline = true;
+
+	/**
+	 * End position of the latest inserted line.
+	 * @protected
+	 * @since 3.2.000 (2008-07-01)
+	 */
+	protected $endlinex = 0;
+
+	/**
+	 * PDF string for width value of the last line.
+	 * @protected
+	 * @since 4.0.006 (2008-07-16)
+	 */
+	protected $linestyleWidth = '';
+
+	/**
+	 * PDF string for CAP value of the last line.
+	 * @protected
+	 * @since 4.0.006 (2008-07-16)
+	 */
+	protected $linestyleCap = '0 J';
+
+	/**
+	 * PDF string for join value of the last line.
+	 * @protected
+	 * @since 4.0.006 (2008-07-16)
+	 */
+	protected $linestyleJoin = '0 j';
+
+	/**
+	 * PDF string for dash value of the last line.
+	 * @protected
+	 * @since 4.0.006 (2008-07-16)
+	 */
+	protected $linestyleDash = '[] 0 d';
+
+	/**
+	 * Boolean flag to indicate if marked-content sequence is open.
+	 * @protected
+	 * @since 4.0.013 (2008-07-28)
+	 */
+	protected $openMarkedContent = false;
+
+	/**
+	 * Count the latest inserted vertical spaces on HTML.
+	 * @protected
+	 * @since 4.0.021 (2008-08-24)
+	 */
+	protected $htmlvspace = 0;
+
+	/**
+	 * Array of Spot colors.
+	 * @protected
+	 * @since 4.0.024 (2008-09-12)
+	 */
+	protected $spot_colors = array();
+
+	/**
+	 * Symbol used for HTML unordered list items.
+	 * @protected
+	 * @since 4.0.028 (2008-09-26)
+	 */
+	protected $lisymbol = '';
+
+	/**
+	 * String used to mark the beginning and end of EPS image blocks.
+	 * @protected
+	 * @since 4.1.000 (2008-10-18)
+	 */
+	protected $epsmarker = 'x#!#EPS#!#x';
+
+	/**
+	 * Array of transformation matrix.
+	 * @protected
+	 * @since 4.2.000 (2008-10-29)
+	 */
+	protected $transfmatrix = array();
+
+	/**
+	 * Current key for transformation matrix.
+	 * @protected
+	 * @since 4.8.005 (2009-09-17)
+	 */
+	protected $transfmatrix_key = 0;
+
+	/**
+	 * Booklet mode for double-sided pages.
+	 * @protected
+	 * @since 4.2.000 (2008-10-29)
+	 */
+	protected $booklet = false;
+
+	/**
+	 * Epsilon value used for float calculations.
+	 * @protected
+	 * @since 4.2.000 (2008-10-29)
+	 */
+	protected $feps = 0.005;
+
+	/**
+	 * Array used for custom vertical spaces for HTML tags.
+	 * @protected
+	 * @since 4.2.001 (2008-10-30)
+	 */
+	protected $tagvspaces = array();
+
+	/**
+	 * HTML PARSER: custom indent amount for lists. Negative value means disabled.
+	 * @protected
+	 * @since 4.2.007 (2008-11-12)
+	 */
+	protected $customlistindent = -1;
+
+	/**
+	 * Boolean flag to indicate if the border of the cell sides that cross the page should be removed.
+	 * @protected
+	 * @since 4.2.010 (2008-11-14)
+	 */
+	protected $opencell = true;
+
+	/**
+	 * Array of files to embedd.
+	 * @protected
+	 * @since 4.4.000 (2008-12-07)
+	 */
+	protected $embeddedfiles = array();
+
+	/**
+	 * Boolean flag to indicate if we are inside a PRE tag.
+	 * @protected
+	 * @since 4.4.001 (2008-12-08)
+	 */
+	protected $premode = false;
+
+	/**
+	 * Array used to store positions of graphics transformation blocks inside the page buffer.
+	 * keys are the page numbers
+	 * @protected
+	 * @since 4.4.002 (2008-12-09)
+	 */
+	protected $transfmrk = array();
+
+	/**
+	 * Default color for html links.
+	 * @protected
+	 * @since 4.4.003 (2008-12-09)
+	 */
+	protected $htmlLinkColorArray = array(0, 0, 255);
+
+	/**
+	 * Default font style to add to html links.
+	 * @protected
+	 * @since 4.4.003 (2008-12-09)
+	 */
+	protected $htmlLinkFontStyle = 'U';
+
+	/**
+	 * Counts the number of pages.
+	 * @protected
+	 * @since 4.5.000 (2008-12-31)
+	 */
+	protected $numpages = 0;
+
+	/**
+	 * Array containing page lengths in bytes.
+	 * @protected
+	 * @since 4.5.000 (2008-12-31)
+	 */
+	protected $pagelen = array();
+
+	/**
+	 * Counts the number of pages.
+	 * @protected
+	 * @since 4.5.000 (2008-12-31)
+	 */
+	protected $numimages = 0;
+
+	/**
+	 * Store the image keys.
+	 * @protected
+	 * @since 4.5.000 (2008-12-31)
+	 */
+	protected $imagekeys = array();
+
+	/**
+	 * Length of the buffer in bytes.
+	 * @protected
+	 * @since 4.5.000 (2008-12-31)
+	 */
+	protected $bufferlen = 0;
+
+	/**
+	 * If true enables disk caching.
+	 * @protected
+	 * @since 4.5.000 (2008-12-31)
+	 */
+	protected $diskcache = false;
+
+	/**
+	 * Counts the number of fonts.
+	 * @protected
+	 * @since 4.5.000 (2009-01-02)
+	 */
+	protected $numfonts = 0;
+
+	/**
+	 * Store the font keys.
+	 * @protected
+	 * @since 4.5.000 (2009-01-02)
+	 */
+	protected $fontkeys = array();
+
+	/**
+	 * Store the font object IDs.
+	 * @protected
+	 * @since 4.8.001 (2009-09-09)
+	 */
+	protected $font_obj_ids = array();
+
+	/**
+	 * Store the fage status (true when opened, false when closed).
+	 * @protected
+	 * @since 4.5.000 (2009-01-02)
+	 */
+	protected $pageopen = array();
+
+	/**
+	 * Default monospace font.
+	 * @protected
+	 * @since 4.5.025 (2009-03-10)
+	 */
+	protected $default_monospaced_font = 'courier';
+
+	/**
+	 * Cloned copy of the current class object.
+	 * @protected
+	 * @since 4.5.029 (2009-03-19)
+	 */
+	protected $objcopy;
+
+	/**
+	 * Array used to store the lengths of cache files.
+	 * @protected
+	 * @since 4.5.029 (2009-03-19)
+	 */
+	protected $cache_file_length = array();
+
+	/**
+	 * Table header content to be repeated on each new page.
+	 * @protected
+	 * @since 4.5.030 (2009-03-20)
+	 */
+	protected $thead = '';
+
+	/**
+	 * Margins used for table header.
+	 * @protected
+	 * @since 4.5.030 (2009-03-20)
+	 */
+	protected $theadMargins = array();
+
+	/**
+	 * Cache array for UTF8StringToArray() method.
+	 * @protected
+	 * @since 4.5.037 (2009-04-07)
+	 */
+	protected $cache_UTF8StringToArray = array();
+
+	/**
+	 * Maximum size of cache array used for UTF8StringToArray() method.
+	 * @protected
+	 * @since 4.5.037 (2009-04-07)
+	 */
+	protected $cache_maxsize_UTF8StringToArray = 8;
+
+	/**
+	 * Current size of cache array used for UTF8StringToArray() method.
+	 * @protected
+	 * @since 4.5.037 (2009-04-07)
+	 */
+	protected $cache_size_UTF8StringToArray = 0;
+
+	/**
+	 * Boolean flag to enable document digital signature.
+	 * @protected
+	 * @since 4.6.005 (2009-04-24)
+	 */
+	protected $sign = false;
+
+	/**
+	 * Digital signature data.
+	 * @protected
+	 * @since 4.6.005 (2009-04-24)
+	 */
+	protected $signature_data = array();
+
+	/**
+	 * Digital signature max length.
+	 * @protected
+	 * @since 4.6.005 (2009-04-24)
+	 */
+	protected $signature_max_length = 11742;
+
+	/**
+	 * Data for digital signature appearance.
+	 * @protected
+	 * @since 5.3.011 (2010-06-16)
+	 */
+	protected $signature_appearance = array('page' => 1, 'rect' => '0 0 0 0');
+
+	/**
+	 * Regular expression used to find blank characters (required for word-wrapping).
+	 * @protected
+	 * @since 4.6.006 (2009-04-28)
+	 */
+	protected $re_spaces = '/[^\S\xa0]/';
+
+	/**
+	 * Array of $re_spaces parts.
+	 * @protected
+	 * @since 5.5.011 (2010-07-09)
+	 */
+	protected $re_space = array('p' => '[^\S\xa0]', 'm' => '');
+
+	/**
+	 * Digital signature object ID.
+	 * @protected
+	 * @since 4.6.022 (2009-06-23)
+	 */
+	protected $sig_obj_id = 0;
+
+	/**
+	 * ByteRange placemark used during digital signature process.
+	 * @protected
+	 * @since 4.6.028 (2009-08-25)
+	 */
+	protected $byterange_string = '/ByteRange[0 ********** ********** **********]';
+
+	/**
+	 * Placemark used during digital signature process.
+	 * @protected
+	 * @since 4.6.028 (2009-08-25)
+	 */
+	protected $sig_annot_ref = '***SIGANNREF*** 0 R';
+
+	/**
+	 * ID of page objects.
+	 * @protected
+	 * @since 4.7.000 (2009-08-29)
+	 */
+	protected $page_obj_id = array();
+
+	/**
+	 * List of form annotations IDs.
+	 * @protected
+	 * @since 4.8.000 (2009-09-07)
+	 */
+	protected $form_obj_id = array();
+
+	/**
+	 * Deafult Javascript field properties. Possible values are described on official Javascript for Acrobat API reference. Annotation options can be directly specified using the 'aopt' entry.
+	 * @protected
+	 * @since 4.8.000 (2009-09-07)
+	 */
+	protected $default_form_prop = array('lineWidth'=>1, 'borderStyle'=>'solid', 'fillColor'=>array(255, 255, 255), 'strokeColor'=>array(128, 128, 128));
+
+	/**
+	 * Javascript objects array.
+	 * @protected
+	 * @since 4.8.000 (2009-09-07)
+	 */
+	protected $js_objects = array();
+
+	/**
+	 * Current form action (used during XHTML rendering).
+	 * @protected
+	 * @since 4.8.000 (2009-09-07)
+	 */
+	protected $form_action = '';
+
+	/**
+	 * Current form encryption type (used during XHTML rendering).
+	 * @protected
+	 * @since 4.8.000 (2009-09-07)
+	 */
+	protected $form_enctype = 'application/x-www-form-urlencoded';
+
+	/**
+	 * Current method to submit forms.
+	 * @protected
+	 * @since 4.8.000 (2009-09-07)
+	 */
+	protected $form_mode = 'post';
+
+	/**
+	 * List of fonts used on form fields (fontname => fontkey).
+	 * @protected
+	 * @since 4.8.001 (2009-09-09)
+	 */
+	protected $annotation_fonts = array();
+
+	/**
+	 * List of radio buttons parent objects.
+	 * @protected
+	 * @since 4.8.001 (2009-09-09)
+	 */
+	protected $radiobutton_groups = array();
+
+	/**
+	 * List of radio group objects IDs.
+	 * @protected
+	 * @since 4.8.001 (2009-09-09)
+	 */
+	protected $radio_groups = array();
+
+	/**
+	 * Text indentation value (used for text-indent CSS attribute).
+	 * @protected
+	 * @since 4.8.006 (2009-09-23)
+	 */
+	protected $textindent = 0;
+
+	/**
+	 * Store page number when startTransaction() is called.
+	 * @protected
+	 * @since 4.8.006 (2009-09-23)
+	 */
+	protected $start_transaction_page = 0;
+
+	/**
+	 * Store Y position when startTransaction() is called.
+	 * @protected
+	 * @since 4.9.001 (2010-03-28)
+	 */
+	protected $start_transaction_y = 0;
+
+	/**
+	 * True when we are printing the thead section on a new page.
+	 * @protected
+	 * @since 4.8.027 (2010-01-25)
+	 */
+	protected $inthead = false;
+
+	/**
+	 * Array of column measures (width, space, starting Y position).
+	 * @protected
+	 * @since 4.9.001 (2010-03-28)
+	 */
+	protected $columns = array();
+
+	/**
+	 * Number of colums.
+	 * @protected
+	 * @since 4.9.001 (2010-03-28)
+	 */
+	protected $num_columns = 1;
+
+	/**
+	 * Current column number.
+	 * @protected
+	 * @since 4.9.001 (2010-03-28)
+	 */
+	protected $current_column = 0;
+
+	/**
+	 * Starting page for columns.
+	 * @protected
+	 * @since 4.9.001 (2010-03-28)
+	 */
+	protected $column_start_page = 0;
+
+	/**
+	 * Maximum page and column selected.
+	 * @protected
+	 * @since 5.8.000 (2010-08-11)
+	 */
+	protected $maxselcol = array('page' => 0, 'column' => 0);
+
+	/**
+	 * Array of: X difference between table cell x start and starting page margin, cellspacing, cellpadding.
+	 * @protected
+	 * @since 5.8.000 (2010-08-11)
+	 */
+	protected $colxshift = array('x' => 0, 's' => array('H' => 0, 'V' => 0), 'p' => array('L' => 0, 'T' => 0, 'R' => 0, 'B' => 0));
+
+	/**
+	 * Text rendering mode: 0 = Fill text; 1 = Stroke text; 2 = Fill, then stroke text; 3 = Neither fill nor stroke text (invisible); 4 = Fill text and add to path for clipping; 5 = Stroke text and add to path for clipping; 6 = Fill, then stroke text and add to path for clipping; 7 = Add text to path for clipping.
+	 * @protected
+	 * @since 4.9.008 (2010-04-03)
+	 */
+	protected $textrendermode = 0;
+
+	/**
+	 * Text stroke width in doc units.
+	 * @protected
+	 * @since 4.9.008 (2010-04-03)
+	 */
+	protected $textstrokewidth = 0;
+
+	/**
+	 * Current stroke color.
+	 * @protected
+	 * @since 4.9.008 (2010-04-03)
+	 */
+	protected $strokecolor;
+
+	/**
+	 * Default unit of measure for document.
+	 * @protected
+	 * @since 5.0.000 (2010-04-22)
+	 */
+	protected $pdfunit = 'mm';
+
+	/**
+	 * Boolean flag true when we are on TOC (Table Of Content) page.
+	 * @protected
+	 */
+	protected $tocpage = false;
+
+	/**
+	 * Boolean flag: if true convert vector images (SVG, EPS) to raster image using GD or ImageMagick library.
+	 * @protected
+	 * @since 5.0.000 (2010-04-26)
+	 */
+	protected $rasterize_vector_images = false;
+
+	/**
+	 * Boolean flag: if true enables font subsetting by default.
+	 * @protected
+	 * @since 5.3.002 (2010-06-07)
+	 */
+	protected $font_subsetting = true;
+
+	/**
+	 * Array of default graphic settings.
+	 * @protected
+	 * @since 5.5.008 (2010-07-02)
+	 */
+	protected $default_graphic_vars = array();
+
+	/**
+	 * Array of XObjects.
+	 * @protected
+	 * @since 5.8.014 (2010-08-23)
+	 */
+	protected $xobjects = array();
+
+	/**
+	 * Boolean value true when we are inside an XObject.
+	 * @protected
+	 * @since 5.8.017 (2010-08-24)
+	 */
+	protected $inxobj = false;
+
+	/**
+	 * Current XObject ID.
+	 * @protected
+	 * @since 5.8.017 (2010-08-24)
+	 */
+	protected $xobjid = '';
+
+	/**
+	 * Percentage of character stretching.
+	 * @protected
+	 * @since 5.9.000 (2010-09-29)
+	 */
+	protected $font_stretching = 100;
+
+	/**
+	 * Increases or decreases the space between characters in a text by the specified amount (tracking/kerning).
+	 * @protected
+	 * @since 5.9.000 (2010-09-29)
+	 */
+	protected $font_spacing = 0;
+
+	/**
+	 * Array of no-write regions.
+	 * ('page' => page number or empy for current page, 'xt' => X top, 'yt' => Y top, 'xb' => X bottom, 'yb' => Y bottom, 'side' => page side 'L' = left or 'R' = right)
+	 * @protected
+	 * @since 5.9.003 (2010-10-14)
+	 */
+	protected $page_regions = array();
+
+	/**
+	 * Array containing HTML color names and values.
+	 * @protected
+	 * @since 5.9.004 (2010-10-18)
+	 */
+	protected $webcolor = array();
+
+	/**
+	 * Array containing spot color names and values.
+	 * @protected
+	 * @since 5.9.012 (2010-11-11)
+	 */
+	protected $spotcolor = array();
+
+	/**
+	 * Directory used for the last SVG image.
+	 * @protected
+	 * @since 5.0.000 (2010-05-05)
+	 */
+	protected $svgdir = '';
+
+	/**
+	 *  Deafult unit of measure for SVG.
+	 * @protected
+	 * @since 5.0.000 (2010-05-02)
+	 */
+	protected $svgunit = 'px';
+
+	/**
+	 * Array of SVG gradients.
+	 * @protected
+	 * @since 5.0.000 (2010-05-02)
+	 */
+	protected $svggradients = array();
+
+	/**
+	 * ID of last SVG gradient.
+	 * @protected
+	 * @since 5.0.000 (2010-05-02)
+	 */
+	protected $svggradientid = 0;
+
+	/**
+	 * Boolean value true when in SVG defs group.
+	 * @protected
+	 * @since 5.0.000 (2010-05-02)
+	 */
+	protected $svgdefsmode = false;
+
+	/**
+	 * Array of SVG defs.
+	 * @protected
+	 * @since 5.0.000 (2010-05-02)
+	 */
+	protected $svgdefs = array();
+
+	/**
+	 * Boolean value true when in SVG clipPath tag.
+	 * @protected
+	 * @since 5.0.000 (2010-04-26)
+	 */
+	protected $svgclipmode = false;
+
+	/**
+	 * Array of SVG clipPath commands.
+	 * @protected
+	 * @since 5.0.000 (2010-05-02)
+	 */
+	protected $svgclippaths = array();
+
+	/**
+	 * Array of SVG clipPath tranformation matrix.
+	 * @protected
+	 * @since 5.8.022 (2010-08-31)
+	 */
+	protected $svgcliptm = array();
+
+	/**
+	 * ID of last SVG clipPath.
+	 * @protected
+	 * @since 5.0.000 (2010-05-02)
+	 */
+	protected $svgclipid = 0;
+
+	/**
+	 * SVG text.
+	 * @protected
+	 * @since 5.0.000 (2010-05-02)
+	 */
+	protected $svgtext = '';
+
+	/**
+	 * SVG text properties.
+	 * @protected
+	 * @since 5.8.013 (2010-08-23)
+	 */
+	protected $svgtextmode = array();
+
+	/**
+	 * Array of hinheritable SVG properties.
+	 * @protected
+	 * @since 5.0.000 (2010-05-02)
+	 */
+	protected $svginheritprop = array('clip-rule', 'color', 'color-interpolation', 'color-interpolation-filters', 'color-profile', 'color-rendering', 'cursor', 'direction', 'fill', 'fill-opacity', 'fill-rule', 'font', 'font-family', 'font-size', 'font-size-adjust', 'font-stretch', 'font-style', 'font-variant', 'font-weight', 'glyph-orientation-horizontal', 'glyph-orientation-vertical', 'image-rendering', 'kerning', 'letter-spacing', 'marker', 'marker-end', 'marker-mid', 'marker-start', 'pointer-events', 'shape-rendering', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'text-anchor', 'text-rendering', 'visibility', 'word-spacing', 'writing-mode');
+
+	/**
+	 * Array of SVG properties.
+	 * @protected
+	 * @since 5.0.000 (2010-05-02)
+	 */
+	protected $svgstyles = array(array(
+		'alignment-baseline' => 'auto',
+		'baseline-shift' => 'baseline',
+		'clip' => 'auto',
+		'clip-path' => 'none',
+		'clip-rule' => 'nonzero',
+		'color' => 'black',
+		'color-interpolation' => 'sRGB',
+		'color-interpolation-filters' => 'linearRGB',
+		'color-profile' => 'auto',
+		'color-rendering' => 'auto',
+		'cursor' => 'auto',
+		'direction' => 'ltr',
+		'display' => 'inline',
+		'dominant-baseline' => 'auto',
+		'enable-background' => 'accumulate',
+		'fill' => 'black',
+		'fill-opacity' => 1,
+		'fill-rule' => 'nonzero',
+		'filter' => 'none',
+		'flood-color' => 'black',
+		'flood-opacity' => 1,
+		'font' => '',
+		'font-family' => 'helvetica',
+		'font-size' => 'medium',
+		'font-size-adjust' => 'none',
+		'font-stretch' => 'normal',
+		'font-style' => 'normal',
+		'font-variant' => 'normal',
+		'font-weight' => 'normal',
+		'glyph-orientation-horizontal' => '0deg',
+		'glyph-orientation-vertical' => 'auto',
+		'image-rendering' => 'auto',
+		'kerning' => 'auto',
+		'letter-spacing' => 'normal',
+		'lighting-color' => 'white',
+		'marker' => '',
+		'marker-end' => 'none',
+		'marker-mid' => 'none',
+		'marker-start' => 'none',
+		'mask' => 'none',
+		'opacity' => 1,
+		'overflow' => 'auto',
+		'pointer-events' => 'visiblePainted',
+		'shape-rendering' => 'auto',
+		'stop-color' => 'black',
+		'stop-opacity' => 1,
+		'stroke' => 'none',
+		'stroke-dasharray' => 'none',
+		'stroke-dashoffset' => 0,
+		'stroke-linecap' => 'butt',
+		'stroke-linejoin' => 'miter',
+		'stroke-miterlimit' => 4,
+		'stroke-opacity' => 1,
+		'stroke-width' => 1,
+		'text-anchor' => 'start',
+		'text-decoration' => 'none',
+		'text-rendering' => 'auto',
+		'unicode-bidi' => 'normal',
+		'visibility' => 'visible',
+		'word-spacing' => 'normal',
+		'writing-mode' => 'lr-tb',
+		'text-color' => 'black',
+		'transfmatrix' => array(1, 0, 0, 1, 0, 0)
+		));
+
+	//------------------------------------------------------------
+	// METHODS
+	//------------------------------------------------------------
+
+	/**
+	 * This is the class constructor.
+	 * It allows to set up the page format, the orientation and the measure unit used in all the methods (except for the font sizes).
+	 * @param $orientation (string) page orientation. Possible values are (case insensitive):<ul><li>P or Portrait (default)</li><li>L or Landscape</li><li>'' (empty string) for automatic orientation</li></ul>
+	 * @param $unit (string) User measure unit. Possible values are:<ul><li>pt: point</li><li>mm: millimeter (default)</li><li>cm: centimeter</li><li>in: inch</li></ul><br />A point equals 1/72 of inch, that is to say about 0.35 mm (an inch being 2.54 cm). This is a very common unit in typography; font sizes are expressed in that unit.
+	 * @param $format (mixed) The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() or an array of parameters specified at setPageFormat().
+	 * @param $unicode (boolean) TRUE means that the input text is unicode (default = true)
+	 * @param $diskcache (boolean) if TRUE reduce the RAM memory usage by caching temporary data on filesystem (slower).
+	 * @param $encoding (string) charset encoding; default is UTF-8
+	 * @public
+	 * @see getPageSizeFromFormat(), setPageFormat()
+	 */
+	public function __construct($orientation='P', $unit='mm', $format='A4', $unicode=true, $encoding='UTF-8', $diskcache=false) {
+		/* Set internal character encoding to ASCII */
+		if (function_exists('mb_internal_encoding') AND mb_internal_encoding()) {
+			$this->internal_encoding = mb_internal_encoding();
+			mb_internal_encoding('ASCII');
+		}
+		// get array of HTML colors
+		require(dirname(__FILE__).'/htmlcolors.php');
+		$this->webcolor = $webcolor;
+		// get array of custom spot colors
+		if (file_exists(dirname(__FILE__).'/spotcolors.php')) {
+			require(dirname(__FILE__).'/spotcolors.php');
+			$this->spotcolor = $spotcolor;
+		} else {
+			$this->spotcolor = array();
+		}
+		require_once(dirname(__FILE__).'/unicode_data.php');
+		$this->unicode = new TCPDF_UNICODE_DATA();
+		$this->font_obj_ids = array();
+		$this->page_obj_id = array();
+		$this->form_obj_id = array();
+		// set disk caching
+		$this->diskcache = $diskcache ? true : false;
+		// set language direction
+		$this->rtl = false;
+		$this->tmprtl = false;
+		// some checks
+		$this->_dochecks();
+		// initialization of properties
+		$this->isunicode = $unicode;
+		$this->page = 0;
+		$this->transfmrk[0] = array();
+		$this->pagedim = array();
+		$this->n = 2;
+		$this->buffer = '';
+		$this->pages = array();
+		$this->state = 0;
+		$this->fonts = array();
+		$this->FontFiles = array();
+		$this->diffs = array();
+		$this->images = array();
+		$this->links = array();
+		$this->gradients = array();
+		$this->InFooter = false;
+		$this->lasth = 0;
+		$this->FontFamily = 'helvetica';
+		$this->FontStyle = '';
+		$this->FontSizePt = 12;
+		$this->underline = false;
+		$this->overline = false;
+		$this->linethrough = false;
+		$this->DrawColor = '0 G';
+		$this->FillColor = '0 g';
+		$this->TextColor = '0 g';
+		$this->ColorFlag = false;
+		// encryption values
+		$this->encrypted = false;
+		$this->last_enc_key = '';
+		// standard Unicode fonts
+		$this->CoreFonts = array(
+			'courier'=>'Courier',
+			'courierB'=>'Courier-Bold',
+			'courierI'=>'Courier-Oblique',
+			'courierBI'=>'Courier-BoldOblique',
+			'helvetica'=>'Helvetica',
+			'helveticaB'=>'Helvetica-Bold',
+			'helveticaI'=>'Helvetica-Oblique',
+			'helveticaBI'=>'Helvetica-BoldOblique',
+			'times'=>'Times-Roman',
+			'timesB'=>'Times-Bold',
+			'timesI'=>'Times-Italic',
+			'timesBI'=>'Times-BoldItalic',
+			'symbol'=>'Symbol',
+			'zapfdingbats'=>'ZapfDingbats'
+		);
+		// set scale factor
+		$this->setPageUnit($unit);
+		// set page format and orientation
+		$this->setPageFormat($format, $orientation);
+		// page margins (1 cm)
+		$margin = 28.35 / $this->k;
+		$this->SetMargins($margin, $margin);
+		// internal cell padding
+		$cpadding = $margin / 10;
+		$this->setCellPaddings($cpadding, 0, $cpadding, 0);
+		// cell margins
+		$this->setCellMargins(0, 0, 0, 0);
+		// line width (0.2 mm)
+		$this->LineWidth = 0.57 / $this->k;
+		$this->linestyleWidth = sprintf('%.2F w', ($this->LineWidth * $this->k));
+		$this->linestyleCap = '0 J';
+		$this->linestyleJoin = '0 j';
+		$this->linestyleDash = '[] 0 d';
+		// automatic page break
+		$this->SetAutoPageBreak(true, (2 * $margin));
+		// full width display mode
+		$this->SetDisplayMode('fullwidth');
+		// compression
+		$this->SetCompression(true);
+		// set default PDF version number
+		$this->PDFVersion = '1.7';
+		$this->encoding = $encoding;
+		$this->HREF = array();
+		$this->getFontsList();
+		$this->fgcolor = array('R' => 0, 'G' => 0, 'B' => 0);
+		$this->strokecolor = array('R' => 0, 'G' => 0, 'B' => 0);
+		$this->bgcolor = array('R' => 255, 'G' => 255, 'B' => 255);
+		$this->extgstates = array();
+		// user's rights
+		$this->sign = false;
+		$this->ur['enabled'] = false;
+		$this->ur['document'] = '/FullSave';
+		$this->ur['annots'] = '/Create/Delete/Modify/Copy/Import/Export';
+		$this->ur['form'] = '/Add/Delete/FillIn/Import/Export/SubmitStandalone/SpawnTemplate';
+		$this->ur['signature'] = '/Modify';
+		$this->ur['ef'] = '/Create/Delete/Modify/Import';
+		$this->ur['formex'] = '';
+		$this->signature_appearance = array('page' => 1, 'rect' => '0 0 0 0');
+		// set default JPEG quality
+		$this->jpeg_quality = 75;
+		// initialize some settings
+		$this->utf8Bidi(array(''), '');
+		// set default font
+		$this->SetFont($this->FontFamily, $this->FontStyle, $this->FontSizePt);
+		// check if PCRE Unicode support is enabled
+		if ($this->isunicode AND (@preg_match('/\pL/u', 'a') == 1)) {
+			// PCRE unicode support is turned ON
+			// \p{Z} or \p{Separator}: any kind of Unicode whitespace or invisible separator.
+			// \p{Lo} or \p{Other_Letter}: a Unicode letter or ideograph that does not have lowercase and uppercase variants.
+			// \p{Lo} is needed because Chinese characters are packed next to each other without spaces in between.
+			//$this->setSpacesRE('/[^\S\P{Z}\P{Lo}\xa0]/u');
+			$this->setSpacesRE('/[^\S\P{Z}\xa0]/u');
+		} else {
+			// PCRE unicode support is turned OFF
+			$this->setSpacesRE('/[^\S\xa0]/');
+		}
+		$this->default_form_prop = array('lineWidth'=>1, 'borderStyle'=>'solid', 'fillColor'=>array(255, 255, 255), 'strokeColor'=>array(128, 128, 128));
+		// set file ID for trailer
+		$this->file_id = md5($this->getRandomSeed('TCPDF'.$orientation.$unit.$format.$encoding));
+		// get default graphic vars
+		$this->default_graphic_vars = $this->getGraphicVars();
+	}
+
+	/**
+	 * Default destructor.
+	 * @public
+	 * @since 1.53.0.TC016
+	 */
+	public function __destruct() {
+		// restore internal encoding
+		if (isset($this->internal_encoding) AND !empty($this->internal_encoding)) {
+			mb_internal_encoding($this->internal_encoding);
+		}
+		// unset all class variables
+		$this->_destroy(true);
+	}
+
+	/**
+	 * Return the current TCPDF version.
+	 * @return TCPDF version string
+	 * @public
+	 * @since 5.9.012 (2010-11-10)
+	 */
+	public function getTCPDFVersion() {
+		return $this->tcpdf_version;
+	}
+
+	/**
+	 * Set the units of measure for the document.
+	 * @param $unit (string) User measure unit. Possible values are:<ul><li>pt: point</li><li>mm: millimeter (default)</li><li>cm: centimeter</li><li>in: inch</li></ul><br />A point equals 1/72 of inch, that is to say about 0.35 mm (an inch being 2.54 cm). This is a very common unit in typography; font sizes are expressed in that unit.
+	 * @public
+	 * @since 3.0.015 (2008-06-06)
+	 */
+	public function setPageUnit($unit) {
+		$unit = strtolower($unit);
+		//Set scale factor
+		switch ($unit) {
+			// points
+			case 'px':
+			case 'pt': {
+				$this->k = 1;
+				break;
+			}
+			// millimeters
+			case 'mm': {
+				$this->k = $this->dpi / 25.4;
+				break;
+			}
+			// centimeters
+			case 'cm': {
+				$this->k = $this->dpi / 2.54;
+				break;
+			}
+			// inches
+			case 'in': {
+				$this->k = $this->dpi;
+				break;
+			}
+			// unsupported unit
+			default : {
+				$this->Error('Incorrect unit: '.$unit);
+				break;
+			}
+		}
+		$this->pdfunit = $unit;
+		if (isset($this->CurOrientation)) {
+			$this->setPageOrientation($this->CurOrientation);
+		}
+	}
+
+	/**
+	 * Get page dimensions from format name.
+	 * @param $format (mixed) The format name. It can be: <ul>
+	 * <li><b>ISO 216 A Series + 2 SIS 014711 extensions</b></li>
+	 * <li>A0 (841x1189 mm ; 33.11x46.81 in)</li>
+	 * <li>A1 (594x841 mm ; 23.39x33.11 in)</li>
+	 * <li>A2 (420x594 mm ; 16.54x23.39 in)</li>
+	 * <li>A3 (297x420 mm ; 11.69x16.54 in)</li>
+	 * <li>A4 (210x297 mm ; 8.27x11.69 in)</li>
+	 * <li>A5 (148x210 mm ; 5.83x8.27 in)</li>
+	 * <li>A6 (105x148 mm ; 4.13x5.83 in)</li>
+	 * <li>A7 (74x105 mm ; 2.91x4.13 in)</li>
+	 * <li>A8 (52x74 mm ; 2.05x2.91 in)</li>
+	 * <li>A9 (37x52 mm ; 1.46x2.05 in)</li>
+	 * <li>A10 (26x37 mm ; 1.02x1.46 in)</li>
+	 * <li>A11 (18x26 mm ; 0.71x1.02 in)</li>
+	 * <li>A12 (13x18 mm ; 0.51x0.71 in)</li>
+	 * <li><b>ISO 216 B Series + 2 SIS 014711 extensions</b></li>
+	 * <li>B0 (1000x1414 mm ; 39.37x55.67 in)</li>
+	 * <li>B1 (707x1000 mm ; 27.83x39.37 in)</li>
+	 * <li>B2 (500x707 mm ; 19.69x27.83 in)</li>
+	 * <li>B3 (353x500 mm ; 13.90x19.69 in)</li>
+	 * <li>B4 (250x353 mm ; 9.84x13.90 in)</li>
+	 * <li>B5 (176x250 mm ; 6.93x9.84 in)</li>
+	 * <li>B6 (125x176 mm ; 4.92x6.93 in)</li>
+	 * <li>B7 (88x125 mm ; 3.46x4.92 in)</li>
+	 * <li>B8 (62x88 mm ; 2.44x3.46 in)</li>
+	 * <li>B9 (44x62 mm ; 1.73x2.44 in)</li>
+	 * <li>B10 (31x44 mm ; 1.22x1.73 in)</li>
+	 * <li>B11 (22x31 mm ; 0.87x1.22 in)</li>
+	 * <li>B12 (15x22 mm ; 0.59x0.87 in)</li>
+	 * <li><b>ISO 216 C Series + 2 SIS 014711 extensions + 2 EXTENSION</b></li>
+	 * <li>C0 (917x1297 mm ; 36.10x51.06 in)</li>
+	 * <li>C1 (648x917 mm ; 25.51x36.10 in)</li>
+	 * <li>C2 (458x648 mm ; 18.03x25.51 in)</li>
+	 * <li>C3 (324x458 mm ; 12.76x18.03 in)</li>
+	 * <li>C4 (229x324 mm ; 9.02x12.76 in)</li>
+	 * <li>C5 (162x229 mm ; 6.38x9.02 in)</li>
+	 * <li>C6 (114x162 mm ; 4.49x6.38 in)</li>
+	 * <li>C7 (81x114 mm ; 3.19x4.49 in)</li>
+	 * <li>C8 (57x81 mm ; 2.24x3.19 in)</li>
+	 * <li>C9 (40x57 mm ; 1.57x2.24 in)</li>
+	 * <li>C10 (28x40 mm ; 1.10x1.57 in)</li>
+	 * <li>C11 (20x28 mm ; 0.79x1.10 in)</li>
+	 * <li>C12 (14x20 mm ; 0.55x0.79 in)</li>
+	 * <li>C76 (81x162 mm ; 3.19x6.38 in)</li>
+	 * <li>DL (110x220 mm ; 4.33x8.66 in)</li>
+	 * <li><b>SIS 014711 E Series</b></li>
+	 * <li>E0 (879x1241 mm ; 34.61x48.86 in)</li>
+	 * <li>E1 (620x879 mm ; 24.41x34.61 in)</li>
+	 * <li>E2 (440x620 mm ; 17.32x24.41 in)</li>
+	 * <li>E3 (310x440 mm ; 12.20x17.32 in)</li>
+	 * <li>E4 (220x310 mm ; 8.66x12.20 in)</li>
+	 * <li>E5 (155x220 mm ; 6.10x8.66 in)</li>
+	 * <li>E6 (110x155 mm ; 4.33x6.10 in)</li>
+	 * <li>E7 (78x110 mm ; 3.07x4.33 in)</li>
+	 * <li>E8 (55x78 mm ; 2.17x3.07 in)</li>
+	 * <li>E9 (39x55 mm ; 1.54x2.17 in)</li>
+	 * <li>E10 (27x39 mm ; 1.06x1.54 in)</li>
+	 * <li>E11 (19x27 mm ; 0.75x1.06 in)</li>
+	 * <li>E12 (13x19 mm ; 0.51x0.75 in)</li>
+	 * <li><b>SIS 014711 G Series</b></li>
+	 * <li>G0 (958x1354 mm ; 37.72x53.31 in)</li>
+	 * <li>G1 (677x958 mm ; 26.65x37.72 in)</li>
+	 * <li>G2 (479x677 mm ; 18.86x26.65 in)</li>
+	 * <li>G3 (338x479 mm ; 13.31x18.86 in)</li>
+	 * <li>G4 (239x338 mm ; 9.41x13.31 in)</li>
+	 * <li>G5 (169x239 mm ; 6.65x9.41 in)</li>
+	 * <li>G6 (119x169 mm ; 4.69x6.65 in)</li>
+	 * <li>G7 (84x119 mm ; 3.31x4.69 in)</li>
+	 * <li>G8 (59x84 mm ; 2.32x3.31 in)</li>
+	 * <li>G9 (42x59 mm ; 1.65x2.32 in)</li>
+	 * <li>G10 (29x42 mm ; 1.14x1.65 in)</li>
+	 * <li>G11 (21x29 mm ; 0.83x1.14 in)</li>
+	 * <li>G12 (14x21 mm ; 0.55x0.83 in)</li>
+	 * <li><b>ISO Press</b></li>
+	 * <li>RA0 (860x1220 mm ; 33.86x48.03 in)</li>
+	 * <li>RA1 (610x860 mm ; 24.02x33.86 in)</li>
+	 * <li>RA2 (430x610 mm ; 16.93x24.02 in)</li>
+	 * <li>RA3 (305x430 mm ; 12.01x16.93 in)</li>
+	 * <li>RA4 (215x305 mm ; 8.46x12.01 in)</li>
+	 * <li>SRA0 (900x1280 mm ; 35.43x50.39 in)</li>
+	 * <li>SRA1 (640x900 mm ; 25.20x35.43 in)</li>
+	 * <li>SRA2 (450x640 mm ; 17.72x25.20 in)</li>
+	 * <li>SRA3 (320x450 mm ; 12.60x17.72 in)</li>
+	 * <li>SRA4 (225x320 mm ; 8.86x12.60 in)</li>
+	 * <li><b>German DIN 476</b></li>
+	 * <li>4A0 (1682x2378 mm ; 66.22x93.62 in)</li>
+	 * <li>2A0 (1189x1682 mm ; 46.81x66.22 in)</li>
+	 * <li><b>Variations on the ISO Standard</b></li>
+	 * <li>A2_EXTRA (445x619 mm ; 17.52x24.37 in)</li>
+	 * <li>A3+ (329x483 mm ; 12.95x19.02 in)</li>
+	 * <li>A3_EXTRA (322x445 mm ; 12.68x17.52 in)</li>
+	 * <li>A3_SUPER (305x508 mm ; 12.01x20.00 in)</li>
+	 * <li>SUPER_A3 (305x487 mm ; 12.01x19.17 in)</li>
+	 * <li>A4_EXTRA (235x322 mm ; 9.25x12.68 in)</li>
+	 * <li>A4_SUPER (229x322 mm ; 9.02x12.68 in)</li>
+	 * <li>SUPER_A4 (227x356 mm ; 8.94x14.02 in)</li>
+	 * <li>A4_LONG (210x348 mm ; 8.27x13.70 in)</li>
+	 * <li>F4 (210x330 mm ; 8.27x12.99 in)</li>
+	 * <li>SO_B5_EXTRA (202x276 mm ; 7.95x10.87 in)</li>
+	 * <li>A5_EXTRA (173x235 mm ; 6.81x9.25 in)</li>
+	 * <li><b>ANSI Series</b></li>
+	 * <li>ANSI_E (864x1118 mm ; 34.00x44.00 in)</li>
+	 * <li>ANSI_D (559x864 mm ; 22.00x34.00 in)</li>
+	 * <li>ANSI_C (432x559 mm ; 17.00x22.00 in)</li>
+	 * <li>ANSI_B (279x432 mm ; 11.00x17.00 in)</li>
+	 * <li>ANSI_A (216x279 mm ; 8.50x11.00 in)</li>
+	 * <li><b>Traditional 'Loose' North American Paper Sizes</b></li>
+	 * <li>LEDGER, USLEDGER (432x279 mm ; 17.00x11.00 in)</li>
+	 * <li>TABLOID, USTABLOID, BIBLE, ORGANIZERK (279x432 mm ; 11.00x17.00 in)</li>
+	 * <li>LETTER, USLETTER, ORGANIZERM (216x279 mm ; 8.50x11.00 in)</li>
+	 * <li>LEGAL, USLEGAL (216x356 mm ; 8.50x14.00 in)</li>
+	 * <li>GLETTER, GOVERNMENTLETTER (203x267 mm ; 8.00x10.50 in)</li>
+	 * <li>JLEGAL, JUNIORLEGAL (203x127 mm ; 8.00x5.00 in)</li>
+	 * <li><b>Other North American Paper Sizes</b></li>
+	 * <li>QUADDEMY (889x1143 mm ; 35.00x45.00 in)</li>
+	 * <li>SUPER_B (330x483 mm ; 13.00x19.00 in)</li>
+	 * <li>QUARTO (229x279 mm ; 9.00x11.00 in)</li>
+	 * <li>FOLIO, GOVERNMENTLEGAL (216x330 mm ; 8.50x13.00 in)</li>
+	 * <li>EXECUTIVE, MONARCH (184x267 mm ; 7.25x10.50 in)</li>
+	 * <li>MEMO, STATEMENT, ORGANIZERL (140x216 mm ; 5.50x8.50 in)</li>
+	 * <li>FOOLSCAP (210x330 mm ; 8.27x13.00 in)</li>
+	 * <li>COMPACT (108x171 mm ; 4.25x6.75 in)</li>
+	 * <li>ORGANIZERJ (70x127 mm ; 2.75x5.00 in)</li>
+	 * <li><b>Canadian standard CAN 2-9.60M</b></li>
+	 * <li>P1 (560x860 mm ; 22.05x33.86 in)</li>
+	 * <li>P2 (430x560 mm ; 16.93x22.05 in)</li>
+	 * <li>P3 (280x430 mm ; 11.02x16.93 in)</li>
+	 * <li>P4 (215x280 mm ; 8.46x11.02 in)</li>
+	 * <li>P5 (140x215 mm ; 5.51x8.46 in)</li>
+	 * <li>P6 (107x140 mm ; 4.21x5.51 in)</li>
+	 * <li><b>North American Architectural Sizes</b></li>
+	 * <li>ARCH_E (914x1219 mm ; 36.00x48.00 in)</li>
+	 * <li>ARCH_E1 (762x1067 mm ; 30.00x42.00 in)</li>
+	 * <li>ARCH_D (610x914 mm ; 24.00x36.00 in)</li>
+	 * <li>ARCH_C, BROADSHEET (457x610 mm ; 18.00x24.00 in)</li>
+	 * <li>ARCH_B (305x457 mm ; 12.00x18.00 in)</li>
+	 * <li>ARCH_A (229x305 mm ; 9.00x12.00 in)</li>
+	 * <li><b>Announcement Envelopes</b></li>
+	 * <li>ANNENV_A2 (111x146 mm ; 4.37x5.75 in)</li>
+	 * <li>ANNENV_A6 (121x165 mm ; 4.75x6.50 in)</li>
+	 * <li>ANNENV_A7 (133x184 mm ; 5.25x7.25 in)</li>
+	 * <li>ANNENV_A8 (140x206 mm ; 5.50x8.12 in)</li>
+	 * <li>ANNENV_A10 (159x244 mm ; 6.25x9.62 in)</li>
+	 * <li>ANNENV_SLIM (98x225 mm ; 3.87x8.87 in)</li>
+	 * <li><b>Commercial Envelopes</b></li>
+	 * <li>COMMENV_N6_1/4 (89x152 mm ; 3.50x6.00 in)</li>
+	 * <li>COMMENV_N6_3/4 (92x165 mm ; 3.62x6.50 in)</li>
+	 * <li>COMMENV_N8 (98x191 mm ; 3.87x7.50 in)</li>
+	 * <li>COMMENV_N9 (98x225 mm ; 3.87x8.87 in)</li>
+	 * <li>COMMENV_N10 (105x241 mm ; 4.12x9.50 in)</li>
+	 * <li>COMMENV_N11 (114x263 mm ; 4.50x10.37 in)</li>
+	 * <li>COMMENV_N12 (121x279 mm ; 4.75x11.00 in)</li>
+	 * <li>COMMENV_N14 (127x292 mm ; 5.00x11.50 in)</li>
+	 * <li><b>Catalogue Envelopes</b></li>
+	 * <li>CATENV_N1 (152x229 mm ; 6.00x9.00 in)</li>
+	 * <li>CATENV_N1_3/4 (165x241 mm ; 6.50x9.50 in)</li>
+	 * <li>CATENV_N2 (165x254 mm ; 6.50x10.00 in)</li>
+	 * <li>CATENV_N3 (178x254 mm ; 7.00x10.00 in)</li>
+	 * <li>CATENV_N6 (191x267 mm ; 7.50x10.50 in)</li>
+	 * <li>CATENV_N7 (203x279 mm ; 8.00x11.00 in)</li>
+	 * <li>CATENV_N8 (210x286 mm ; 8.25x11.25 in)</li>
+	 * <li>CATENV_N9_1/2 (216x267 mm ; 8.50x10.50 in)</li>
+	 * <li>CATENV_N9_3/4 (222x286 mm ; 8.75x11.25 in)</li>
+	 * <li>CATENV_N10_1/2 (229x305 mm ; 9.00x12.00 in)</li>
+	 * <li>CATENV_N12_1/2 (241x318 mm ; 9.50x12.50 in)</li>
+	 * <li>CATENV_N13_1/2 (254x330 mm ; 10.00x13.00 in)</li>
+	 * <li>CATENV_N14_1/4 (286x311 mm ; 11.25x12.25 in)</li>
+	 * <li>CATENV_N14_1/2 (292x368 mm ; 11.50x14.50 in)</li>
+	 * <li><b>Japanese (JIS P 0138-61) Standard B-Series</b></li>
+	 * <li>JIS_B0 (1030x1456 mm ; 40.55x57.32 in)</li>
+	 * <li>JIS_B1 (728x1030 mm ; 28.66x40.55 in)</li>
+	 * <li>JIS_B2 (515x728 mm ; 20.28x28.66 in)</li>
+	 * <li>JIS_B3 (364x515 mm ; 14.33x20.28 in)</li>
+	 * <li>JIS_B4 (257x364 mm ; 10.12x14.33 in)</li>
+	 * <li>JIS_B5 (182x257 mm ; 7.17x10.12 in)</li>
+	 * <li>JIS_B6 (128x182 mm ; 5.04x7.17 in)</li>
+	 * <li>JIS_B7 (91x128 mm ; 3.58x5.04 in)</li>
+	 * <li>JIS_B8 (64x91 mm ; 2.52x3.58 in)</li>
+	 * <li>JIS_B9 (45x64 mm ; 1.77x2.52 in)</li>
+	 * <li>JIS_B10 (32x45 mm ; 1.26x1.77 in)</li>
+	 * <li>JIS_B11 (22x32 mm ; 0.87x1.26 in)</li>
+	 * <li>JIS_B12 (16x22 mm ; 0.63x0.87 in)</li>
+	 * <li><b>PA Series</b></li>
+	 * <li>PA0 (840x1120 mm ; 33.07x44.09 in)</li>
+	 * <li>PA1 (560x840 mm ; 22.05x33.07 in)</li>
+	 * <li>PA2 (420x560 mm ; 16.54x22.05 in)</li>
+	 * <li>PA3 (280x420 mm ; 11.02x16.54 in)</li>
+	 * <li>PA4 (210x280 mm ; 8.27x11.02 in)</li>
+	 * <li>PA5 (140x210 mm ; 5.51x8.27 in)</li>
+	 * <li>PA6 (105x140 mm ; 4.13x5.51 in)</li>
+	 * <li>PA7 (70x105 mm ; 2.76x4.13 in)</li>
+	 * <li>PA8 (52x70 mm ; 2.05x2.76 in)</li>
+	 * <li>PA9 (35x52 mm ; 1.38x2.05 in)</li>
+	 * <li>PA10 (26x35 mm ; 1.02x1.38 in)</li>
+	 * <li><b>Standard Photographic Print Sizes</b></li>
+	 * <li>PASSPORT_PHOTO (35x45 mm ; 1.38x1.77 in)</li>
+	 * <li>E (82x120 mm ; 3.25x4.72 in)</li>
+	 * <li>3R, L (89x127 mm ; 3.50x5.00 in)</li>
+	 * <li>4R, KG (102x152 mm ; 4.02x5.98 in)</li>
+	 * <li>4D (120x152 mm ; 4.72x5.98 in)</li>
+	 * <li>5R, 2L (127x178 mm ; 5.00x7.01 in)</li>
+	 * <li>6R, 8P (152x203 mm ; 5.98x7.99 in)</li>
+	 * <li>8R, 6P (203x254 mm ; 7.99x10.00 in)</li>
+	 * <li>S8R, 6PW (203x305 mm ; 7.99x12.01 in)</li>
+	 * <li>10R, 4P (254x305 mm ; 10.00x12.01 in)</li>
+	 * <li>S10R, 4PW (254x381 mm ; 10.00x15.00 in)</li>
+	 * <li>11R (279x356 mm ; 10.98x14.02 in)</li>
+	 * <li>S11R (279x432 mm ; 10.98x17.01 in)</li>
+	 * <li>12R (305x381 mm ; 12.01x15.00 in)</li>
+	 * <li>S12R (305x456 mm ; 12.01x17.95 in)</li>
+	 * <li><b>Common Newspaper Sizes</b></li>
+	 * <li>NEWSPAPER_BROADSHEET (750x600 mm ; 29.53x23.62 in)</li>
+	 * <li>NEWSPAPER_BERLINER (470x315 mm ; 18.50x12.40 in)</li>
+	 * <li>NEWSPAPER_COMPACT, NEWSPAPER_TABLOID (430x280 mm ; 16.93x11.02 in)</li>
+	 * <li><b>Business Cards</b></li>
+	 * <li>CREDIT_CARD, BUSINESS_CARD, BUSINESS_CARD_ISO7810 (54x86 mm ; 2.13x3.37 in)</li>
+	 * <li>BUSINESS_CARD_ISO216 (52x74 mm ; 2.05x2.91 in)</li>
+	 * <li>BUSINESS_CARD_IT, BUSINESS_CARD_UK, BUSINESS_CARD_FR, BUSINESS_CARD_DE, BUSINESS_CARD_ES (55x85 mm ; 2.17x3.35 in)</li>
+	 * <li>BUSINESS_CARD_US, BUSINESS_CARD_CA (51x89 mm ; 2.01x3.50 in)</li>
+	 * <li>BUSINESS_CARD_JP (55x91 mm ; 2.17x3.58 in)</li>
+	 * <li>BUSINESS_CARD_HK (54x90 mm ; 2.13x3.54 in)</li>
+	 * <li>BUSINESS_CARD_AU, BUSINESS_CARD_DK, BUSINESS_CARD_SE (55x90 mm ; 2.17x3.54 in)</li>
+	 * <li>BUSINESS_CARD_RU, BUSINESS_CARD_CZ, BUSINESS_CARD_FI, BUSINESS_CARD_HU, BUSINESS_CARD_IL (50x90 mm ; 1.97x3.54 in)</li>
+	 * <li><b>Billboards</b></li>
+	 * <li>4SHEET (1016x1524 mm ; 40.00x60.00 in)</li>
+	 * <li>6SHEET (1200x1800 mm ; 47.24x70.87 in)</li>
+	 * <li>12SHEET (3048x1524 mm ; 120.00x60.00 in)</li>
+	 * <li>16SHEET (2032x3048 mm ; 80.00x120.00 in)</li>
+	 * <li>32SHEET (4064x3048 mm ; 160.00x120.00 in)</li>
+	 * <li>48SHEET (6096x3048 mm ; 240.00x120.00 in)</li>
+	 * <li>64SHEET (8128x3048 mm ; 320.00x120.00 in)</li>
+	 * <li>96SHEET (12192x3048 mm ; 480.00x120.00 in)</li>
+	 * <li><b>Old Imperial English (some are still used in USA)</b></li>
+	 * <li>EN_EMPEROR (1219x1829 mm ; 48.00x72.00 in)</li>
+	 * <li>EN_ANTIQUARIAN (787x1346 mm ; 31.00x53.00 in)</li>
+	 * <li>EN_GRAND_EAGLE (730x1067 mm ; 28.75x42.00 in)</li>
+	 * <li>EN_DOUBLE_ELEPHANT (679x1016 mm ; 26.75x40.00 in)</li>
+	 * <li>EN_ATLAS (660x864 mm ; 26.00x34.00 in)</li>
+	 * <li>EN_COLOMBIER (597x876 mm ; 23.50x34.50 in)</li>
+	 * <li>EN_ELEPHANT (584x711 mm ; 23.00x28.00 in)</li>
+	 * <li>EN_DOUBLE_DEMY (572x902 mm ; 22.50x35.50 in)</li>
+	 * <li>EN_IMPERIAL (559x762 mm ; 22.00x30.00 in)</li>
+	 * <li>EN_PRINCESS (546x711 mm ; 21.50x28.00 in)</li>
+	 * <li>EN_CARTRIDGE (533x660 mm ; 21.00x26.00 in)</li>
+	 * <li>EN_DOUBLE_LARGE_POST (533x838 mm ; 21.00x33.00 in)</li>
+	 * <li>EN_ROYAL (508x635 mm ; 20.00x25.00 in)</li>
+	 * <li>EN_SHEET, EN_HALF_POST (495x597 mm ; 19.50x23.50 in)</li>
+	 * <li>EN_SUPER_ROYAL (483x686 mm ; 19.00x27.00 in)</li>
+	 * <li>EN_DOUBLE_POST (483x775 mm ; 19.00x30.50 in)</li>
+	 * <li>EN_MEDIUM (445x584 mm ; 17.50x23.00 in)</li>
+	 * <li>EN_DEMY (445x572 mm ; 17.50x22.50 in)</li>
+	 * <li>EN_LARGE_POST (419x533 mm ; 16.50x21.00 in)</li>
+	 * <li>EN_COPY_DRAUGHT (406x508 mm ; 16.00x20.00 in)</li>
+	 * <li>EN_POST (394x489 mm ; 15.50x19.25 in)</li>
+	 * <li>EN_CROWN (381x508 mm ; 15.00x20.00 in)</li>
+	 * <li>EN_PINCHED_POST (375x470 mm ; 14.75x18.50 in)</li>
+	 * <li>EN_BRIEF (343x406 mm ; 13.50x16.00 in)</li>
+	 * <li>EN_FOOLSCAP (343x432 mm ; 13.50x17.00 in)</li>
+	 * <li>EN_SMALL_FOOLSCAP (337x419 mm ; 13.25x16.50 in)</li>
+	 * <li>EN_POTT (318x381 mm ; 12.50x15.00 in)</li>
+	 * <li><b>Old Imperial Belgian</b></li>
+	 * <li>BE_GRAND_AIGLE (700x1040 mm ; 27.56x40.94 in)</li>
+	 * <li>BE_COLOMBIER (620x850 mm ; 24.41x33.46 in)</li>
+	 * <li>BE_DOUBLE_CARRE (620x920 mm ; 24.41x36.22 in)</li>
+	 * <li>BE_ELEPHANT (616x770 mm ; 24.25x30.31 in)</li>
+	 * <li>BE_PETIT_AIGLE (600x840 mm ; 23.62x33.07 in)</li>
+	 * <li>BE_GRAND_JESUS (550x730 mm ; 21.65x28.74 in)</li>
+	 * <li>BE_JESUS (540x730 mm ; 21.26x28.74 in)</li>
+	 * <li>BE_RAISIN (500x650 mm ; 19.69x25.59 in)</li>
+	 * <li>BE_GRAND_MEDIAN (460x605 mm ; 18.11x23.82 in)</li>
+	 * <li>BE_DOUBLE_POSTE (435x565 mm ; 17.13x22.24 in)</li>
+	 * <li>BE_COQUILLE (430x560 mm ; 16.93x22.05 in)</li>
+	 * <li>BE_PETIT_MEDIAN (415x530 mm ; 16.34x20.87 in)</li>
+	 * <li>BE_RUCHE (360x460 mm ; 14.17x18.11 in)</li>
+	 * <li>BE_PROPATRIA (345x430 mm ; 13.58x16.93 in)</li>
+	 * <li>BE_LYS (317x397 mm ; 12.48x15.63 in)</li>
+	 * <li>BE_POT (307x384 mm ; 12.09x15.12 in)</li>
+	 * <li>BE_ROSETTE (270x347 mm ; 10.63x13.66 in)</li>
+	 * <li><b>Old Imperial French</b></li>
+	 * <li>FR_UNIVERS (1000x1300 mm ; 39.37x51.18 in)</li>
+	 * <li>FR_DOUBLE_COLOMBIER (900x1260 mm ; 35.43x49.61 in)</li>
+	 * <li>FR_GRANDE_MONDE (900x1260 mm ; 35.43x49.61 in)</li>
+	 * <li>FR_DOUBLE_SOLEIL (800x1200 mm ; 31.50x47.24 in)</li>
+	 * <li>FR_DOUBLE_JESUS (760x1120 mm ; 29.92x44.09 in)</li>
+	 * <li>FR_GRAND_AIGLE (750x1060 mm ; 29.53x41.73 in)</li>
+	 * <li>FR_PETIT_AIGLE (700x940 mm ; 27.56x37.01 in)</li>
+	 * <li>FR_DOUBLE_RAISIN (650x1000 mm ; 25.59x39.37 in)</li>
+	 * <li>FR_JOURNAL (650x940 mm ; 25.59x37.01 in)</li>
+	 * <li>FR_COLOMBIER_AFFICHE (630x900 mm ; 24.80x35.43 in)</li>
+	 * <li>FR_DOUBLE_CAVALIER (620x920 mm ; 24.41x36.22 in)</li>
+	 * <li>FR_CLOCHE (600x800 mm ; 23.62x31.50 in)</li>
+	 * <li>FR_SOLEIL (600x800 mm ; 23.62x31.50 in)</li>
+	 * <li>FR_DOUBLE_CARRE (560x900 mm ; 22.05x35.43 in)</li>
+	 * <li>FR_DOUBLE_COQUILLE (560x880 mm ; 22.05x34.65 in)</li>
+	 * <li>FR_JESUS (560x760 mm ; 22.05x29.92 in)</li>
+	 * <li>FR_RAISIN (500x650 mm ; 19.69x25.59 in)</li>
+	 * <li>FR_CAVALIER (460x620 mm ; 18.11x24.41 in)</li>
+	 * <li>FR_DOUBLE_COURONNE (460x720 mm ; 18.11x28.35 in)</li>
+	 * <li>FR_CARRE (450x560 mm ; 17.72x22.05 in)</li>
+	 * <li>FR_COQUILLE (440x560 mm ; 17.32x22.05 in)</li>
+	 * <li>FR_DOUBLE_TELLIERE (440x680 mm ; 17.32x26.77 in)</li>
+	 * <li>FR_DOUBLE_CLOCHE (400x600 mm ; 15.75x23.62 in)</li>
+	 * <li>FR_DOUBLE_POT (400x620 mm ; 15.75x24.41 in)</li>
+	 * <li>FR_ECU (400x520 mm ; 15.75x20.47 in)</li>
+	 * <li>FR_COURONNE (360x460 mm ; 14.17x18.11 in)</li>
+	 * <li>FR_TELLIERE (340x440 mm ; 13.39x17.32 in)</li>
+	 * <li>FR_POT (310x400 mm ; 12.20x15.75 in)</li>
+	 * </ul>
+	 * @return array containing page width and height in points
+	 * @public
+	 * @since 5.0.010 (2010-05-17)
+	 */
+	public function getPageSizeFromFormat($format) {
+		// Paper cordinates are calculated in this way: (inches * 72) where (1 inch = 25.4 mm)
+		switch (strtoupper($format)) {
+			// ISO 216 A Series + 2 SIS 014711 extensions
+			case 'A0' : {$pf = array( 2383.937, 3370.394); break;}
+			case 'A1' : {$pf = array( 1683.780, 2383.937); break;}
+			case 'A2' : {$pf = array( 1190.551, 1683.780); break;}
+			case 'A3' : {$pf = array(  841.890, 1190.551); break;}
+			case 'A4' : {$pf = array(  595.276,  841.890); break;}
+			case 'A5' : {$pf = array(  419.528,  595.276); break;}
+			case 'A6' : {$pf = array(  297.638,  419.528); break;}
+			case 'A7' : {$pf = array(  209.764,  297.638); break;}
+			case 'A8' : {$pf = array(  147.402,  209.764); break;}
+			case 'A9' : {$pf = array(  104.882,  147.402); break;}
+			case 'A10': {$pf = array(   73.701,  104.882); break;}
+			case 'A11': {$pf = array(   51.024,   73.701); break;}
+			case 'A12': {$pf = array(   36.850,   51.024); break;}
+			// ISO 216 B Series + 2 SIS 014711 extensions
+			case 'B0' : {$pf = array( 2834.646, 4008.189); break;}
+			case 'B1' : {$pf = array( 2004.094, 2834.646); break;}
+			case 'B2' : {$pf = array( 1417.323, 2004.094); break;}
+			case 'B3' : {$pf = array( 1000.630, 1417.323); break;}
+			case 'B4' : {$pf = array(  708.661, 1000.630); break;}
+			case 'B5' : {$pf = array(  498.898,  708.661); break;}
+			case 'B6' : {$pf = array(  354.331,  498.898); break;}
+			case 'B7' : {$pf = array(  249.449,  354.331); break;}
+			case 'B8' : {$pf = array(  175.748,  249.449); break;}
+			case 'B9' : {$pf = array(  124.724,  175.748); break;}
+			case 'B10': {$pf = array(   87.874,  124.724); break;}
+			case 'B11': {$pf = array(   62.362,   87.874); break;}
+			case 'B12': {$pf = array(   42.520,   62.362); break;}
+			// ISO 216 C Series + 2 SIS 014711 extensions + 2 EXTENSION
+			case 'C0' : {$pf = array( 2599.370, 3676.535); break;}
+			case 'C1' : {$pf = array( 1836.850, 2599.370); break;}
+			case 'C2' : {$pf = array( 1298.268, 1836.850); break;}
+			case 'C3' : {$pf = array(  918.425, 1298.268); break;}
+			case 'C4' : {$pf = array(  649.134,  918.425); break;}
+			case 'C5' : {$pf = array(  459.213,  649.134); break;}
+			case 'C6' : {$pf = array(  323.150,  459.213); break;}
+			case 'C7' : {$pf = array(  229.606,  323.150); break;}
+			case 'C8' : {$pf = array(  161.575,  229.606); break;}
+			case 'C9' : {$pf = array(  113.386,  161.575); break;}
+			case 'C10': {$pf = array(   79.370,  113.386); break;}
+			case 'C11': {$pf = array(   56.693,   79.370); break;}
+			case 'C12': {$pf = array(   39.685,   56.693); break;}
+			case 'C76': {$pf = array(  229.606,  459.213); break;}
+			case 'DL' : {$pf = array(  311.811,  623.622); break;}
+			// SIS 014711 E Series
+			case 'E0' : {$pf = array( 2491.654, 3517.795); break;}
+			case 'E1' : {$pf = array( 1757.480, 2491.654); break;}
+			case 'E2' : {$pf = array( 1247.244, 1757.480); break;}
+			case 'E3' : {$pf = array(  878.740, 1247.244); break;}
+			case 'E4' : {$pf = array(  623.622,  878.740); break;}
+			case 'E5' : {$pf = array(  439.370,  623.622); break;}
+			case 'E6' : {$pf = array(  311.811,  439.370); break;}
+			case 'E7' : {$pf = array(  221.102,  311.811); break;}
+			case 'E8' : {$pf = array(  155.906,  221.102); break;}
+			case 'E9' : {$pf = array(  110.551,  155.906); break;}
+			case 'E10': {$pf = array(   76.535,  110.551); break;}
+			case 'E11': {$pf = array(   53.858,   76.535); break;}
+			case 'E12': {$pf = array(   36.850,   53.858); break;}
+			// SIS 014711 G Series
+			case 'G0' : {$pf = array( 2715.591, 3838.110); break;}
+			case 'G1' : {$pf = array( 1919.055, 2715.591); break;}
+			case 'G2' : {$pf = array( 1357.795, 1919.055); break;}
+			case 'G3' : {$pf = array(  958.110, 1357.795); break;}
+			case 'G4' : {$pf = array(  677.480,  958.110); break;}
+			case 'G5' : {$pf = array(  479.055,  677.480); break;}
+			case 'G6' : {$pf = array(  337.323,  479.055); break;}
+			case 'G7' : {$pf = array(  238.110,  337.323); break;}
+			case 'G8' : {$pf = array(  167.244,  238.110); break;}
+			case 'G9' : {$pf = array(  119.055,  167.244); break;}
+			case 'G10': {$pf = array(   82.205,  119.055); break;}
+			case 'G11': {$pf = array(   59.528,   82.205); break;}
+			case 'G12': {$pf = array(   39.685,   59.528); break;}
+			// ISO Press
+			case 'RA0': {$pf = array( 2437.795, 3458.268); break;}
+			case 'RA1': {$pf = array( 1729.134, 2437.795); break;}
+			case 'RA2': {$pf = array( 1218.898, 1729.134); break;}
+			case 'RA3': {$pf = array(  864.567, 1218.898); break;}
+			case 'RA4': {$pf = array(  609.449,  864.567); break;}
+			case 'SRA0': {$pf = array( 2551.181, 3628.346); break;}
+			case 'SRA1': {$pf = array( 1814.173, 2551.181); break;}
+			case 'SRA2': {$pf = array( 1275.591, 1814.173); break;}
+			case 'SRA3': {$pf = array(  907.087, 1275.591); break;}
+			case 'SRA4': {$pf = array(  637.795,  907.087); break;}
+			// German  DIN 476
+			case '4A0': {$pf = array( 4767.874, 6740.787); break;}
+			case '2A0': {$pf = array( 3370.394, 4767.874); break;}
+			// Variations on the ISO Standard
+			case 'A2_EXTRA'   : {$pf = array( 1261.417, 1754.646); break;}
+			case 'A3+'        : {$pf = array(  932.598, 1369.134); break;}
+			case 'A3_EXTRA'   : {$pf = array(  912.756, 1261.417); break;}
+			case 'A3_SUPER'   : {$pf = array(  864.567, 1440.000); break;}
+			case 'SUPER_A3'   : {$pf = array(  864.567, 1380.472); break;}
+			case 'A4_EXTRA'   : {$pf = array(  666.142,  912.756); break;}
+			case 'A4_SUPER'   : {$pf = array(  649.134,  912.756); break;}
+			case 'SUPER_A4'   : {$pf = array(  643.465, 1009.134); break;}
+			case 'A4_LONG'    : {$pf = array(  595.276,  986.457); break;}
+			case 'F4'         : {$pf = array(  595.276,  935.433); break;}
+			case 'SO_B5_EXTRA': {$pf = array(  572.598,  782.362); break;}
+			case 'A5_EXTRA'   : {$pf = array(  490.394,  666.142); break;}
+			// ANSI Series
+			case 'ANSI_E': {$pf = array( 2448.000, 3168.000); break;}
+			case 'ANSI_D': {$pf = array( 1584.000, 2448.000); break;}
+			case 'ANSI_C': {$pf = array( 1224.000, 1584.000); break;}
+			case 'ANSI_B': {$pf = array(  792.000, 1224.000); break;}
+			case 'ANSI_A': {$pf = array(  612.000,  792.000); break;}
+			// Traditional 'Loose' North American Paper Sizes
+			case 'USLEDGER':
+			case 'LEDGER' : {$pf = array( 1224.000,  792.000); break;}
+			case 'ORGANIZERK':
+			case 'BIBLE':
+			case 'USTABLOID':
+			case 'TABLOID': {$pf = array(  792.000, 1224.000); break;}
+			case 'ORGANIZERM':
+			case 'USLETTER':
+			case 'LETTER' : {$pf = array(  612.000,  792.000); break;}
+			case 'USLEGAL':
+			case 'LEGAL'  : {$pf = array(  612.000, 1008.000); break;}
+			case 'GOVERNMENTLETTER':
+			case 'GLETTER': {$pf = array(  576.000,  756.000); break;}
+			case 'JUNIORLEGAL':
+			case 'JLEGAL' : {$pf = array(  576.000,  360.000); break;}
+			// Other North American Paper Sizes
+			case 'QUADDEMY': {$pf = array( 2520.000, 3240.000); break;}
+			case 'SUPER_B': {$pf = array(  936.000, 1368.000); break;}
+			case 'QUARTO': {$pf = array(  648.000,  792.000); break;}
+			case 'GOVERNMENTLEGAL':
+			case 'FOLIO': {$pf = array(  612.000,  936.000); break;}
+			case 'MONARCH':
+			case 'EXECUTIVE': {$pf = array(  522.000,  756.000); break;}
+			case 'ORGANIZERL':
+			case 'STATEMENT':
+			case 'MEMO': {$pf = array(  396.000,  612.000); break;}
+			case 'FOOLSCAP': {$pf = array(  595.440,  936.000); break;}
+			case 'COMPACT': {$pf = array(  306.000,  486.000); break;}
+			case 'ORGANIZERJ': {$pf = array(  198.000,  360.000); break;}
+			// Canadian standard CAN 2-9.60M
+			case 'P1': {$pf = array( 1587.402, 2437.795); break;}
+			case 'P2': {$pf = array( 1218.898, 1587.402); break;}
+			case 'P3': {$pf = array(  793.701, 1218.898); break;}
+			case 'P4': {$pf = array(  609.449,  793.701); break;}
+			case 'P5': {$pf = array(  396.850,  609.449); break;}
+			case 'P6': {$pf = array(  303.307,  396.850); break;}
+			// North American Architectural Sizes
+			case 'ARCH_E' : {$pf = array( 2592.000, 3456.000); break;}
+			case 'ARCH_E1': {$pf = array( 2160.000, 3024.000); break;}
+			case 'ARCH_D' : {$pf = array( 1728.000, 2592.000); break;}
+			case 'BROADSHEET':
+			case 'ARCH_C' : {$pf = array( 1296.000, 1728.000); break;}
+			case 'ARCH_B' : {$pf = array(  864.000, 1296.000); break;}
+			case 'ARCH_A' : {$pf = array(  648.000,  864.000); break;}
+			// --- North American Envelope Sizes ---
+			//   - Announcement Envelopes
+			case 'ANNENV_A2'  : {$pf = array(  314.640,  414.000); break;}
+			case 'ANNENV_A6'  : {$pf = array(  342.000,  468.000); break;}
+			case 'ANNENV_A7'  : {$pf = array(  378.000,  522.000); break;}
+			case 'ANNENV_A8'  : {$pf = array(  396.000,  584.640); break;}
+			case 'ANNENV_A10' : {$pf = array(  450.000,  692.640); break;}
+			case 'ANNENV_SLIM': {$pf = array(  278.640,  638.640); break;}
+			//   - Commercial Envelopes
+			case 'COMMENV_N6_1/4': {$pf = array(  252.000,  432.000); break;}
+			case 'COMMENV_N6_3/4': {$pf = array(  260.640,  468.000); break;}
+			case 'COMMENV_N8'    : {$pf = array(  278.640,  540.000); break;}
+			case 'COMMENV_N9'    : {$pf = array(  278.640,  638.640); break;}
+			case 'COMMENV_N10'   : {$pf = array(  296.640,  684.000); break;}
+			case 'COMMENV_N11'   : {$pf = array(  324.000,  746.640); break;}
+			case 'COMMENV_N12'   : {$pf = array(  342.000,  792.000); break;}
+			case 'COMMENV_N14'   : {$pf = array(  360.000,  828.000); break;}
+			//   - Catalogue Envelopes
+			case 'CATENV_N1'     : {$pf = array(  432.000,  648.000); break;}
+			case 'CATENV_N1_3/4' : {$pf = array(  468.000,  684.000); break;}
+			case 'CATENV_N2'     : {$pf = array(  468.000,  720.000); break;}
+			case 'CATENV_N3'     : {$pf = array(  504.000,  720.000); break;}
+			case 'CATENV_N6'     : {$pf = array(  540.000,  756.000); break;}
+			case 'CATENV_N7'     : {$pf = array(  576.000,  792.000); break;}
+			case 'CATENV_N8'     : {$pf = array(  594.000,  810.000); break;}
+			case 'CATENV_N9_1/2' : {$pf = array(  612.000,  756.000); break;}
+			case 'CATENV_N9_3/4' : {$pf = array(  630.000,  810.000); break;}
+			case 'CATENV_N10_1/2': {$pf = array(  648.000,  864.000); break;}
+			case 'CATENV_N12_1/2': {$pf = array(  684.000,  900.000); break;}
+			case 'CATENV_N13_1/2': {$pf = array(  720.000,  936.000); break;}
+			case 'CATENV_N14_1/4': {$pf = array(  810.000,  882.000); break;}
+			case 'CATENV_N14_1/2': {$pf = array(  828.000, 1044.000); break;}
+			// Japanese (JIS P 0138-61) Standard B-Series
+			case 'JIS_B0' : {$pf = array( 2919.685, 4127.244); break;}
+			case 'JIS_B1' : {$pf = array( 2063.622, 2919.685); break;}
+			case 'JIS_B2' : {$pf = array( 1459.843, 2063.622); break;}
+			case 'JIS_B3' : {$pf = array( 1031.811, 1459.843); break;}
+			case 'JIS_B4' : {$pf = array(  728.504, 1031.811); break;}
+			case 'JIS_B5' : {$pf = array(  515.906,  728.504); break;}
+			case 'JIS_B6' : {$pf = array(  362.835,  515.906); break;}
+			case 'JIS_B7' : {$pf = array(  257.953,  362.835); break;}
+			case 'JIS_B8' : {$pf = array(  181.417,  257.953); break;}
+			case 'JIS_B9' : {$pf = array(  127.559,  181.417); break;}
+			case 'JIS_B10': {$pf = array(   90.709,  127.559); break;}
+			case 'JIS_B11': {$pf = array(   62.362,   90.709); break;}
+			case 'JIS_B12': {$pf = array(   45.354,   62.362); break;}
+			// PA Series
+			case 'PA0' : {$pf = array( 2381.102, 3174.803,); break;}
+			case 'PA1' : {$pf = array( 1587.402, 2381.102); break;}
+			case 'PA2' : {$pf = array( 1190.551, 1587.402); break;}
+			case 'PA3' : {$pf = array(  793.701, 1190.551); break;}
+			case 'PA4' : {$pf = array(  595.276,  793.701); break;}
+			case 'PA5' : {$pf = array(  396.850,  595.276); break;}
+			case 'PA6' : {$pf = array(  297.638,  396.850); break;}
+			case 'PA7' : {$pf = array(  198.425,  297.638); break;}
+			case 'PA8' : {$pf = array(  147.402,  198.425); break;}
+			case 'PA9' : {$pf = array(   99.213,  147.402); break;}
+			case 'PA10': {$pf = array(   73.701,   99.213); break;}
+			// Standard Photographic Print Sizes
+			case 'PASSPORT_PHOTO': {$pf = array(   99.213,  127.559); break;}
+			case 'E'   : {$pf = array(  233.858,  340.157); break;}
+			case 'L':
+			case '3R'  : {$pf = array(  252.283,  360.000); break;}
+			case 'KG':
+			case '4R'  : {$pf = array(  289.134,  430.866); break;}
+			case '4D'  : {$pf = array(  340.157,  430.866); break;}
+			case '2L':
+			case '5R'  : {$pf = array(  360.000,  504.567); break;}
+			case '8P':
+			case '6R'  : {$pf = array(  430.866,  575.433); break;}
+			case '6P':
+			case '8R'  : {$pf = array(  575.433,  720.000); break;}
+			case '6PW':
+			case 'S8R' : {$pf = array(  575.433,  864.567); break;}
+			case '4P':
+			case '10R' : {$pf = array(  720.000,  864.567); break;}
+			case '4PW':
+			case 'S10R': {$pf = array(  720.000, 1080.000); break;}
+			case '11R' : {$pf = array(  790.866, 1009.134); break;}
+			case 'S11R': {$pf = array(  790.866, 1224.567); break;}
+			case '12R' : {$pf = array(  864.567, 1080.000); break;}
+			case 'S12R': {$pf = array(  864.567, 1292.598); break;}
+			// Common Newspaper Sizes
+			case 'NEWSPAPER_BROADSHEET': {$pf = array( 2125.984, 1700.787); break;}
+			case 'NEWSPAPER_BERLINER'  : {$pf = array( 1332.283,  892.913); break;}
+			case 'NEWSPAPER_TABLOID':
+			case 'NEWSPAPER_COMPACT'   : {$pf = array( 1218.898,  793.701); break;}
+			// Business Cards
+			case 'CREDIT_CARD':
+			case 'BUSINESS_CARD':
+			case 'BUSINESS_CARD_ISO7810': {$pf = array(  153.014,  242.646); break;}
+			case 'BUSINESS_CARD_ISO216' : {$pf = array(  147.402,  209.764); break;}
+			case 'BUSINESS_CARD_IT':
+			case 'BUSINESS_CARD_UK':
+			case 'BUSINESS_CARD_FR':
+			case 'BUSINESS_CARD_DE':
+			case 'BUSINESS_CARD_ES'     : {$pf = array(  155.906,  240.945); break;}
+			case 'BUSINESS_CARD_CA':
+			case 'BUSINESS_CARD_US'     : {$pf = array(  144.567,  252.283); break;}
+			case 'BUSINESS_CARD_JP'     : {$pf = array(  155.906,  257.953); break;}
+			case 'BUSINESS_CARD_HK'     : {$pf = array(  153.071,  255.118); break;}
+			case 'BUSINESS_CARD_AU':
+			case 'BUSINESS_CARD_DK':
+			case 'BUSINESS_CARD_SE'     : {$pf = array(  155.906,  255.118); break;}
+			case 'BUSINESS_CARD_RU':
+			case 'BUSINESS_CARD_CZ':
+			case 'BUSINESS_CARD_FI':
+			case 'BUSINESS_CARD_HU':
+			case 'BUSINESS_CARD_IL'     : {$pf = array(  141.732,  255.118); break;}
+			// Billboards
+			case '4SHEET' : {$pf = array( 2880.000, 4320.000); break;}
+			case '6SHEET' : {$pf = array( 3401.575, 5102.362); break;}
+			case '12SHEET': {$pf = array( 8640.000, 4320.000); break;}
+			case '16SHEET': {$pf = array( 5760.000, 8640.000); break;}
+			case '32SHEET': {$pf = array(11520.000, 8640.000); break;}
+			case '48SHEET': {$pf = array(17280.000, 8640.000); break;}
+			case '64SHEET': {$pf = array(23040.000, 8640.000); break;}
+			case '96SHEET': {$pf = array(34560.000, 8640.000); break;}
+			// Old European Sizes
+			//   - Old Imperial English Sizes
+			case 'EN_EMPEROR'          : {$pf = array( 3456.000, 5184.000); break;}
+			case 'EN_ANTIQUARIAN'      : {$pf = array( 2232.000, 3816.000); break;}
+			case 'EN_GRAND_EAGLE'      : {$pf = array( 2070.000, 3024.000); break;}
+			case 'EN_DOUBLE_ELEPHANT'  : {$pf = array( 1926.000, 2880.000); break;}
+			case 'EN_ATLAS'            : {$pf = array( 1872.000, 2448.000); break;}
+			case 'EN_COLOMBIER'        : {$pf = array( 1692.000, 2484.000); break;}
+			case 'EN_ELEPHANT'         : {$pf = array( 1656.000, 2016.000); break;}
+			case 'EN_DOUBLE_DEMY'      : {$pf = array( 1620.000, 2556.000); break;}
+			case 'EN_IMPERIAL'         : {$pf = array( 1584.000, 2160.000); break;}
+			case 'EN_PRINCESS'         : {$pf = array( 1548.000, 2016.000); break;}
+			case 'EN_CARTRIDGE'        : {$pf = array( 1512.000, 1872.000); break;}
+			case 'EN_DOUBLE_LARGE_POST': {$pf = array( 1512.000, 2376.000); break;}
+			case 'EN_ROYAL'            : {$pf = array( 1440.000, 1800.000); break;}
+			case 'EN_SHEET':
+			case 'EN_HALF_POST'        : {$pf = array( 1404.000, 1692.000); break;}
+			case 'EN_SUPER_ROYAL'      : {$pf = array( 1368.000, 1944.000); break;}
+			case 'EN_DOUBLE_POST'      : {$pf = array( 1368.000, 2196.000); break;}
+			case 'EN_MEDIUM'           : {$pf = array( 1260.000, 1656.000); break;}
+			case 'EN_DEMY'             : {$pf = array( 1260.000, 1620.000); break;}
+			case 'EN_LARGE_POST'       : {$pf = array( 1188.000, 1512.000); break;}
+			case 'EN_COPY_DRAUGHT'     : {$pf = array( 1152.000, 1440.000); break;}
+			case 'EN_POST'             : {$pf = array( 1116.000, 1386.000); break;}
+			case 'EN_CROWN'            : {$pf = array( 1080.000, 1440.000); break;}
+			case 'EN_PINCHED_POST'     : {$pf = array( 1062.000, 1332.000); break;}
+			case 'EN_BRIEF'            : {$pf = array(  972.000, 1152.000); break;}
+			case 'EN_FOOLSCAP'         : {$pf = array(  972.000, 1224.000); break;}
+			case 'EN_SMALL_FOOLSCAP'   : {$pf = array(  954.000, 1188.000); break;}
+			case 'EN_POTT'             : {$pf = array(  900.000, 1080.000); break;}
+			//   - Old Imperial Belgian Sizes
+			case 'BE_GRAND_AIGLE' : {$pf = array( 1984.252, 2948.031); break;}
+			case 'BE_COLOMBIER'   : {$pf = array( 1757.480, 2409.449); break;}
+			case 'BE_DOUBLE_CARRE': {$pf = array( 1757.480, 2607.874); break;}
+			case 'BE_ELEPHANT'    : {$pf = array( 1746.142, 2182.677); break;}
+			case 'BE_PETIT_AIGLE' : {$pf = array( 1700.787, 2381.102); break;}
+			case 'BE_GRAND_JESUS' : {$pf = array( 1559.055, 2069.291); break;}
+			case 'BE_JESUS'       : {$pf = array( 1530.709, 2069.291); break;}
+			case 'BE_RAISIN'      : {$pf = array( 1417.323, 1842.520); break;}
+			case 'BE_GRAND_MEDIAN': {$pf = array( 1303.937, 1714.961); break;}
+			case 'BE_DOUBLE_POSTE': {$pf = array( 1233.071, 1601.575); break;}
+			case 'BE_COQUILLE'    : {$pf = array( 1218.898, 1587.402); break;}
+			case 'BE_PETIT_MEDIAN': {$pf = array( 1176.378, 1502.362); break;}
+			case 'BE_RUCHE'       : {$pf = array( 1020.472, 1303.937); break;}
+			case 'BE_PROPATRIA'   : {$pf = array(  977.953, 1218.898); break;}
+			case 'BE_LYS'         : {$pf = array(  898.583, 1125.354); break;}
+			case 'BE_POT'         : {$pf = array(  870.236, 1088.504); break;}
+			case 'BE_ROSETTE'     : {$pf = array(  765.354,  983.622); break;}
+			//   - Old Imperial French Sizes
+			case 'FR_UNIVERS'          : {$pf = array( 2834.646, 3685.039); break;}
+			case 'FR_DOUBLE_COLOMBIER' : {$pf = array( 2551.181, 3571.654); break;}
+			case 'FR_GRANDE_MONDE'     : {$pf = array( 2551.181, 3571.654); break;}
+			case 'FR_DOUBLE_SOLEIL'    : {$pf = array( 2267.717, 3401.575); break;}
+			case 'FR_DOUBLE_JESUS'     : {$pf = array( 2154.331, 3174.803); break;}
+			case 'FR_GRAND_AIGLE'      : {$pf = array( 2125.984, 3004.724); break;}
+			case 'FR_PETIT_AIGLE'      : {$pf = array( 1984.252, 2664.567); break;}
+			case 'FR_DOUBLE_RAISIN'    : {$pf = array( 1842.520, 2834.646); break;}
+			case 'FR_JOURNAL'          : {$pf = array( 1842.520, 2664.567); break;}
+			case 'FR_COLOMBIER_AFFICHE': {$pf = array( 1785.827, 2551.181); break;}
+			case 'FR_DOUBLE_CAVALIER'  : {$pf = array( 1757.480, 2607.874); break;}
+			case 'FR_CLOCHE'           : {$pf = array( 1700.787, 2267.717); break;}
+			case 'FR_SOLEIL'           : {$pf = array( 1700.787, 2267.717); break;}
+			case 'FR_DOUBLE_CARRE'     : {$pf = array( 1587.402, 2551.181); break;}
+			case 'FR_DOUBLE_COQUILLE'  : {$pf = array( 1587.402, 2494.488); break;}
+			case 'FR_JESUS'            : {$pf = array( 1587.402, 2154.331); break;}
+			case 'FR_RAISIN'           : {$pf = array( 1417.323, 1842.520); break;}
+			case 'FR_CAVALIER'         : {$pf = array( 1303.937, 1757.480); break;}
+			case 'FR_DOUBLE_COURONNE'  : {$pf = array( 1303.937, 2040.945); break;}
+			case 'FR_CARRE'            : {$pf = array( 1275.591, 1587.402); break;}
+			case 'FR_COQUILLE'         : {$pf = array( 1247.244, 1587.402); break;}
+			case 'FR_DOUBLE_TELLIERE'  : {$pf = array( 1247.244, 1927.559); break;}
+			case 'FR_DOUBLE_CLOCHE'    : {$pf = array( 1133.858, 1700.787); break;}
+			case 'FR_DOUBLE_POT'       : {$pf = array( 1133.858, 1757.480); break;}
+			case 'FR_ECU'              : {$pf = array( 1133.858, 1474.016); break;}
+			case 'FR_COURONNE'         : {$pf = array( 1020.472, 1303.937); break;}
+			case 'FR_TELLIERE'         : {$pf = array(  963.780, 1247.244); break;}
+			case 'FR_POT'              : {$pf = array(  878.740, 1133.858); break;}
+			// DEFAULT ISO A4
+			default: {$pf = array(  595.276,  841.890); break;}
+		}
+		return $pf;
+	}
+
+	/**
+	 * Change the format of the current page
+	 * @param $format (mixed) The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() documentation or an array of two numners (width, height) or an array containing the following measures and options:<ul>
+	 * <li>['format'] = page format name (one of the above);</li>
+	 * <li>['Rotate'] : The number of degrees by which the page shall be rotated clockwise when displayed or printed. The value shall be a multiple of 90.</li>
+	 * <li>['PZ'] : The page's preferred zoom (magnification) factor.</li>
+	 * <li>['MediaBox'] : the boundaries of the physical medium on which the page shall be displayed or printed:</li>
+	 * <li>['MediaBox']['llx'] : lower-left x coordinate in points</li>
+	 * <li>['MediaBox']['lly'] : lower-left y coordinate in points</li>
+	 * <li>['MediaBox']['urx'] : upper-right x coordinate in points</li>
+	 * <li>['MediaBox']['ury'] : upper-right y coordinate in points</li>
+	 * <li>['CropBox'] : the visible region of default user space:</li>
+	 * <li>['CropBox']['llx'] : lower-left x coordinate in points</li>
+	 * <li>['CropBox']['lly'] : lower-left y coordinate in points</li>
+	 * <li>['CropBox']['urx'] : upper-right x coordinate in points</li>
+	 * <li>['CropBox']['ury'] : upper-right y coordinate in points</li>
+	 * <li>['BleedBox'] : the region to which the contents of the page shall be clipped when output in a production environment:</li>
+	 * <li>['BleedBox']['llx'] : lower-left x coordinate in points</li>
+	 * <li>['BleedBox']['lly'] : lower-left y coordinate in points</li>
+	 * <li>['BleedBox']['urx'] : upper-right x coordinate in points</li>
+	 * <li>['BleedBox']['ury'] : upper-right y coordinate in points</li>
+	 * <li>['TrimBox'] : the intended dimensions of the finished page after trimming:</li>
+	 * <li>['TrimBox']['llx'] : lower-left x coordinate in points</li>
+	 * <li>['TrimBox']['lly'] : lower-left y coordinate in points</li>
+	 * <li>['TrimBox']['urx'] : upper-right x coordinate in points</li>
+	 * <li>['TrimBox']['ury'] : upper-right y coordinate in points</li>
+	 * <li>['ArtBox'] : the extent of the page's meaningful content:</li>
+	 * <li>['ArtBox']['llx'] : lower-left x coordinate in points</li>
+	 * <li>['ArtBox']['lly'] : lower-left y coordinate in points</li>
+	 * <li>['ArtBox']['urx'] : upper-right x coordinate in points</li>
+	 * <li>['ArtBox']['ury'] : upper-right y coordinate in points</li>
+	 * <li>['BoxColorInfo'] :specify the colours and other visual characteristics that should be used in displaying guidelines on the screen for each of the possible page boundaries other than the MediaBox:</li>
+	 * <li>['BoxColorInfo'][BOXTYPE]['C'] : an array of three numbers in the range 0-255, representing the components in the DeviceRGB colour space.</li>
+	 * <li>['BoxColorInfo'][BOXTYPE]['W'] : the guideline width in default user units</li>
+	 * <li>['BoxColorInfo'][BOXTYPE]['S'] : the guideline style: S = Solid; D = Dashed</li>
+	 * <li>['BoxColorInfo'][BOXTYPE]['D'] : dash array defining a pattern of dashes and gaps to be used in drawing dashed guidelines</li>
+	 * <li>['trans'] : the style and duration of the visual transition to use when moving from another page to the given page during a presentation</li>
+	 * <li>['trans']['Dur'] : The page's display duration (also called its advance timing): the maximum length of time, in seconds, that the page shall be displayed during presentations before the viewer application shall automatically advance to the next page.</li>
+	 * <li>['trans']['S'] : transition style : Split, Blinds, Box, Wipe, Dissolve, Glitter, R, Fly, Push, Cover, Uncover, Fade</li>
+	 * <li>['trans']['D'] : The duration of the transition effect, in seconds.</li>
+	 * <li>['trans']['Dm'] : (Split and Blinds transition styles only) The dimension in which the specified transition effect shall occur: H = Horizontal, V = Vertical. Default value: H.</li>
+	 * <li>['trans']['M'] : (Split, Box and Fly transition styles only) The direction of motion for the specified transition effect: I = Inward from the edges of the page, O = Outward from the center of the pageDefault value: I.</li>
+	 * <li>['trans']['Di'] : (Wipe, Glitter, Fly, Cover, Uncover and Push transition styles only) The direction in which the specified transition effect shall moves, expressed in degrees counterclockwise starting from a left-to-right direction. If the value is a number, it shall be one of: 0 = Left to right, 90 = Bottom to top (Wipe only), 180 = Right to left (Wipe only), 270 = Top to bottom, 315 = Top-left to bottom-right (Glitter only). If the value is a name, it shall be None, which is relevant only for the Fly transition when the value of SS is not 1.0. Default value: 0.</li>
+	 * <li>['trans']['SS'] : (Fly transition style only) The starting or ending scale at which the changes shall be drawn. If M specifies an inward transition, the scale of the changes drawn shall progress from SS to 1.0 over the course of the transition. If M specifies an outward transition, the scale of the changes drawn shall progress from 1.0 to SS over the course of the transition. Default: 1.0.</li>
+	 * <li>['trans']['B'] : (Fly transition style only) If true, the area that shall be flown in is rectangular and opaque. Default: false.</li>
+	 * </ul>
+	 * @param $orientation (string) page orientation. Possible values are (case insensitive):<ul>
+	 * <li>P or Portrait (default)</li>
+	 * <li>L or Landscape</li>
+	 * <li>'' (empty string) for automatic orientation</li>
+	 * </ul>
+	 * @protected
+	 * @since 3.0.015 (2008-06-06)
+	 * @see getPageSizeFromFormat()
+	 */
+	protected function setPageFormat($format, $orientation='P') {
+		if (!empty($format) AND isset($this->pagedim[$this->page])) {
+			// remove inherited values
+			unset($this->pagedim[$this->page]);
+		}
+		if (is_string($format)) {
+			// get page measures from format name
+			$pf = $this->getPageSizeFromFormat($format);
+			$this->fwPt = $pf[0];
+			$this->fhPt = $pf[1];
+		} else {
+			// the boundaries of the physical medium on which the page shall be displayed or printed
+			if (isset($format['MediaBox'])) {
+				$this->setPageBoxes($this->page, 'MediaBox', $format['MediaBox']['llx'], $format['MediaBox']['lly'], $format['MediaBox']['urx'], $format['MediaBox']['ury'], false);
+				$this->fwPt = (($format['MediaBox']['urx'] - $format['MediaBox']['llx']) * $this->k);
+				$this->fhPt = (($format['MediaBox']['ury'] - $format['MediaBox']['lly']) * $this->k);
+			} else {
+				if (isset($format[0]) AND is_numeric($format[0]) AND isset($format[1]) AND is_numeric($format[1])) {
+					$pf = array(($format[0] * $this->k), ($format[1] * $this->k));
+				} else {
+					if (!isset($format['format'])) {
+						// default value
+						$format['format'] = 'A4';
+					}
+					$pf = $this->getPageSizeFromFormat($format['format']);
+				}
+				$this->fwPt = $pf[0];
+				$this->fhPt = $pf[1];
+				$this->setPageBoxes($this->page, 'MediaBox', 0, 0, $this->fwPt, $this->fhPt, true);
+			}
+			// the visible region of default user space
+			if (isset($format['CropBox'])) {
+				$this->setPageBoxes($this->page, 'CropBox', $format['CropBox']['llx'], $format['CropBox']['lly'], $format['CropBox']['urx'], $format['CropBox']['ury'], false);
+			}
+			// the region to which the contents of the page shall be clipped when output in a production environment
+			if (isset($format['BleedBox'])) {
+				$this->setPageBoxes($this->page, 'BleedBox', $format['BleedBox']['llx'], $format['BleedBox']['lly'], $format['BleedBox']['urx'], $format['BleedBox']['ury'], false);
+			}
+			// the intended dimensions of the finished page after trimming
+			if (isset($format['TrimBox'])) {
+				$this->setPageBoxes($this->page, 'TrimBox', $format['TrimBox']['llx'], $format['TrimBox']['lly'], $format['TrimBox']['urx'], $format['TrimBox']['ury'], false);
+			}
+			// the page's meaningful content (including potential white space)
+			if (isset($format['ArtBox'])) {
+				$this->setPageBoxes($this->page, 'ArtBox', $format['ArtBox']['llx'], $format['ArtBox']['lly'], $format['ArtBox']['urx'], $format['ArtBox']['ury'], false);
+			}
+			// specify the colours and other visual characteristics that should be used in displaying guidelines on the screen for the various page boundaries
+			if (isset($format['BoxColorInfo'])) {
+				$this->pagedim[$this->page]['BoxColorInfo'] = $format['BoxColorInfo'];
+			}
+			if (isset($format['Rotate']) AND (($format['Rotate'] % 90) == 0)) {
+				// The number of degrees by which the page shall be rotated clockwise when displayed or printed. The value shall be a multiple of 90.
+				$this->pagedim[$this->page]['Rotate'] = intval($format['Rotate']);
+			}
+			if (isset($format['PZ'])) {
+				// The page's preferred zoom (magnification) factor
+				$this->pagedim[$this->page]['PZ'] = floatval($format['PZ']);
+			}
+			if (isset($format['trans'])) {
+				// The style and duration of the visual transition to use when moving from another page to the given page during a presentation
+				if (isset($format['trans']['Dur'])) {
+					// The page's display duration
+					$this->pagedim[$this->page]['trans']['Dur'] = floatval($format['trans']['Dur']);
+				}
+				$stansition_styles = array('Split', 'Blinds', 'Box', 'Wipe', 'Dissolve', 'Glitter', 'R', 'Fly', 'Push', 'Cover', 'Uncover', 'Fade');
+				if (isset($format['trans']['S']) AND in_array($format['trans']['S'], $stansition_styles)) {
+					// The transition style that shall be used when moving to this page from another during a presentation
+					$this->pagedim[$this->page]['trans']['S'] = $format['trans']['S'];
+					$valid_effect = array('Split', 'Blinds');
+					$valid_vals = array('H', 'V');
+					if (isset($format['trans']['Dm']) AND in_array($format['trans']['S'], $valid_effect) AND in_array($format['trans']['Dm'], $valid_vals)) {
+						$this->pagedim[$this->page]['trans']['Dm'] = $format['trans']['Dm'];
+					}
+					$valid_effect = array('Split', 'Box', 'Fly');
+					$valid_vals = array('I', 'O');
+					if (isset($format['trans']['M']) AND in_array($format['trans']['S'], $valid_effect) AND in_array($format['trans']['M'], $valid_vals)) {
+						$this->pagedim[$this->page]['trans']['M'] = $format['trans']['M'];
+					}
+					$valid_effect = array('Wipe', 'Glitter', 'Fly', 'Cover', 'Uncover', 'Push');
+					if (isset($format['trans']['Di']) AND in_array($format['trans']['S'], $valid_effect)) {
+						if (((($format['trans']['Di'] == 90) OR ($format['trans']['Di'] == 180)) AND ($format['trans']['S'] == 'Wipe'))
+							OR (($format['trans']['Di'] == 315) AND ($format['trans']['S'] == 'Glitter'))
+							OR (($format['trans']['Di'] == 0) OR ($format['trans']['Di'] == 270))) {
+							$this->pagedim[$this->page]['trans']['Di'] = intval($format['trans']['Di']);
+						}
+					}
+					if (isset($format['trans']['SS']) AND ($format['trans']['S'] == 'Fly')) {
+						$this->pagedim[$this->page]['trans']['SS'] = floatval($format['trans']['SS']);
+					}
+					if (isset($format['trans']['B']) AND ($format['trans']['B'] === true) AND ($format['trans']['S'] == 'Fly')) {
+						$this->pagedim[$this->page]['trans']['B'] = 'true';
+					}
+				} else {
+					$this->pagedim[$this->page]['trans']['S'] = 'R';
+				}
+				if (isset($format['trans']['D'])) {
+					// The duration of the transition effect, in seconds
+					$this->pagedim[$this->page]['trans']['D'] = floatval($format['trans']['D']);
+				} else {
+					$this->pagedim[$this->page]['trans']['D'] = 1;
+				}
+			}
+		}
+		$this->setPageOrientation($orientation);
+	}
+
+	/**
+	 * Set page boundaries.
+	 * @param $page (int) page number
+	 * @param $type (string) valid values are: <ul><li>'MediaBox' : the boundaries of the physical medium on which the page shall be displayed or printed;</li><li>'CropBox' : the visible region of default user space;</li><li>'BleedBox' : the region to which the contents of the page shall be clipped when output in a production environment;</li><li>'TrimBox' : the intended dimensions of the finished page after trimming;</li><li>'ArtBox' : the page's meaningful content (including potential white space).</li></ul>
+	 * @param $llx (float) lower-left x coordinate in user units
+	 * @param $lly (float) lower-left y coordinate in user units
+	 * @param $urx (float) upper-right x coordinate in user units
+	 * @param $ury (float) upper-right y coordinate in user units
+	 * @param $points (boolean) if true uses user units as unit of measure, otherwise uses PDF points
+	 * @public
+	 * @since 5.0.010 (2010-05-17)
+	 */
+	public function setPageBoxes($page, $type, $llx, $lly, $urx, $ury, $points=false) {
+		if (!isset($this->pagedim[$page])) {
+			// initialize array
+			$this->pagedim[$page] = array();
+		}
+		$pageboxes = array('MediaBox', 'CropBox', 'BleedBox', 'TrimBox', 'ArtBox');
+		if (!in_array($type, $pageboxes)) {
+			return;
+		}
+		if ($points) {
+			$k = 1;
+		} else {
+			$k = $this->k;
+		}
+		$this->pagedim[$page][$type]['llx'] = ($llx * $k);
+		$this->pagedim[$page][$type]['lly'] = ($lly * $k);
+		$this->pagedim[$page][$type]['urx'] = ($urx * $k);
+		$this->pagedim[$page][$type]['ury'] = ($ury * $k);
+	}
+
+	/**
+	 * Swap X and Y coordinates of page boxes (change page boxes orientation).
+	 * @param $page (int) page number
+	 * @protected
+	 * @since 5.0.010 (2010-05-17)
+	 */
+	protected function swapPageBoxCoordinates($page) {
+		$pageboxes = array('MediaBox', 'CropBox', 'BleedBox', 'TrimBox', 'ArtBox');
+		foreach ($pageboxes as $type) {
+			// swap X and Y coordinates
+			if (isset($this->pagedim[$page][$type])) {
+				$tmp = $this->pagedim[$page][$type]['llx'];
+				$this->pagedim[$page][$type]['llx'] = $this->pagedim[$page][$type]['lly'];
+				$this->pagedim[$page][$type]['lly'] = $tmp;
+				$tmp = $this->pagedim[$page][$type]['urx'];
+				$this->pagedim[$page][$type]['urx'] = $this->pagedim[$page][$type]['ury'];
+				$this->pagedim[$page][$type]['ury'] = $tmp;
+			}
+		}
+	}
+
+	/**
+	 * Set page orientation.
+	 * @param $orientation (string) page orientation. Possible values are (case insensitive):<ul><li>P or Portrait (default)</li><li>L or Landscape</li><li>'' (empty string) for automatic orientation</li></ul>
+	 * @param $autopagebreak (boolean) Boolean indicating if auto-page-break mode should be on or off.
+	 * @param $bottommargin (float) bottom margin of the page.
+	 * @public
+	 * @since 3.0.015 (2008-06-06)
+	 */
+	public function setPageOrientation($orientation, $autopagebreak='', $bottommargin='') {
+		if (!isset($this->pagedim[$this->page]['MediaBox'])) {
+			// the boundaries of the physical medium on which the page shall be displayed or printed
+			$this->setPageBoxes($this->page, 'MediaBox', 0, 0, $this->fwPt, $this->fhPt, true);
+		}
+		if (!isset($this->pagedim[$this->page]['CropBox'])) {
+			// the visible region of default user space
+			$this->setPageBoxes($this->page, 'CropBox', $this->pagedim[$this->page]['MediaBox']['llx'], $this->pagedim[$this->page]['MediaBox']['lly'], $this->pagedim[$this->page]['MediaBox']['urx'], $this->pagedim[$this->page]['MediaBox']['ury'], true);
+		}
+		if (!isset($this->pagedim[$this->page]['BleedBox'])) {
+			// the region to which the contents of the page shall be clipped when output in a production environment
+			$this->setPageBoxes($this->page, 'BleedBox', $this->pagedim[$this->page]['CropBox']['llx'], $this->pagedim[$this->page]['CropBox']['lly'], $this->pagedim[$this->page]['CropBox']['urx'], $this->pagedim[$this->page]['CropBox']['ury'], true);
+		}
+		if (!isset($this->pagedim[$this->page]['TrimBox'])) {
+			// the intended dimensions of the finished page after trimming
+			$this->setPageBoxes($this->page, 'TrimBox', $this->pagedim[$this->page]['CropBox']['llx'], $this->pagedim[$this->page]['CropBox']['lly'], $this->pagedim[$this->page]['CropBox']['urx'], $this->pagedim[$this->page]['CropBox']['ury'], true);
+		}
+		if (!isset($this->pagedim[$this->page]['ArtBox'])) {
+			// the page's meaningful content (including potential white space)
+			$this->setPageBoxes($this->page, 'ArtBox', $this->pagedim[$this->page]['CropBox']['llx'], $this->pagedim[$this->page]['CropBox']['lly'], $this->pagedim[$this->page]['CropBox']['urx'], $this->pagedim[$this->page]['CropBox']['ury'], true);
+		}
+		if (!isset($this->pagedim[$this->page]['Rotate'])) {
+			// The number of degrees by which the page shall be rotated clockwise when displayed or printed. The value shall be a multiple of 90.
+			$this->pagedim[$this->page]['Rotate'] = 0;
+		}
+		if (!isset($this->pagedim[$this->page]['PZ'])) {
+			// The page's preferred zoom (magnification) factor
+			$this->pagedim[$this->page]['PZ'] = 1;
+		}
+		if ($this->fwPt > $this->fhPt) {
+			// landscape
+			$default_orientation = 'L';
+		} else {
+			// portrait
+			$default_orientation = 'P';
+		}
+		$valid_orientations = array('P', 'L');
+		if (empty($orientation)) {
+			$orientation = $default_orientation;
+		} else {
+			$orientation = strtoupper($orientation{0});
+		}
+		if (in_array($orientation, $valid_orientations) AND ($orientation != $default_orientation)) {
+			$this->CurOrientation = $orientation;
+			$this->wPt = $this->fhPt;
+			$this->hPt = $this->fwPt;
+		} else {
+			$this->CurOrientation = $default_orientation;
+			$this->wPt = $this->fwPt;
+			$this->hPt = $this->fhPt;
+		}
+		if ((abs($this->pagedim[$this->page]['MediaBox']['urx'] - $this->hPt) < $this->feps) AND (abs($this->pagedim[$this->page]['MediaBox']['ury'] - $this->wPt) < $this->feps)){
+			// swap X and Y coordinates (change page orientation)
+			$this->swapPageBoxCoordinates($this->page);
+		}
+		$this->w = $this->wPt / $this->k;
+		$this->h = $this->hPt / $this->k;
+		if ($this->empty_string($autopagebreak)) {
+			if (isset($this->AutoPageBreak)) {
+				$autopagebreak = $this->AutoPageBreak;
+			} else {
+				$autopagebreak = true;
+			}
+		}
+		if ($this->empty_string($bottommargin)) {
+			if (isset($this->bMargin)) {
+				$bottommargin = $this->bMargin;
+			} else {
+				// default value = 2 cm
+				$bottommargin = 2 * 28.35 / $this->k;
+			}
+		}
+		$this->SetAutoPageBreak($autopagebreak, $bottommargin);
+		// store page dimensions
+		$this->pagedim[$this->page]['w'] = $this->wPt;
+		$this->pagedim[$this->page]['h'] = $this->hPt;
+		$this->pagedim[$this->page]['wk'] = $this->w;
+		$this->pagedim[$this->page]['hk'] = $this->h;
+		$this->pagedim[$this->page]['tm'] = $this->tMargin;
+		$this->pagedim[$this->page]['bm'] = $bottommargin;
+		$this->pagedim[$this->page]['lm'] = $this->lMargin;
+		$this->pagedim[$this->page]['rm'] = $this->rMargin;
+		$this->pagedim[$this->page]['pb'] = $autopagebreak;
+		$this->pagedim[$this->page]['or'] = $this->CurOrientation;
+		$this->pagedim[$this->page]['olm'] = $this->original_lMargin;
+		$this->pagedim[$this->page]['orm'] = $this->original_rMargin;
+	}
+
+	/**
+	 * Set regular expression to detect withespaces or word separators.
+	 * The pattern delimiter must be the forward-slash character "/".
+	 * Some example patterns are:
+	 * <pre>
+	 * Non-Unicode or missing PCRE unicode support: "/[^\S\xa0]/"
+	 * Unicode and PCRE unicode support: "/[^\S\P{Z}\xa0]/u"
+	 * Unicode and PCRE unicode support in Chinese mode: "/[^\S\P{Z}\P{Lo}\xa0]/u"
+	 * if PCRE unicode support is turned ON ("\P" is the negate class of "\p"):
+	 * "\p{Z}" or "\p{Separator}": any kind of Unicode whitespace or invisible separator.
+	 * "\p{Lo}" or "\p{Other_Letter}": a Unicode letter or ideograph that does not have lowercase and uppercase variants.
+	 * "\p{Lo}" is needed for Chinese characters because are packed next to each other without spaces in between.
+	 * </pre>
+	 * @param $re (string) regular expression (leave empty for default).
+	 * @public
+	 * @since 4.6.016 (2009-06-15)
+	 */
+	public function setSpacesRE($re='/[^\S\xa0]/') {
+		$this->re_spaces = $re;
+		$re_parts = explode('/', $re);
+		// get pattern parts
+		$this->re_space = array();
+		if (isset($re_parts[1]) AND !empty($re_parts[1])) {
+			$this->re_space['p'] = $re_parts[1];
+		} else {
+			$this->re_space['p'] = '[\s]';
+		}
+		// set pattern modifiers
+		if (isset($re_parts[2]) AND !empty($re_parts[2])) {
+			$this->re_space['m'] = $re_parts[2];
+		} else {
+			$this->re_space['m'] = '';
+		}
+	}
+
+	/**
+	 * Enable or disable Right-To-Left language mode
+	 * @param $enable (Boolean) if true enable Right-To-Left language mode.
+	 * @param $resetx (Boolean) if true reset the X position on direction change.
+	 * @public
+	 * @since 2.0.000 (2008-01-03)
+	 */
+	public function setRTL($enable, $resetx=true) {
+		$enable = $enable ? true : false;
+		$resetx = ($resetx AND ($enable != $this->rtl));
+		$this->rtl = $enable;
+		$this->tmprtl = false;
+		if ($resetx) {
+			$this->Ln(0);
+		}
+	}
+
+	/**
+	 * Return the RTL status
+	 * @return boolean
+	 * @public
+	 * @since 4.0.012 (2008-07-24)
+	 */
+	public function getRTL() {
+		return $this->rtl;
+	}
+
+	/**
+	 * Force temporary RTL language direction
+	 * @param $mode (mixed) can be false, 'L' for LTR or 'R' for RTL
+	 * @public
+	 * @since 2.1.000 (2008-01-09)
+	 */
+	public function setTempRTL($mode) {
+		$newmode = false;
+		switch (strtoupper($mode)) {
+			case 'LTR':
+			case 'L': {
+				if ($this->rtl) {
+					$newmode = 'L';
+				}
+				break;
+			}
+			case 'RTL':
+			case 'R': {
+				if (!$this->rtl) {
+					$newmode = 'R';
+				}
+				break;
+			}
+			case false:
+			default: {
+				$newmode = false;
+				break;
+			}
+		}
+		$this->tmprtl = $newmode;
+	}
+
+	/**
+	 * Return the current temporary RTL status
+	 * @return boolean
+	 * @public
+	 * @since 4.8.014 (2009-11-04)
+	 */
+	public function isRTLTextDir() {
+		return ($this->rtl OR ($this->tmprtl == 'R'));
+	}
+
+	/**
+	 * Set the last cell height.
+	 * @param $h (float) cell height.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 1.53.0.TC034
+	 */
+	public function setLastH($h) {
+		$this->lasth = $h;
+	}
+
+	/**
+	 * Reset the last cell height.
+	 * @public
+	 * @since 5.9.000 (2010-10-03)
+	 */
+	public function resetLastH() {
+		$this->lasth = ($this->FontSize * $this->cell_height_ratio) + $this->cell_padding['T'] + $this->cell_padding['B'];
+	}
+
+	/**
+	 * Get the last cell height.
+	 * @return last cell height
+	 * @public
+	 * @since 4.0.017 (2008-08-05)
+	 */
+	public function getLastH() {
+		return $this->lasth;
+	}
+
+	/**
+	 * Set the adjusting factor to convert pixels to user units.
+	 * @param $scale (float) adjusting factor to convert pixels to user units.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 1.5.2
+	 */
+	public function setImageScale($scale) {
+		$this->imgscale = $scale;
+	}
+
+	/**
+	 * Returns the adjusting factor to convert pixels to user units.
+	 * @return float adjusting factor to convert pixels to user units.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 1.5.2
+	 */
+	public function getImageScale() {
+		return $this->imgscale;
+	}
+
+	/**
+	 * Returns an array of page dimensions:
+	 * <ul><li>$this->pagedim[$this->page]['w'] = page width in points</li><li>$this->pagedim[$this->page]['h'] = height in points</li><li>$this->pagedim[$this->page]['wk'] = page width in user units</li><li>$this->pagedim[$this->page]['hk'] = page height in user units</li><li>$this->pagedim[$this->page]['tm'] = top margin</li><li>$this->pagedim[$this->page]['bm'] = bottom margin</li><li>$this->pagedim[$this->page]['lm'] = left margin</li><li>$this->pagedim[$this->page]['rm'] = right margin</li><li>$this->pagedim[$this->page]['pb'] = auto page break</li><li>$this->pagedim[$this->page]['or'] = page orientation</li><li>$this->pagedim[$this->page]['olm'] = original left margin</li><li>$this->pagedim[$this->page]['orm'] = original right margin</li><li>$this->pagedim[$this->page]['Rotate'] = The number of degrees by which the page shall be rotated clockwise when displayed or printed. The value shall be a multiple of 90.</li><li>$this->pagedim[$this->page]['PZ'] = The page's preferred zoom (magnification) factor.</li><li>$this->pagedim[$this->page]['trans'] : the style and duration of the visual transition to use when moving from another page to the given page during a presentation<ul><li>$this->pagedim[$this->page]['trans']['Dur'] = The page's display duration (also called its advance timing): the maximum length of time, in seconds, that the page shall be displayed during presentations before the viewer application shall automatically advance to the next page.</li><li>$this->pagedim[$this->page]['trans']['S'] = transition style : Split, Blinds, Box, Wipe, Dissolve, Glitter, R, Fly, Push, Cover, Uncover, Fade</li><li>$this->pagedim[$this->page]['trans']['D'] = The duration of the transition effect, in seconds.</li><li>$this->pagedim[$this->page]['trans']['Dm'] = (Split and Blinds transition styles only) The dimension in which the specified transition effect shall occur: H = Horizontal, V = Vertical. Default value: H.</li><li>$this->pagedim[$this->page]['trans']['M'] = (Split, Box and Fly transition styles only) The direction of motion for the specified transition effect: I = Inward from the edges of the page, O = Outward from the center of the pageDefault value: I.</li><li>$this->pagedim[$this->page]['trans']['Di'] = (Wipe, Glitter, Fly, Cover, Uncover and Push transition styles only) The direction in which the specified transition effect shall moves, expressed in degrees counterclockwise starting from a left-to-right direction. If the value is a number, it shall be one of: 0 = Left to right, 90 = Bottom to top (Wipe only), 180 = Right to left (Wipe only), 270 = Top to bottom, 315 = Top-left to bottom-right (Glitter only). If the value is a name, it shall be None, which is relevant only for the Fly transition when the value of SS is not 1.0. Default value: 0.</li><li>$this->pagedim[$this->page]['trans']['SS'] = (Fly transition style only) The starting or ending scale at which the changes shall be drawn. If M specifies an inward transition, the scale of the changes drawn shall progress from SS to 1.0 over the course of the transition. If M specifies an outward transition, the scale of the changes drawn shall progress from 1.0 to SS over the course of the transition. Default: 1.0. </li><li>$this->pagedim[$this->page]['trans']['B'] = (Fly transition style only) If true, the area that shall be flown in is rectangular and opaque. Default: false.</li></ul></li><li>$this->pagedim[$this->page]['MediaBox'] : the boundaries of the physical medium on which the page shall be displayed or printed<ul><li>$this->pagedim[$this->page]['MediaBox']['llx'] = lower-left x coordinate in points</li><li>$this->pagedim[$this->page]['MediaBox']['lly'] = lower-left y coordinate in points</li><li>$this->pagedim[$this->page]['MediaBox']['urx'] = upper-right x coordinate in points</li><li>$this->pagedim[$this->page]['MediaBox']['ury'] = upper-right y coordinate in points</li></ul></li><li>$this->pagedim[$this->page]['CropBox'] : the visible region of default user space<ul><li>$this->pagedim[$this->page]['CropBox']['llx'] = lower-left x coordinate in points</li><li>$this->pagedim[$this->page]['CropBox']['lly'] = lower-left y coordinate in points</li><li>$this->pagedim[$this->page]['CropBox']['urx'] = upper-right x coordinate in points</li><li>$this->pagedim[$this->page]['CropBox']['ury'] = upper-right y coordinate in points</li></ul></li><li>$this->pagedim[$this->page]['BleedBox'] : the region to which the contents of the page shall be clipped when output in a production environment<ul><li>$this->pagedim[$this->page]['BleedBox']['llx'] = lower-left x coordinate in points</li><li>$this->pagedim[$this->page]['BleedBox']['lly'] = lower-left y coordinate in points</li><li>$this->pagedim[$this->page]['BleedBox']['urx'] = upper-right x coordinate in points</li><li>$this->pagedim[$this->page]['BleedBox']['ury'] = upper-right y coordinate in points</li></ul></li><li>$this->pagedim[$this->page]['TrimBox'] : the intended dimensions of the finished page after trimming<ul><li>$this->pagedim[$this->page]['TrimBox']['llx'] = lower-left x coordinate in points</li><li>$this->pagedim[$this->page]['TrimBox']['lly'] = lower-left y coordinate in points</li><li>$this->pagedim[$this->page]['TrimBox']['urx'] = upper-right x coordinate in points</li><li>$this->pagedim[$this->page]['TrimBox']['ury'] = upper-right y coordinate in points</li></ul></li><li>$this->pagedim[$this->page]['ArtBox'] : the extent of the page's meaningful content<ul><li>$this->pagedim[$this->page]['ArtBox']['llx'] = lower-left x coordinate in points</li><li>$this->pagedim[$this->page]['ArtBox']['lly'] = lower-left y coordinate in points</li><li>$this->pagedim[$this->page]['ArtBox']['urx'] = upper-right x coordinate in points</li><li>$this->pagedim[$this->page]['ArtBox']['ury'] = upper-right y coordinate in points</li></ul></li></ul>
+	 * @param $pagenum (int) page number (empty = current page)
+	 * @return array of page dimensions.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 4.5.027 (2009-03-16)
+	 */
+	public function getPageDimensions($pagenum='') {
+		if (empty($pagenum)) {
+			$pagenum = $this->page;
+		}
+		return $this->pagedim[$pagenum];
+	}
+
+	/**
+	 * Returns the page width in units.
+	 * @param $pagenum (int) page number (empty = current page)
+	 * @return int page width.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 1.5.2
+	 * @see getPageDimensions()
+	 */
+	public function getPageWidth($pagenum='') {
+		if (empty($pagenum)) {
+			return $this->w;
+		}
+		return $this->pagedim[$pagenum]['w'];
+	}
+
+	/**
+	 * Returns the page height in units.
+	 * @param $pagenum (int) page number (empty = current page)
+	 * @return int page height.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 1.5.2
+	 * @see getPageDimensions()
+	 */
+	public function getPageHeight($pagenum='') {
+		if (empty($pagenum)) {
+			return $this->h;
+		}
+		return $this->pagedim[$pagenum]['h'];
+	}
+
+	/**
+	 * Returns the page break margin.
+	 * @param $pagenum (int) page number (empty = current page)
+	 * @return int page break margin.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 1.5.2
+	 * @see getPageDimensions()
+	 */
+	public function getBreakMargin($pagenum='') {
+		if (empty($pagenum)) {
+			return $this->bMargin;
+		}
+		return $this->pagedim[$pagenum]['bm'];
+	}
+
+	/**
+	 * Returns the scale factor (number of points in user unit).
+	 * @return int scale factor.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 1.5.2
+	 */
+	public function getScaleFactor() {
+		return $this->k;
+	}
+
+	/**
+	 * Defines the left, top and right margins.
+	 * @param $left (float) Left margin.
+	 * @param $top (float) Top margin.
+	 * @param $right (float) Right margin. Default value is the left one.
+	 * @param $keepmargins (boolean) if true overwrites the default page margins
+	 * @public
+	 * @since 1.0
+	 * @see SetLeftMargin(), SetTopMargin(), SetRightMargin(), SetAutoPageBreak()
+	 */
+	public function SetMargins($left, $top, $right=-1, $keepmargins=false) {
+		//Set left, top and right margins
+		$this->lMargin = $left;
+		$this->tMargin = $top;
+		if ($right == -1) {
+			$right = $left;
+		}
+		$this->rMargin = $right;
+		if ($keepmargins) {
+			// overwrite original values
+			$this->original_lMargin = $this->lMargin;
+			$this->original_rMargin = $this->rMargin;
+		}
+	}
 
-// includes some support files
+	/**
+	 * Defines the left margin. The method can be called before creating the first page. If the current abscissa gets out of page, it is brought back to the margin.
+	 * @param $margin (float) The margin.
+	 * @public
+	 * @since 1.4
+	 * @see SetTopMargin(), SetRightMargin(), SetAutoPageBreak(), SetMargins()
+	 */
+	public function SetLeftMargin($margin) {
+		//Set left margin
+		$this->lMargin = $margin;
+		if (($this->page > 0) AND ($this->x < $margin)) {
+			$this->x = $margin;
+		}
+	}
 
-/**
- * unicode data
- */
-require_once(dirname(__FILE__).'/unicode_data.php');
+	/**
+	 * Defines the top margin. The method can be called before creating the first page.
+	 * @param $margin (float) The margin.
+	 * @public
+	 * @since 1.5
+	 * @see SetLeftMargin(), SetRightMargin(), SetAutoPageBreak(), SetMargins()
+	 */
+	public function SetTopMargin($margin) {
+		//Set top margin
+		$this->tMargin = $margin;
+		if (($this->page > 0) AND ($this->y < $margin)) {
+			$this->y = $margin;
+		}
+	}
 
-/**
- * html colors table
- */
-require_once(dirname(__FILE__).'/htmlcolors.php');
-
-if (!class_exists('TCPDF', false)) {
-	/**
-	 * define default PDF document producer
-	 */
-	define('PDF_PRODUCER', 'TCPDF 5.5.009 (http://www.tcpdf.org)');
-
-	/**
-	* This is a PHP class for generating PDF documents without requiring external extensions.<br>
-	* TCPDF project (http://www.tcpdf.org) has been originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.<br>
-	* @name TCPDF
-	* @package com.tecnick.tcpdf
-	* @version 5.5.009
-	* @author Nicola Asuni - info@tecnick.com
-	* @link http://www.tcpdf.org
-	* @license http://www.gnu.org/copyleft/lesser.html LGPL
-	*/
-	class TCPDF {
-
-		// protected or Protected properties
-
-		/**
-		 * @var current page number
-		 * @access protected
-		 */
-		protected $page;
-
-		/**
-		 * @var current object number
-		 * @access protected
-		 */
-		protected $n;
-
-		/**
-		 * @var array of object offsets
-		 * @access protected
-		 */
-		protected $offsets;
-
-		/**
-		 * @var buffer holding in-memory PDF
-		 * @access protected
-		 */
-		protected $buffer;
-
-		/**
-		 * @var array containing pages
-		 * @access protected
-		 */
-		protected $pages = array();
-
-		/**
-		 * @var current document state
-		 * @access protected
-		 */
-		protected $state;
-
-		/**
-		 * @var compression flag
-		 * @access protected
-		 */
-		protected $compress;
-
-		/**
-		 * @var current page orientation (P = Portrait, L = Landscape)
-		 * @access protected
-		 */
-		protected $CurOrientation;
-
-		/**
-		 * @var Page dimensions
-		 * @access protected
-		 */
-		protected $pagedim = array();
-
-		/**
-		 * @var scale factor (number of points in user unit)
-		 * @access protected
-		 */
-		protected $k;
-
-		/**
-		 * @var width of page format in points
-		 * @access protected
-		 */
-		protected $fwPt;
-
-		/**
-		 * @var height of page format in points
-		 * @access protected
-		 */
-		protected $fhPt;
-
-		/**
-		 * @var current width of page in points
-		 * @access protected
-		 */
-		protected $wPt;
-
-		/**
-		 * @var current height of page in points
-		 * @access protected
-		 */
-		protected $hPt;
-
-		/**
-		 * @var current width of page in user unit
-		 * @access protected
-		 */
-		protected $w;
-
-		/**
-		 * @var current height of page in user unit
-		 * @access protected
-		 */
-		protected $h;
-
-		/**
-		 * @var left margin
-		 * @access protected
-		 */
-		protected $lMargin;
-
-		/**
-		 * @var top margin
-		 * @access protected
-		 */
-		protected $tMargin;
-
-		/**
-		 * @var right margin
-		 * @access protected
-		 */
-		protected $rMargin;
-
-		/**
-		 * @var page break margin
-		 * @access protected
-		 */
-		protected $bMargin;
-
-		/**
-		 * @var cell internal padding
-		 * @access protected
-		 */
-		//protected
-		public $cMargin;
-
-		/**
-		 * @var cell internal padding (previous value)
-		 * @access protected
-		 */
-		protected $oldcMargin;
-
-		/**
-		 * @var current horizontal position in user unit for cell positioning
-		 * @access protected
-		 */
-		protected $x;
-
-		/**
-		 * @var current vertical position in user unit for cell positioning
-		 * @access protected
-		 */
-		protected $y;
-
-		/**
-		 * @var height of last cell printed
-		 * @access protected
-		 */
-		protected $lasth;
-
-		/**
-		 * @var line width in user unit
-		 * @access protected
-		 */
-		protected $LineWidth;
-
-		/**
-		 * @var array of standard font names
-		 * @access protected
-		 */
-		protected $CoreFonts;
-
-		/**
-		 * @var array of used fonts
-		 * @access protected
-		 */
-		protected $fonts = array();
-
-		/**
-		 * @var array of font files
-		 * @access protected
-		 */
-		protected $FontFiles = array();
-
-		/**
-		 * @var array of encoding differences
-		 * @access protected
-		 */
-		protected $diffs = array();
-
-		/**
-		 * @var array of used images
-		 * @access protected
-		 */
-		protected $images = array();
-
-		/**
-		 * @var array of Annotations in pages
-		 * @access protected
-		 */
-		protected $PageAnnots = array();
-
-		/**
-		 * @var array of internal links
-		 * @access protected
-		 */
-		protected $links = array();
-
-		/**
-		 * @var current font family
-		 * @access protected
-		 */
-		protected $FontFamily;
-
-		/**
-		 * @var current font style
-		 * @access protected
-		 */
-		protected $FontStyle;
-
-		/**
-		 * @var current font ascent (distance between font top and baseline)
-		 * @access protected
-		 * @since 2.8.000 (2007-03-29)
-		 */
-		protected $FontAscent;
-
-		/**
-		 * @var current font descent (distance between font bottom and baseline)
-		 * @access protected
-		 * @since 2.8.000 (2007-03-29)
-		 */
-		protected $FontDescent;
-
-		/**
-		 * @var underlining flag
-		 * @access protected
-		 */
-		protected $underline;
-
-		/**
-		 * @var overlining flag
-		 * @access protected
-		 */
-		protected $overline;
-
-		/**
-		 * @var current font info
-		 * @access protected
-		 */
-		protected $CurrentFont;
-
-		/**
-		 * @var current font size in points
-		 * @access protected
-		 */
-		protected $FontSizePt;
-
-		/**
-		 * @var current font size in user unit
-		 * @access protected
-		 */
-		protected $FontSize;
-
-		/**
-		 * @var commands for drawing color
-		 * @access protected
-		 */
-		protected $DrawColor;
-
-		/**
-		 * @var commands for filling color
-		 * @access protected
-		 */
-		protected $FillColor;
-
-		/**
-		 * @var commands for text color
-		 * @access protected
-		 */
-		protected $TextColor;
-
-		/**
-		 * @var indicates whether fill and text colors are different
-		 * @access protected
-		 */
-		protected $ColorFlag;
-
-		/**
-		 * @var automatic page breaking
-		 * @access protected
-		 */
-		protected $AutoPageBreak;
-
-		/**
-		 * @var threshold used to trigger page breaks
-		 * @access protected
-		 */
-		protected $PageBreakTrigger;
-
-		/**
-		 * @var flag set when processing footer
-		 * @access protected
-		 */
-		protected $InFooter = false;
-
-		/**
-		 * @var zoom display mode
-		 * @access protected
-		 */
-		protected $ZoomMode;
-
-		/**
-		 * @var layout display mode
-		 * @access protected
-		 */
-		protected $LayoutMode;
-
-		/**
-		 * @var title
-		 * @access protected
-		 */
-		protected $title = '';
-
-		/**
-		 * @var subject
-		 * @access protected
-		 */
-		protected $subject = '';
-
-		/**
-		 * @var author
-		 * @access protected
-		 */
-		protected $author = '';
-
-		/**
-		 * @var keywords
-		 * @access protected
-		 */
-		protected $keywords = '';
-
-		/**
-		 * @var creator
-		 * @access protected
-		 */
-		protected $creator = '';
-
-		/**
-		 * @var alias for total number of pages
-		 * @access protected
-		 */
-		protected $AliasNbPages = '{nb}';
-
-		/**
-		 * @var alias for page number
-		 * @access protected
-		 */
-		protected $AliasNumPage = '{pnb}';
-
-		/**
-		 * @var right-bottom corner X coordinate of inserted image
-		 * @since 2002-07-31
-		 * @author Nicola Asuni
-		 * @access protected
-		 */
-		protected $img_rb_x;
-
-		/**
-		 * @var right-bottom corner Y coordinate of inserted image
-		 * @since 2002-07-31
-		 * @author Nicola Asuni
-		 * @access protected
-		 */
-		protected $img_rb_y;
-
-		/**
-		 * @var adjusting factor to convert pixels to user units.
-		 * @since 2004-06-14
-		 * @author Nicola Asuni
-		 * @access protected
-		 */
-		protected $imgscale = 1;
-
-		/**
-		 * @var boolean set to true when the input text is unicode (require unicode fonts)
-		 * @since 2005-01-02
-		 * @author Nicola Asuni
-		 * @access protected
-		 */
-		protected $isunicode = false;
-
-		/**
-		 * @var PDF version
-		 * @since 1.5.3
-		 * @access protected
-		 */
-		protected $PDFVersion = '1.7';
-
-		/**
-		 * @var Minimum distance between header and top page margin.
-		 * @access protected
-		 */
-		protected $header_margin;
-
-		/**
-		 * @var Minimum distance between footer and bottom page margin.
-		 * @access protected
-		 */
-		protected $footer_margin;
-
-		/**
-		 * @var original left margin value
-		 * @access protected
-		 * @since 1.53.0.TC013
-		 */
-		protected $original_lMargin;
-
-		/**
-		 * @var original right margin value
-		 * @access protected
-		 * @since 1.53.0.TC013
-		 */
-		protected $original_rMargin;
-
-		/**
-		 * @var Header font.
-		 * @access protected
-		 */
-		protected $header_font;
-
-		/**
-		 * @var Footer font.
-		 * @access protected
-		 */
-		protected $footer_font;
-
-		/**
-		 * @var Language templates.
-		 * @access protected
-		 */
-		protected $l;
-
-		/**
-		 * @var Barcode to print on page footer (only if set).
-		 * @access protected
-		 */
-		protected $barcode = false;
-
-		/**
-		 * @var If true prints header
-		 * @access protected
-		 */
-		protected $print_header = true;
-
-		/**
-		 * @var If true prints footer.
-		 * @access protected
-		 */
-		protected $print_footer = true;
-
-		/**
-		 * @var Header image logo.
-		 * @access protected
-		 */
-		protected $header_logo = '';
-
-		/**
-		 * @var Header image logo width in mm.
-		 * @access protected
-		 */
-		protected $header_logo_width = 30;
-
-		/**
-		 * @var String to print as title on document header.
-		 * @access protected
-		 */
-		protected $header_title = '';
-
-		/**
-		 * @var String to print on document header.
-		 * @access protected
-		 */
-		protected $header_string = '';
-
-		/**
-		 * @var Default number of columns for html table.
-		 * @access protected
-		 */
-		protected $default_table_columns = 4;
-
-
-		// variables for html parser
-
-		/**
-		 * @var HTML PARSER: array to store current link and rendering styles.
-		 * @access protected
-		 */
-		protected $HREF = array();
-
-		/**
-		 * @var store a list of available fonts on filesystem.
-		 * @access protected
-		 */
-		protected $fontlist = array();
-
-		/**
-		 * @var current foreground color
-		 * @access protected
-		 */
-		protected $fgcolor;
-
-		/**
-		 * @var HTML PARSER: array of boolean values, true in case of ordered list (OL), false otherwise.
-		 * @access protected
-		 */
-		protected $listordered = array();
-
-		/**
-		 * @var HTML PARSER: array count list items on nested lists.
-		 * @access protected
-		 */
-		protected $listcount = array();
-
-		/**
-		 * @var HTML PARSER: current list nesting level.
-		 * @access protected
-		 */
-		protected $listnum = 0;
-
-		/**
-		 * @var HTML PARSER: indent amount for lists.
-		 * @access protected
-		 */
-		protected $listindent = 0;
-
-		/**
-		 * @var HTML PARSER: current list indententation level.
-		 * @access protected
-		 */
-		protected $listindentlevel = 0;
-
-		/**
-		 * @var current background color
-		 * @access protected
-		 */
-		protected $bgcolor;
-
-		/**
-		 * @var Store temporary font size in points.
-		 * @access protected
-		 */
-		protected $tempfontsize = 10;
-
-		/**
-		 * @var spacer for LI tags.
-		 * @access protected
-		 */
-		protected $lispacer = '';
-
-		/**
-		 * @var default encoding
-		 * @access protected
-		 * @since 1.53.0.TC010
-		 */
-		protected $encoding = 'UTF-8';
-
-		/**
-		 * @var PHP internal encoding
-		 * @access protected
-		 * @since 1.53.0.TC016
-		 */
-		protected $internal_encoding;
-
-		/**
-		 * @var indicates if the document language is Right-To-Left
-		 * @access protected
-		 * @since 2.0.000
-		 */
-		protected $rtl = false;
-
-		/**
-		 * @var used to force RTL or LTR string inversion
-		 * @access protected
-		 * @since 2.0.000
-		 */
-		protected $tmprtl = false;
-
-		// --- Variables used for document encryption:
-
-		/**
-		 * Indicates whether document is protected
-		 * @access protected
-		 * @since 2.0.000 (2008-01-02)
-		 */
-		protected $encrypted;
-
-		/**
-		 * Array containing encryption settings
-		 * @access protected
-		 * @since 5.0.005 (2010-05-11)
-		 */
-		protected $encryptdata = array();
-
-		/**
-		 * last RC4 key encrypted (cached for optimisation)
-		 * @access protected
-		 * @since 2.0.000 (2008-01-02)
-		 */
-		protected $last_enc_key;
-
-		/**
-		 * last RC4 computed key
-		 * @access protected
-		 * @since 2.0.000 (2008-01-02)
-		 */
-		protected $last_enc_key_c;
-
-		/**
-		 * Encryption padding
-		 * @access protected
-		 */
-		protected $enc_padding = "\x28\xBF\x4E\x5E\x4E\x75\x8A\x41\x64\x00\x4E\x56\xFF\xFA\x01\x08\x2E\x2E\x00\xB6\xD0\x68\x3E\x80\x2F\x0C\xA9\xFE\x64\x53\x69\x7A";
-
-		/**
-		 * File ID (used on trailer)
-		 * @access protected
-		 * @since 5.0.005 (2010-05-12)
-		 */
-		protected $file_id;
-
-		// --- bookmark ---
-
-		/**
-		 * Outlines for bookmark
-		 * @access protected
-		 * @since 2.1.002 (2008-02-12)
-		 */
-		protected $outlines = array();
-
-		/**
-		 * Outline root for bookmark
-		 * @access protected
-		 * @since 2.1.002 (2008-02-12)
-		 */
-		protected $OutlineRoot;
-
-
-		// --- javascript and form ---
-
-		/**
-		 * javascript code
-		 * @access protected
-		 * @since 2.1.002 (2008-02-12)
-		 */
-		protected $javascript = '';
-
-		/**
-		 * javascript counter
-		 * @access protected
-		 * @since 2.1.002 (2008-02-12)
-		 */
-		protected $n_js;
-
-		/**
-		 * line trough state
-		 * @access protected
-		 * @since 2.8.000 (2008-03-19)
-		 */
-		protected $linethrough;
-
-		// --- Variables used for User's Rights ---
-		// See PDF reference chapter 8.7 Digital Signatures
-
-		/**
-		 * If true enables user's rights on PDF reader
-		 * @access protected
-		 * @since 2.9.000 (2008-03-26)
-		 */
-		protected $ur;
-
-		/**
-		 * Names specifying additional document-wide usage rights for the document.
-		 * @access protected
-		 * @since 2.9.000 (2008-03-26)
-		 */
-		protected $ur_document;
-
-		/**
-		 * Names specifying additional annotation-related usage rights for the document.
-		 * @access protected
-		 * @since 2.9.000 (2008-03-26)
-		 */
-		protected $ur_annots;
-
-		/**
-		 * Names specifying additional form-field-related usage rights for the document.
-		 * @access protected
-		 * @since 2.9.000 (2008-03-26)
-		 */
-		protected $ur_form;
-
-		/**
-		 * Names specifying additional signature-related usage rights for the document.
-		 * @access protected
-		 * @since 2.9.000 (2008-03-26)
-		 */
-		protected $ur_signature;
-
-		/**
-		 * Dot Per Inch Document Resolution (do not change)
-		 * @access protected
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		protected $dpi = 72;
-
-		/**
-		 * Array of page numbers were a new page group was started
-		 * @access protected
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		protected $newpagegroup = array();
-
-		/**
-		 * Contains the number of pages of the groups
-		 * @access protected
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		protected $pagegroups;
-
-		/**
-		 * Contains the alias of the current page group
-		 * @access protected
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		protected $currpagegroup;
-
-		/**
-		 * Restrict the rendering of some elements to screen or printout.
-		 * @access protected
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		protected $visibility = 'all';
-
-		/**
-		 * Print visibility.
-		 * @access protected
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		protected $n_ocg_print;
-
-		/**
-		 * View visibility.
-		 * @access protected
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		protected $n_ocg_view;
-
-		/**
-		 * Array of transparency objects and parameters.
-		 * @access protected
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		protected $extgstates;
-
-		/**
-		 * Set the default JPEG compression quality (1-100)
-		 * @access protected
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		protected $jpeg_quality;
-
-		/**
-		 * Default cell height ratio.
-		 * @access protected
-		 * @since 3.0.014 (2008-05-23)
-		 */
-		protected $cell_height_ratio = K_CELL_HEIGHT_RATIO;
-
-		/**
-		 * PDF viewer preferences.
-		 * @access protected
-		 * @since 3.1.000 (2008-06-09)
-		 */
-		protected $viewer_preferences;
-
-		/**
-		 * A name object specifying how the document should be displayed when opened.
-		 * @access protected
-		 * @since 3.1.000 (2008-06-09)
-		 */
-		protected $PageMode;
-
-		/**
-		 * Array for storing gradient information.
-		 * @access protected
-		 * @since 3.1.000 (2008-06-09)
-		 */
-		protected $gradients = array();
-
-		/**
-		 * Array used to store positions inside the pages buffer.
-		 * keys are the page numbers
-		 * @access protected
-		 * @since 3.2.000 (2008-06-26)
-		 */
-		protected $intmrk = array();
-
-		/**
-		 * Array used to store content positions inside the pages buffer.
-		 * keys are the page numbers
-		 * @access protected
-		 * @since 4.6.021 (2009-07-20)
-		 */
-		protected $cntmrk = array();
-
-		/**
-		 * Array used to store footer positions of each page.
-		 * @access protected
-		 * @since 3.2.000 (2008-07-01)
-		 */
-		protected $footerpos = array();
-
-
-		/**
-		 * Array used to store footer length of each page.
-		 * @access protected
-		 * @since 4.0.014 (2008-07-29)
-		 */
-		protected $footerlen = array();
-
-		/**
-		 * True if a newline is created.
-		 * @access protected
-		 * @since 3.2.000 (2008-07-01)
-		 */
-		protected $newline = true;
-
-		/**
-		 * End position of the latest inserted line
-		 * @access protected
-		 * @since 3.2.000 (2008-07-01)
-		 */
-		protected $endlinex = 0;
-
-		/**
-		 * PDF string for last line width
-		 * @access protected
-		 * @since 4.0.006 (2008-07-16)
-		 */
-		protected $linestyleWidth = '';
-
-		/**
-		 * PDF string for last line width
-		 * @access protected
-		 * @since 4.0.006 (2008-07-16)
-		 */
-		protected $linestyleCap = '0 J';
-
-		/**
-		 * PDF string for last line width
-		 * @access protected
-		 * @since 4.0.006 (2008-07-16)
-		 */
-		protected $linestyleJoin = '0 j';
-
-		/**
-		 * PDF string for last line width
-		 * @access protected
-		 * @since 4.0.006 (2008-07-16)
-		 */
-		protected $linestyleDash = '[] 0 d';
-
-		/**
-		 * True if marked-content sequence is open
-		 * @access protected
-		 * @since 4.0.013 (2008-07-28)
-		 */
-		protected $openMarkedContent = false;
-
-		/**
-		 * Count the latest inserted vertical spaces on HTML
-		 * @access protected
-		 * @since 4.0.021 (2008-08-24)
-		 */
-		protected $htmlvspace = 0;
-
-		/**
-		 * Array of Spot colors
-		 * @access protected
-		 * @since 4.0.024 (2008-09-12)
-		 */
-		protected $spot_colors = array();
-
-		/**
-		 * Symbol used for HTML unordered list items
-		 * @access protected
-		 * @since 4.0.028 (2008-09-26)
-		 */
-		protected $lisymbol = '';
-
-		/**
-		 * String used to mark the beginning and end of EPS image blocks
-		 * @access protected
-		 * @since 4.1.000 (2008-10-18)
-		 */
-		protected $epsmarker = 'x#!#EPS#!#x';
-
-		/**
-		 * Array of transformation matrix
-		 * @access protected
-		 * @since 4.2.000 (2008-10-29)
-		 */
-		protected $transfmatrix = array();
-
-		/**
-		 * Current key for transformation matrix
-		 * @access protected
-		 * @since 4.8.005 (2009-09-17)
-		 */
-		protected $transfmatrix_key = 0;
-
-		/**
-		 * Booklet mode for double-sided pages
-		 * @access protected
-		 * @since 4.2.000 (2008-10-29)
-		 */
-		protected $booklet = false;
-
-		/**
-		 * Epsilon value used for float calculations
-		 * @access protected
-		 * @since 4.2.000 (2008-10-29)
-		 */
-		protected $feps = 0.005;
-
-		/**
-		 * Array used for custom vertical spaces for HTML tags
-		 * @access protected
-		 * @since 4.2.001 (2008-10-30)
-		 */
-		protected $tagvspaces = array();
-
-		/**
-		 * @var HTML PARSER: custom indent amount for lists.
-		 * Negative value means disabled.
-		 * @access protected
-		 * @since 4.2.007 (2008-11-12)
-		 */
-		protected $customlistindent = -1;
-
-		/**
-		 * @var if true keeps the border open for the cell sides that cross the page.
-		 * @access protected
-		 * @since 4.2.010 (2008-11-14)
-		 */
-		protected $opencell = true;
-
-		/**
-		 * @var array of files to embedd
-		 * @access protected
-		 * @since 4.4.000 (2008-12-07)
-		 */
-		protected $embeddedfiles = array();
-
-		/**
-		 * @var boolean true when inside html pre tag
-		 * @access protected
-		 * @since 4.4.001 (2008-12-08)
-		 */
-		protected $premode = false;
-
-		/**
-		 * Array used to store positions of graphics transformation blocks inside the page buffer.
-		 * keys are the page numbers
-		 * @access protected
-		 * @since 4.4.002 (2008-12-09)
-		 */
-		protected $transfmrk = array();
-
-		/**
-		 * Default color for html links
-		 * @access protected
-		 * @since 4.4.003 (2008-12-09)
-		 */
-		protected $htmlLinkColorArray = array(0, 0, 255);
-
-		/**
-		 * Default font style to add to html links
-		 * @access protected
-		 * @since 4.4.003 (2008-12-09)
-		 */
-		protected $htmlLinkFontStyle = 'U';
-
-		/**
-		 * Counts the number of pages.
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected $numpages = 0;
-
-		/**
-		 * Array containing page lengths in bytes.
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected $pagelen = array();
-
-		/**
-		 * Counts the number of pages.
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected $numimages = 0;
-
-		/**
-		 * Store the image keys.
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected $imagekeys = array();
-
-		/**
-		 * Length of the buffer in bytes.
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected $bufferlen = 0;
-
-		/**
-		 * If true enables disk caching.
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected $diskcache = false;
-
-		/**
-		 * Counts the number of fonts.
-		 * @access protected
-		 * @since 4.5.000 (2009-01-02)
-		 */
-		protected $numfonts = 0;
-
-		/**
-		 * Store the font keys.
-		 * @access protected
-		 * @since 4.5.000 (2009-01-02)
-		 */
-		protected $fontkeys = array();
-
-		/**
-		 * Store the font object IDs.
-		 * @access protected
-		 * @since 4.8.001 (2009-09-09)
-		 */
-		protected $font_obj_ids = array();
-
-		/**
-		 * Store the fage status (true when opened, false when closed).
-		 * @access protected
-		 * @since 4.5.000 (2009-01-02)
-		 */
-		protected $pageopen = array();
-
-		/**
-		 * Default monospaced font
-		 * @access protected
-		 * @since 4.5.025 (2009-03-10)
-		 */
-		protected $default_monospaced_font = 'courier';
-
-		/**
-		 * Used to store a cloned copy of the current class object
-		 * @access protected
-		 * @since 4.5.029 (2009-03-19)
-		 */
-		protected $objcopy;
-
-		/**
-		 * Array used to store the lengths of cache files
-		 * @access protected
-		 * @since 4.5.029 (2009-03-19)
-		 */
-		protected $cache_file_length = array();
-
-		/**
-		 * Table header content to be repeated on each new page
-		 * @access protected
-		 * @since 4.5.030 (2009-03-20)
-		 */
-		protected $thead = '';
-
-		/**
-		 * Margins used for table header.
-		 * @access protected
-		 * @since 4.5.030 (2009-03-20)
-		 */
-		protected $theadMargins = array();
-
-		/**
-		 * Cache array for UTF8StringToArray() method.
-		 * @access protected
-		 * @since 4.5.037 (2009-04-07)
-		 */
-		protected $cache_UTF8StringToArray = array();
-
-		/**
-		 * Maximum size of cache array used for UTF8StringToArray() method.
-		 * @access protected
-		 * @since 4.5.037 (2009-04-07)
-		 */
-		protected $cache_maxsize_UTF8StringToArray = 8;
-
-		/**
-		 * Current size of cache array used for UTF8StringToArray() method.
-		 * @access protected
-		 * @since 4.5.037 (2009-04-07)
-		 */
-		protected $cache_size_UTF8StringToArray = 0;
-
-		/**
-		 * If true enables document signing
-		 * @access protected
-		 * @since 4.6.005 (2009-04-24)
-		 */
-		protected $sign = false;
-
-		/**
-		 * Signature data
-		 * @access protected
-		 * @since 4.6.005 (2009-04-24)
-		 */
-		protected $signature_data = array();
-
-		/**
-		 * Signature max length
-		 * @access protected
-		 * @since 4.6.005 (2009-04-24)
-		 */
-		protected $signature_max_length = 11742;
-
-		/**
-		 * data for signature appearance
-		 * @access protected
-		 * @since 5.3.011 (2010-06-16)
-		 */
-		protected $signature_appearance = array('page' => 1, 'rect' => '0 0 0 0');
-
-		/**
-		 * Regular expression used to find blank characters used for word-wrapping.
-		 * @access protected
-		 * @since 4.6.006 (2009-04-28)
-		 */
-		protected $re_spaces = '/[\s]/';
-
-		/**
-		 * Signature object ID
-		 * @access protected
-		 * @since 4.6.022 (2009-06-23)
-		 */
-		protected $sig_obj_id = 0;
-
-		/**
-		 * ByteRange placemark used during signature process.
-		 * @access protected
-		 * @since 4.6.028 (2009-08-25)
-		 */
-		protected $byterange_string = '/ByteRange[0 ********** ********** **********]';
-
-		/**
-		 * Placemark used during signature process.
-		 * @access protected
-		 * @since 4.6.028 (2009-08-25)
-		 */
-		protected $sig_annot_ref = '***SIGANNREF*** 0 R';
-
-		/**
-		 * ID of page objects
-		 * @access protected
-		 * @since 4.7.000 (2009-08-29)
-		 */
-		protected $page_obj_id = array();
-
-		/**
-		 * Start ID for embedded file objects
-		 * @access protected
-		 * @since 4.7.000 (2009-08-29)
-		 */
-		protected $embedded_start_obj_id = 100000;
-
-		/**
-		 * Start ID for annotation objects
-		 * @access protected
-		 * @since 4.7.000 (2009-08-29)
-		 */
-		protected $annots_start_obj_id = 200000;
-
-		/**
-		 * Max ID of annotation object
-		 * @access protected
-		 * @since 4.7.000 (2009-08-29)
-		 */
-		protected $annot_obj_id = 200000;
-
-		/**
-		 * Current ID of annotation object
-		 * @access protected
-		 * @since 4.8.003 (2009-09-15)
-		 */
-		protected $curr_annot_obj_id = 200000;
-
-		/**
-		 * List of form annotations IDs
-		 * @access protected
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		protected $form_obj_id = array();
-
-		/**
-		 * Deafult Javascript field properties. Possible values are described on official Javascript for Acrobat API reference. Annotation options can be directly specified using the 'aopt' entry.
-		 * @access protected
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		protected $default_form_prop = array('lineWidth'=>1, 'borderStyle'=>'solid', 'fillColor'=>array(255, 255, 255), 'strokeColor'=>array(128, 128, 128));
-
-		/**
-		 * Javascript objects array
-		 * @access protected
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		protected $js_objects = array();
-
-		/**
-		 * Start ID for javascript objects
-		 * @access protected
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		protected $js_start_obj_id = 300000;
-
-		/**
-		 * Current ID of javascript object
-		 * @access protected
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		protected $js_obj_id = 300000;
-
-		/**
-		 * Current form action (used during XHTML rendering)
-		 * @access protected
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		protected $form_action = '';
-
-		/**
-		 * Current form encryption type (used during XHTML rendering)
-		 * @access protected
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		protected $form_enctype = 'application/x-www-form-urlencoded';
-
-		/**
-		 * Current method to submit forms.
-		 * @access protected
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		protected $form_mode = 'post';
-
-		/**
-		 * Start ID for appearance streams XObjects
-		 * @access protected
-		 * @since 4.8.001 (2009-09-09)
-		 */
-		protected $apxo_start_obj_id = 400000;
-
-		/**
-		 * Current ID of appearance streams XObjects
-		 * @access protected
-		 * @since 4.8.001 (2009-09-09)
-		 */
-		protected $apxo_obj_id = 400000;
-
-		/**
-		 * List of fonts used on form fields (fontname => fontkey).
-		 * @access protected
-		 * @since 4.8.001 (2009-09-09)
-		 */
-		protected $annotation_fonts = array();
-
-		/**
-		 * List of radio buttons parent objects.
-		 * @access protected
-		 * @since 4.8.001 (2009-09-09)
-		 */
-		protected $radiobutton_groups = array();
-
-		/**
-		 * List of radio group objects IDs
-		 * @access protected
-		 * @since 4.8.001 (2009-09-09)
-		 */
-		protected $radio_groups = array();
-
-		/**
-		 * Text indentation value (used for text-indent CSS attribute)
-		 * @access protected
-		 * @since 4.8.006 (2009-09-23)
-		 */
-		protected $textindent = 0;
-
-		/**
-		 * Store page number when startTransaction() is called.
-		 * @access protected
-		 * @since 4.8.006 (2009-09-23)
-		 */
-		protected $start_transaction_page = 0;
-
-		/**
-		 * Store Y position when startTransaction() is called.
-		 * @access protected
-		 * @since 4.9.001 (2010-03-28)
-		 */
-		protected $start_transaction_y = 0;
-
-		/**
-		 * True when we are printing the thead section on a new page
-		 * @access protected
-		 * @since 4.8.027 (2010-01-25)
-		 */
-		protected $inthead = false;
-
-		/**
-		 * Array of column measures (width, space, starting Y position)
-		 * @access protected
-		 * @since 4.9.001 (2010-03-28)
-		 */
-		protected $columns = array();
-
-		/**
-		 * Number of colums
-		 * @access protected
-		 * @since 4.9.001 (2010-03-28)
-		 */
-		protected $num_columns = 0;
-
-		/**
-		 * Current column number
-		 * @access protected
-		 * @since 4.9.001 (2010-03-28)
-		 */
-		protected $current_column = 0;
-
-		/**
-		 * Starting page for columns
-		 * @access protected
-		 * @since 4.9.001 (2010-03-28)
-		 */
-		protected $column_start_page = 0;
-
-		/**
-		 * Text rendering mode: 0 = Fill text; 1 = Stroke text; 2 = Fill, then stroke text; 3 = Neither fill nor stroke text (invisible); 4 = Fill text and add to path for clipping; 5 = Stroke text and add to path for clipping; 6 = Fill, then stroke text and add to path for clipping; 7 = Add text to path for clipping.
-		 * @access protected
-		 * @since 4.9.008 (2010-04-03)
-		 */
-		protected $textrendermode = 0;
-
-		/**
-		 * Text stroke width in doc units
-		 * @access protected
-		 * @since 4.9.008 (2010-04-03)
-		 */
-		protected $textstrokewidth = 0;
-
-		/**
-		 * @var current stroke color
-		 * @access protected
-		 * @since 4.9.008 (2010-04-03)
-		 */
-		protected $strokecolor;
-
-		/**
-		 * @var default unit of measure for document
-		 * @access protected
-		 * @since 5.0.000 (2010-04-22)
-		 */
-		protected $pdfunit = 'mm';
-
-		/**
-		 * @var true when we are on TOC (Table Of Content) page
-		 * @access protected
-		 */
-		protected $tocpage = false;
-
-		/**
-		 * @var If true convert vector images (SVG, EPS) to raster image using GD or ImageMagick library.
-		 * @access protected
-		 * @since 5.0.000 (2010-04-26)
-		 */
-		protected $rasterize_vector_images = false;
-
-		/**
-		 * @var If true enables font subsetting by default
-		 * @access protected
-		 * @since 5.3.002 (2010-06-07)
-		 */
-		protected $font_subsetting = true;
-
-		/**
-		 * @var Array of default graphic settings
-		 * @access protected
-		 * @since 5.5.008 (2010-07-02)
-		 */
-		protected $default_graphic_vars = array();
-
-		/**
-		 * @var directory used for the last SVG image
-		 * @access protected
-		 * @since 5.0.000 (2010-05-05)
-		 */
-		protected $svgdir = '';
-
-		/**
-		 * @var Deafult unit of measure for SVG
-		 * @access protected
-		 * @since 5.0.000 (2010-05-02)
-		 */
-		protected $svgunit = 'px';
-
-		/**
-		 * @var array of SVG gradients
-		 * @access protected
-		 * @since 5.0.000 (2010-05-02)
-		 */
-		protected $svggradients = array();
-
-		/**
-		 * @var ID of last SVG gradient
-		 * @access protected
-		 * @since 5.0.000 (2010-05-02)
-		 */
-		protected $svggradientid = 0;
-
-		/**
-		 * @var true when in SVG defs group
-		 * @access protected
-		 * @since 5.0.000 (2010-05-02)
-		 */
-		protected $svgdefsmode = false;
-
-		/**
-		 * @var array of SVG defs
-		 * @access protected
-		 * @since 5.0.000 (2010-05-02)
-		 */
-		protected $svgdefs = array();
-
-		/**
-		 * @var true when in SVG clipPath tag
-		 * @access protected
-		 * @since 5.0.000 (2010-04-26)
-		 */
-		protected $svgclipmode = false;
-
-		/**
-		 * @var array of SVG clipPath commands
-		 * @access protected
-		 * @since 5.0.000 (2010-05-02)
-		 */
-		protected $svgclippaths = array();
-
-		/**
-		 * @var ID of last SVG clipPath
-		 * @access protected
-		 * @since 5.0.000 (2010-05-02)
-		 */
-		protected $svgclipid = 0;
-
-		/**
-		 * @var svg text
-		 * @access protected
-		 * @since 5.0.000 (2010-05-02)
-		 */
-		protected $svgtext = '';
-
-		/**
-		 * @var array of hinheritable SVG properties
-		 * @access protected
-		 * @since 5.0.000 (2010-05-02)
-		 */
-		protected $svginheritprop = array('clip-rule', 'color', 'color-interpolation', 'color-interpolation-filters', 'color-profile', 'color-rendering', 'cursor', 'direction', 'fill', 'fill-opacity', 'fill-rule', 'font', 'font-family', 'font-size', 'font-size-adjust', 'font-stretch', 'font-style', 'font-variant', 'font-weight', 'glyph-orientation-horizontal', 'glyph-orientation-vertical', 'image-rendering', 'kerning', 'letter-spacing', 'marker', 'marker-end', 'marker-mid', 'marker-start', 'pointer-events', 'shape-rendering', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'text-anchor', 'text-rendering', 'visibility', 'word-spacing', 'writing-mode');
-
-		/**
-		 * @var array of SVG properties
-		 * @access protected
-		 * @since 5.0.000 (2010-05-02)
-		 */
-		protected $svgstyles = array(array(
-			'alignment-baseline' => 'auto',
-			'baseline-shift' => 'baseline',
-			'clip' => 'auto',
-			'clip-path' => 'none',
-			'clip-rule' => 'nonzero',
-			'color' => 'black',
-			'color-interpolation' => 'sRGB',
-			'color-interpolation-filters' => 'linearRGB',
-			'color-profile' => 'auto',
-			'color-rendering' => 'auto',
-			'cursor' => 'auto',
-			'direction' => 'ltr',
-			'display' => 'inline',
-			'dominant-baseline' => 'auto',
-			'enable-background' => 'accumulate',
-			'fill' => 'black',
-			'fill-opacity' => 1,
-			'fill-rule' => 'nonzero',
-			'filter' => 'none',
-			'flood-color' => 'black',
-			'flood-opacity' => 1,
-			'font' => '',
-			'font-family' => 'helvetica',
-			'font-size' => 'medium',
-			'font-size-adjust' => 'none',
-			'font-stretch' => 'normal',
-			'font-style' => 'normal',
-			'font-variant' => 'normal',
-			'font-weight' => 'normal',
-			'glyph-orientation-horizontal' => '0deg',
-			'glyph-orientation-vertical' => 'auto',
-			'image-rendering' => 'auto',
-			'kerning' => 'auto',
-			'letter-spacing' => 'normal',
-			'lighting-color' => 'white',
-			'marker' => '',
-			'marker-end' => 'none',
-			'marker-mid' => 'none',
-			'marker-start' => 'none',
-			'mask' => 'none',
-			'opacity' => 1,
-			'overflow' => 'auto',
-			'pointer-events' => 'visiblePainted',
-			'shape-rendering' => 'auto',
-			'stop-color' => 'black',
-			'stop-opacity' => 1,
-			'stroke' => 'none',
-			'stroke-dasharray' => 'none',
-			'stroke-dashoffset' => 0,
-			'stroke-linecap' => 'butt',
-			'stroke-linejoin' => 'miter',
-			'stroke-miterlimit' => 4,
-			'stroke-opacity' => 1,
-			'stroke-width' => 1,
-			'text-anchor' => 'start',
-			'text-decoration' => 'none',
-			'text-rendering' => 'auto',
-			'unicode-bidi' => 'normal',
-			'visibility' => 'visible',
-			'word-spacing' => 'normal',
-			'writing-mode' => 'lr-tb',
-			'text-color' => 'black',
-			'transfmatrix' => array(1, 0, 0, 1, 0, 0)
-			));
-
-		//------------------------------------------------------------
-		// METHODS
-		//------------------------------------------------------------
-
-		/**
-		 * This is the class constructor.
-		 * It allows to set up the page format, the orientation and
-		 * the measure unit used in all the methods (except for the font sizes).
-		 * @since 1.0
-		 * @param string $orientation page orientation. Possible values are (case insensitive):<ul><li>P or Portrait (default)</li><li>L or Landscape</li></ul>
-		 * @param string $unit User measure unit. Possible values are:<ul><li>pt: point</li><li>mm: millimeter (default)</li><li>cm: centimeter</li><li>in: inch</li></ul><br />A point equals 1/72 of inch, that is to say about 0.35 mm (an inch being 2.54 cm). This is a very common unit in typography; font sizes are expressed in that unit.
-		 * @param mixed $format The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() or an array of parameters specified at setPageFormat().
-		 * @param boolean $unicode TRUE means that the input text is unicode (default = true)
-		 * @param boolean $diskcache if TRUE reduce the RAM memory usage by caching temporary data on filesystem (slower).
-		 * @param String $encoding charset encoding; default is UTF-8
-		 * @access public
-		 * @see getPageSizeFromFormat(), setPageFormat()
-		 */
-		public function __construct($orientation='P', $unit='mm', $format='A4', $unicode=true, $encoding='UTF-8', $diskcache=false) {
-			/* Set internal character encoding to ASCII */
-			if (function_exists('mb_internal_encoding') AND mb_internal_encoding()) {
-				$this->internal_encoding = mb_internal_encoding();
-				mb_internal_encoding('ASCII');
-			}
-			// set disk caching
-			$this->diskcache = $diskcache ? true : false;
-			// set language direction
-			$this->rtl = false;
-			$this->tmprtl = false;
-			//Some checks
-			$this->_dochecks();
-			//Initialization of properties
-			$this->isunicode = $unicode;
-			$this->page = 0;
-			$this->transfmrk[0] = array();
-			$this->pagedim = array();
-			$this->n = 2;
-			$this->buffer = '';
-			$this->pages = array();
-			$this->state = 0;
-			$this->fonts = array();
-			$this->FontFiles = array();
-			$this->diffs = array();
-			$this->images = array();
-			$this->links = array();
-			$this->gradients = array();
-			$this->InFooter = false;
-			$this->lasth = 0;
-			$this->FontFamily = 'helvetica';
-			$this->FontStyle = '';
-			$this->FontSizePt = 12;
-			$this->underline = false;
-			$this->overline = false;
-			$this->linethrough = false;
-			$this->DrawColor = '0 G';
-			$this->FillColor = '0 g';
-			$this->TextColor = '0 g';
-			$this->ColorFlag = false;
-			// encryption values
-			$this->encrypted = false;
-			$this->last_enc_key = '';
-			//Standard Unicode fonts
-			$this->CoreFonts = array(
-				'courier'=>'Courier',
-				'courierB'=>'Courier-Bold',
-				'courierI'=>'Courier-Oblique',
-				'courierBI'=>'Courier-BoldOblique',
-				'helvetica'=>'Helvetica',
-				'helveticaB'=>'Helvetica-Bold',
-				'helveticaI'=>'Helvetica-Oblique',
-				'helveticaBI'=>'Helvetica-BoldOblique',
-				'times'=>'Times-Roman',
-				'timesB'=>'Times-Bold',
-				'timesI'=>'Times-Italic',
-				'timesBI'=>'Times-BoldItalic',
-				'symbol'=>'Symbol',
-				'zapfdingbats'=>'ZapfDingbats'
-			);
-			//Set scale factor
-			$this->setPageUnit($unit);
-			// set page format and orientation
-			$this->setPageFormat($format, $orientation);
-			//Page margins (1 cm)
-			$margin = 28.35 / $this->k;
-			$this->SetMargins($margin, $margin);
-			//Interior cell margin
-			$this->cMargin = $margin / 10;
-			//Line width (0.2 mm)
-			$this->LineWidth = 0.57 / $this->k;
-			$this->linestyleWidth = sprintf('%.2F w', ($this->LineWidth * $this->k));
-			$this->linestyleCap = '0 J';
-			$this->linestyleJoin = '0 j';
-			$this->linestyleDash = '[] 0 d';
-			//Automatic page break
-			$this->SetAutoPageBreak(true, (2 * $margin));
-			//Full width display mode
-			$this->SetDisplayMode('fullwidth');
-			//Compression
-			$this->SetCompression(true);
-			//Set default PDF version number
-			$this->PDFVersion = '1.7';
-			$this->encoding = $encoding;
-			$this->HREF = array();
-			$this->getFontsList();
-			$this->fgcolor = array('R' => 0, 'G' => 0, 'B' => 0);
-			$this->strokecolor = array('R' => 0, 'G' => 0, 'B' => 0);
-			$this->bgcolor = array('R' => 255, 'G' => 255, 'B' => 255);
-			$this->extgstates = array();
-			// user's rights
-			$this->sign = false;
-			$this->ur = false;
-			$this->ur_document = '/FullSave';
-			$this->ur_annots = '/Create/Delete/Modify/Copy/Import/Export';
-			$this->ur_form = '/Add/Delete/FillIn/Import/Export/SubmitStandalone/SpawnTemplate';
-			$this->ur_signature = '/Modify';
-			$this->signature_appearance = array('page' => 1, 'rect' => '0 0 0 0');
-			// set default JPEG quality
-			$this->jpeg_quality = 75;
-			// initialize some settings
-			$this->utf8Bidi(array(''), '');
-			// set default font
-			$this->SetFont($this->FontFamily, $this->FontStyle, $this->FontSizePt);
-			// check if PCRE Unicode support is enabled
-			if ($this->isunicode AND (@preg_match('/\pL/u', 'a') == 1)) {
-				// PCRE unicode support is turned ON
-				// \p{Z} or \p{Separator}: any kind of Unicode whitespace or invisible separator.
-				// \p{Lo} or \p{Other_Letter}: a Unicode letter or ideograph that does not have lowercase and uppercase variants.
-				// \p{Lo} is needed because Chinese characters are packed next to each other without spaces in between.
-				//$this->re_spaces = '/[\s\p{Z}\p{Lo}]/u';
-				$this->re_spaces = '/[\s\p{Z}]/u';
-			} else {
-				// PCRE unicode support is turned OFF
-				$this->re_spaces = '/[\s]/';
-			}
-			$this->annot_obj_id = $this->annots_start_obj_id;
-			$this->curr_annot_obj_id = $this->annots_start_obj_id;
-			$this->apxo_obj_id = $this->apxo_start_obj_id;
-			$this->js_obj_id = $this->js_start_obj_id;
-			$this->default_form_prop = array('lineWidth'=>1, 'borderStyle'=>'solid', 'fillColor'=>array(255, 255, 255), 'strokeColor'=>array(128, 128, 128));
-			// set file ID for trailer
-			$this->file_id = md5(microtime().__FILE__.'TCPDF'.$orientation.$unit.$format.$encoding.uniqid(''.rand()));
-			// get default graphic vars
-			$this->default_graphic_vars = $this->getGraphicVars();
-		}
-
-		/**
-		 * Default destructor.
-		 * @access public
-		 * @since 1.53.0.TC016
-		 */
-		public function __destruct() {
-			// restore internal encoding
-			if (isset($this->internal_encoding) AND !empty($this->internal_encoding)) {
-				mb_internal_encoding($this->internal_encoding);
-			}
-			// unset all class variables
-			$this->_destroy(true);
-		}
-
-		/**
-		 * Set the units of measure for the document.
-		 * @param string $unit User measure unit. Possible values are:<ul><li>pt: point</li><li>mm: millimeter (default)</li><li>cm: centimeter</li><li>in: inch</li></ul><br />A point equals 1/72 of inch, that is to say about 0.35 mm (an inch being 2.54 cm). This is a very common unit in typography; font sizes are expressed in that unit.
-		 * @access public
-		 * @since 3.0.015 (2008-06-06)
-		 */
-		public function setPageUnit($unit) {
-			$unit = strtolower($unit);
-			//Set scale factor
-			switch ($unit) {
-				// points
-				case 'px':
-				case 'pt': {
-					$this->k = 1;
-					break;
-				}
-				// millimeters
-				case 'mm': {
-					$this->k = $this->dpi / 25.4;
-					break;
-				}
-				// centimeters
-				case 'cm': {
-					$this->k = $this->dpi / 2.54;
+	/**
+	 * Defines the right margin. The method can be called before creating the first page.
+	 * @param $margin (float) The margin.
+	 * @public
+	 * @since 1.5
+	 * @see SetLeftMargin(), SetTopMargin(), SetAutoPageBreak(), SetMargins()
+	 */
+	public function SetRightMargin($margin) {
+		$this->rMargin = $margin;
+		if (($this->page > 0) AND ($this->x > ($this->w - $margin))) {
+			$this->x = $this->w - $margin;
+		}
+	}
+
+	/**
+	 * Set the same internal Cell padding for top, right, bottom, left-
+	 * @param $pad (float) internal padding.
+	 * @public
+	 * @since 2.1.000 (2008-01-09)
+	 * @see getCellPaddings(), setCellPaddings()
+	 */
+	public function SetCellPadding($pad) {
+		if ($pad >= 0) {
+			$this->cell_padding['L'] = $pad;
+			$this->cell_padding['T'] = $pad;
+			$this->cell_padding['R'] = $pad;
+			$this->cell_padding['B'] = $pad;
+		}
+	}
+
+	/**
+	 * Set the internal Cell paddings.
+	 * @param $left (float) left padding
+	 * @param $top (float) top padding
+	 * @param $right (float) right padding
+	 * @param $bottom (float) bottom padding
+	 * @public
+	 * @since 5.9.000 (2010-10-03)
+	 * @see getCellPaddings(), SetCellPadding()
+	 */
+	public function setCellPaddings($left='', $top='', $right='', $bottom='') {
+		if (($left !== '') AND ($left >= 0)) {
+			$this->cell_padding['L'] = $left;
+		}
+		if (($top !== '') AND ($top >= 0)) {
+			$this->cell_padding['T'] = $top;
+		}
+		if (($right !== '') AND ($right >= 0)) {
+			$this->cell_padding['R'] = $right;
+		}
+		if (($bottom !== '') AND ($bottom >= 0)) {
+			$this->cell_padding['B'] = $bottom;
+		}
+	}
+
+	/**
+	 * Get the internal Cell padding array.
+	 * @return array of padding values
+	 * @public
+	 * @since 5.9.000 (2010-10-03)
+	 * @see setCellPaddings(), SetCellPadding()
+	 */
+	public function getCellPaddings() {
+		return $this->cell_padding;
+	}
+
+	/**
+	 * Set the internal Cell margins.
+	 * @param $left (float) left margin
+	 * @param $top (float) top margin
+	 * @param $right (float) right margin
+	 * @param $bottom (float) bottom margin
+	 * @public
+	 * @since 5.9.000 (2010-10-03)
+	 * @see getCellMargins()
+	 */
+	public function setCellMargins($left='', $top='', $right='', $bottom='') {
+		if (($left !== '') AND ($left >= 0)) {
+			$this->cell_margin['L'] = $left;
+		}
+		if (($top !== '') AND ($top >= 0)) {
+			$this->cell_margin['T'] = $top;
+		}
+		if (($right !== '') AND ($right >= 0)) {
+			$this->cell_margin['R'] = $right;
+		}
+		if (($bottom !== '') AND ($bottom >= 0)) {
+			$this->cell_margin['B'] = $bottom;
+		}
+	}
+
+	/**
+	 * Get the internal Cell margin array.
+	 * @return array of margin values
+	 * @public
+	 * @since 5.9.000 (2010-10-03)
+	 * @see setCellMargins()
+	 */
+	public function getCellMargins() {
+		return $this->cell_margin;
+	}
+
+	/**
+	 * Adjust the internal Cell padding array to take account of the line width.
+	 * @param $brd (mixed) Indicates if borders must be drawn around the cell. The value can be a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul> or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+	 * @return array of adjustments
+	 * @public
+	 * @since 5.9.000 (2010-10-03)
+	 */
+	protected function adjustCellPadding($brd=0) {
+		if (empty($brd)) {
+			return;
+		}
+		if (is_string($brd)) {
+			// convert string to array
+			$slen = strlen($brd);
+			$newbrd = array();
+			for ($i = 0; $i < $slen; ++$i) {
+				$newbrd[$brd{$i}] = true;
+			}
+			$brd = $newbrd;
+		} elseif (($brd === 1) OR ($brd === true) OR (is_numeric($brd) AND (intval($brd) > 0))) {
+			$brd = array('LRTB' => true);
+		}
+		if (!is_array($brd)) {
+			return;
+		}
+		// store current cell padding
+		$cp = $this->cell_padding;
+		// select border mode
+		if (isset($brd['mode'])) {
+			$mode = $brd['mode'];
+			unset($brd['mode']);
+		} else {
+			$mode = 'normal';
+		}
+		// process borders
+		foreach ($brd as $border => $style) {
+			$line_width = $this->LineWidth;
+			if (is_array($style) AND isset($style['width'])) {
+				// get border width
+				$line_width = $style['width'];
+			}
+			$adj = 0; // line width inside the cell
+			switch ($mode) {
+				case 'ext': {
+					$adj = 0;
 					break;
 				}
-				// inches
-				case 'in': {
-					$this->k = $this->dpi;
+				case 'int': {
+					$adj = $line_width;
 					break;
 				}
-				// unsupported unit
-				default : {
-					$this->Error('Incorrect unit: '.$unit);
+				case 'normal':
+				default: {
+					$adj = ($line_width / 2);
 					break;
 				}
 			}
-			$this->pdfunit = $unit;
-			if (isset($this->CurOrientation)) {
-				$this->setPageOrientation($this->CurOrientation);
-			}
-		}
-
-		/**
-		 * Get page dimensions from format name.
-		 * @param mixed $format The format name. It can be: <ul>
-		 * <li><b>ISO 216 A Series + 2 SIS 014711 extensions</b></li>
-		 * <li>A0 (841x1189 mm ; 33.11x46.81 in)</li>
-		 * <li>A1 (594x841 mm ; 23.39x33.11 in)</li>
-		 * <li>A2 (420x594 mm ; 16.54x23.39 in)</li>
-		 * <li>A3 (297x420 mm ; 11.69x16.54 in)</li>
-		 * <li>A4 (210x297 mm ; 8.27x11.69 in)</li>
-		 * <li>A5 (148x210 mm ; 5.83x8.27 in)</li>
-		 * <li>A6 (105x148 mm ; 4.13x5.83 in)</li>
-		 * <li>A7 (74x105 mm ; 2.91x4.13 in)</li>
-		 * <li>A8 (52x74 mm ; 2.05x2.91 in)</li>
-		 * <li>A9 (37x52 mm ; 1.46x2.05 in)</li>
-		 * <li>A10 (26x37 mm ; 1.02x1.46 in)</li>
-		 * <li>A11 (18x26 mm ; 0.71x1.02 in)</li>
-		 * <li>A12 (13x18 mm ; 0.51x0.71 in)</li>
-		 * <li><b>ISO 216 B Series + 2 SIS 014711 extensions</b></li>
-		 * <li>B0 (1000x1414 mm ; 39.37x55.67 in)</li>
-		 * <li>B1 (707x1000 mm ; 27.83x39.37 in)</li>
-		 * <li>B2 (500x707 mm ; 19.69x27.83 in)</li>
-		 * <li>B3 (353x500 mm ; 13.90x19.69 in)</li>
-		 * <li>B4 (250x353 mm ; 9.84x13.90 in)</li>
-		 * <li>B5 (176x250 mm ; 6.93x9.84 in)</li>
-		 * <li>B6 (125x176 mm ; 4.92x6.93 in)</li>
-		 * <li>B7 (88x125 mm ; 3.46x4.92 in)</li>
-		 * <li>B8 (62x88 mm ; 2.44x3.46 in)</li>
-		 * <li>B9 (44x62 mm ; 1.73x2.44 in)</li>
-		 * <li>B10 (31x44 mm ; 1.22x1.73 in)</li>
-		 * <li>B11 (22x31 mm ; 0.87x1.22 in)</li>
-		 * <li>B12 (15x22 mm ; 0.59x0.87 in)</li>
-		 * <li><b>ISO 216 C Series + 2 SIS 014711 extensions + 2 EXTENSION</b></li>
-		 * <li>C0 (917x1297 mm ; 36.10x51.06 in)</li>
-		 * <li>C1 (648x917 mm ; 25.51x36.10 in)</li>
-		 * <li>C2 (458x648 mm ; 18.03x25.51 in)</li>
-		 * <li>C3 (324x458 mm ; 12.76x18.03 in)</li>
-		 * <li>C4 (229x324 mm ; 9.02x12.76 in)</li>
-		 * <li>C5 (162x229 mm ; 6.38x9.02 in)</li>
-		 * <li>C6 (114x162 mm ; 4.49x6.38 in)</li>
-		 * <li>C7 (81x114 mm ; 3.19x4.49 in)</li>
-		 * <li>C8 (57x81 mm ; 2.24x3.19 in)</li>
-		 * <li>C9 (40x57 mm ; 1.57x2.24 in)</li>
-		 * <li>C10 (28x40 mm ; 1.10x1.57 in)</li>
-		 * <li>C11 (20x28 mm ; 0.79x1.10 in)</li>
-		 * <li>C12 (14x20 mm ; 0.55x0.79 in)</li>
-		 * <li>C76 (81x162 mm ; 3.19x6.38 in)</li>
-		 * <li>DL (110x220 mm ; 4.33x8.66 in)</li>
-		 * <li><b>SIS 014711 E Series</b></li>
-		 * <li>E0 (879x1241 mm ; 34.61x48.86 in)</li>
-		 * <li>E1 (620x879 mm ; 24.41x34.61 in)</li>
-		 * <li>E2 (440x620 mm ; 17.32x24.41 in)</li>
-		 * <li>E3 (310x440 mm ; 12.20x17.32 in)</li>
-		 * <li>E4 (220x310 mm ; 8.66x12.20 in)</li>
-		 * <li>E5 (155x220 mm ; 6.10x8.66 in)</li>
-		 * <li>E6 (110x155 mm ; 4.33x6.10 in)</li>
-		 * <li>E7 (78x110 mm ; 3.07x4.33 in)</li>
-		 * <li>E8 (55x78 mm ; 2.17x3.07 in)</li>
-		 * <li>E9 (39x55 mm ; 1.54x2.17 in)</li>
-		 * <li>E10 (27x39 mm ; 1.06x1.54 in)</li>
-		 * <li>E11 (19x27 mm ; 0.75x1.06 in)</li>
-		 * <li>E12 (13x19 mm ; 0.51x0.75 in)</li>
-		 * <li><b>SIS 014711 G Series</b></li>
-		 * <li>G0 (958x1354 mm ; 37.72x53.31 in)</li>
-		 * <li>G1 (677x958 mm ; 26.65x37.72 in)</li>
-		 * <li>G2 (479x677 mm ; 18.86x26.65 in)</li>
-		 * <li>G3 (338x479 mm ; 13.31x18.86 in)</li>
-		 * <li>G4 (239x338 mm ; 9.41x13.31 in)</li>
-		 * <li>G5 (169x239 mm ; 6.65x9.41 in)</li>
-		 * <li>G6 (119x169 mm ; 4.69x6.65 in)</li>
-		 * <li>G7 (84x119 mm ; 3.31x4.69 in)</li>
-		 * <li>G8 (59x84 mm ; 2.32x3.31 in)</li>
-		 * <li>G9 (42x59 mm ; 1.65x2.32 in)</li>
-		 * <li>G10 (29x42 mm ; 1.14x1.65 in)</li>
-		 * <li>G11 (21x29 mm ; 0.83x1.14 in)</li>
-		 * <li>G12 (14x21 mm ; 0.55x0.83 in)</li>
-		 * <li><b>ISO Press</b></li>
-		 * <li>RA0 (860x1220 mm ; 33.86x48.03 in)</li>
-		 * <li>RA1 (610x860 mm ; 24.02x33.86 in)</li>
-		 * <li>RA2 (430x610 mm ; 16.93x24.02 in)</li>
-		 * <li>RA3 (305x430 mm ; 12.01x16.93 in)</li>
-		 * <li>RA4 (215x305 mm ; 8.46x12.01 in)</li>
-		 * <li>SRA0 (900x1280 mm ; 35.43x50.39 in)</li>
-		 * <li>SRA1 (640x900 mm ; 25.20x35.43 in)</li>
-		 * <li>SRA2 (450x640 mm ; 17.72x25.20 in)</li>
-		 * <li>SRA3 (320x450 mm ; 12.60x17.72 in)</li>
-		 * <li>SRA4 (225x320 mm ; 8.86x12.60 in)</li>
-		 * <li><b>German  DIN 476</b></li>
-		 * <li>4A0 (1682x2378 mm ; 66.22x93.62 in)</li>
-		 * <li>2A0 (1189x1682 mm ; 46.81x66.22 in)</li>
-		 * <li><b>Variations on the ISO Standard</b></li>
-		 * <li>A2_EXTRA (445x619 mm ; 17.52x24.37 in)</li>
-		 * <li>A3+ (329x483 mm ; 12.95x19.02 in)</li>
-		 * <li>A3_EXTRA (322x445 mm ; 12.68x17.52 in)</li>
-		 * <li>A3_SUPER (305x508 mm ; 12.01x20.00 in)</li>
-		 * <li>SUPER_A3 (305x487 mm ; 12.01x19.17 in)</li>
-		 * <li>A4_EXTRA (235x322 mm ; 9.25x12.68 in)</li>
-		 * <li>A4_SUPER (229x322 mm ; 9.02x12.68 in)</li>
-		 * <li>SUPER_A4 (227x356 mm ; 8.94x14.02 in)</li>
-		 * <li>A4_LONG (210x348 mm ; 8.27x13.70 in)</li>
-		 * <li>F4 (210x330 mm ; 8.27x12.99 in)</li>
-		 * <li>SO_B5_EXTRA (202x276 mm ; 7.95x10.87 in)</li>
-		 * <li>A5_EXTRA (173x235 mm ; 6.81x9.25 in)</li>
-		 * <li><b>ANSI Series</b></li>
-		 * <li>ANSI_E (864x1118 mm ; 34.00x44.00 in)</li>
-		 * <li>ANSI_D (559x864 mm ; 22.00x34.00 in)</li>
-		 * <li>ANSI_C (432x559 mm ; 17.00x22.00 in)</li>
-		 * <li>ANSI_B (279x432 mm ; 11.00x17.00 in)</li>
-		 * <li>ANSI_A (216x279 mm ; 8.50x11.00 in)</li>
-		 * <li><b>Traditional 'Loose' North American Paper Sizes</b></li>
-		 * <li>LEDGER, USLEDGER (432x279 mm ; 17.00x11.00 in)</li>
-		 * <li>TABLOID, USTABLOID, BIBLE, ORGANIZERK (279x432 mm ; 11.00x17.00 in)</li>
-		 * <li>LETTER, USLETTER, ORGANIZERM (216x279 mm ; 8.50x11.00 in)</li>
-		 * <li>LEGAL, USLEGAL (216x356 mm ; 8.50x14.00 in)</li>
-		 * <li>GLETTER, GOVERNMENTLETTER (203x267 mm ; 8.00x10.50 in)</li>
-		 * <li>JLEGAL, JUNIORLEGAL (203x127 mm ; 8.00x5.00 in)</li>
-		 * <li><b>Other North American Paper Sizes</b></li>
-		 * <li>QUADDEMY (889x1143 mm ; 35.00x45.00 in)</li>
-		 * <li>SUPER_B (330x483 mm ; 13.00x19.00 in)</li>
-		 * <li>QUARTO (229x279 mm ; 9.00x11.00 in)</li>
-		 * <li>FOLIO, GOVERNMENTLEGAL (216x330 mm ; 8.50x13.00 in)</li>
-		 * <li>EXECUTIVE, MONARCH (184x267 mm ; 7.25x10.50 in)</li>
-		 * <li>MEMO, STATEMENT, ORGANIZERL (140x216 mm ; 5.50x8.50 in)</li>
-		 * <li>FOOLSCAP (210x330 mm ; 8.27x13.00 in)</li>
-		 * <li>COMPACT (108x171 mm ; 4.25x6.75 in)</li>
-		 * <li>ORGANIZERJ (70x127 mm ; 2.75x5.00 in)</li>
-		 * <li><b>Canadian standard CAN 2-9.60M</b></li>
-		 * <li>P1 (560x860 mm ; 22.05x33.86 in)</li>
-		 * <li>P2 (430x560 mm ; 16.93x22.05 in)</li>
-		 * <li>P3 (280x430 mm ; 11.02x16.93 in)</li>
-		 * <li>P4 (215x280 mm ; 8.46x11.02 in)</li>
-		 * <li>P5 (140x215 mm ; 5.51x8.46 in)</li>
-		 * <li>P6 (107x140 mm ; 4.21x5.51 in)</li>
-		 * <li><b>North American Architectural Sizes</b></li>
-		 * <li>ARCH_E (914x1219 mm ; 36.00x48.00 in)</li>
-		 * <li>ARCH_E1 (762x1067 mm ; 30.00x42.00 in)</li>
-		 * <li>ARCH_D (610x914 mm ; 24.00x36.00 in)</li>
-		 * <li>ARCH_C, BROADSHEET (457x610 mm ; 18.00x24.00 in)</li>
-		 * <li>ARCH_B (305x457 mm ; 12.00x18.00 in)</li>
-		 * <li>ARCH_A (229x305 mm ; 9.00x12.00 in)</li>
-		 * <li><b>Announcement Envelopes</b></li>
-		 * <li>ANNENV_A2 (111x146 mm ; 4.37x5.75 in)</li>
-		 * <li>ANNENV_A6 (121x165 mm ; 4.75x6.50 in)</li>
-		 * <li>ANNENV_A7 (133x184 mm ; 5.25x7.25 in)</li>
-		 * <li>ANNENV_A8 (140x206 mm ; 5.50x8.12 in)</li>
-		 * <li>ANNENV_A10 (159x244 mm ; 6.25x9.62 in)</li>
-		 * <li>ANNENV_SLIM (98x225 mm ; 3.87x8.87 in)</li>
-		 * <li><b>Commercial Envelopes</b></li>
-		 * <li>COMMENV_N6_1/4 (89x152 mm ; 3.50x6.00 in)</li>
-		 * <li>COMMENV_N6_3/4 (92x165 mm ; 3.62x6.50 in)</li>
-		 * <li>COMMENV_N8 (98x191 mm ; 3.87x7.50 in)</li>
-		 * <li>COMMENV_N9 (98x225 mm ; 3.87x8.87 in)</li>
-		 * <li>COMMENV_N10 (105x241 mm ; 4.12x9.50 in)</li>
-		 * <li>COMMENV_N11 (114x263 mm ; 4.50x10.37 in)</li>
-		 * <li>COMMENV_N12 (121x279 mm ; 4.75x11.00 in)</li>
-		 * <li>COMMENV_N14 (127x292 mm ; 5.00x11.50 in)</li>
-		 * <li><b>Catalogue Envelopes</b></li>
-		 * <li>CATENV_N1 (152x229 mm ; 6.00x9.00 in)</li>
-		 * <li>CATENV_N1_3/4 (165x241 mm ; 6.50x9.50 in)</li>
-		 * <li>CATENV_N2 (165x254 mm ; 6.50x10.00 in)</li>
-		 * <li>CATENV_N3 (178x254 mm ; 7.00x10.00 in)</li>
-		 * <li>CATENV_N6 (191x267 mm ; 7.50x10.50 in)</li>
-		 * <li>CATENV_N7 (203x279 mm ; 8.00x11.00 in)</li>
-		 * <li>CATENV_N8 (210x286 mm ; 8.25x11.25 in)</li>
-		 * <li>CATENV_N9_1/2 (216x267 mm ; 8.50x10.50 in)</li>
-		 * <li>CATENV_N9_3/4 (222x286 mm ; 8.75x11.25 in)</li>
-		 * <li>CATENV_N10_1/2 (229x305 mm ; 9.00x12.00 in)</li>
-		 * <li>CATENV_N12_1/2 (241x318 mm ; 9.50x12.50 in)</li>
-		 * <li>CATENV_N13_1/2 (254x330 mm ; 10.00x13.00 in)</li>
-		 * <li>CATENV_N14_1/4 (286x311 mm ; 11.25x12.25 in)</li>
-		 * <li>CATENV_N14_1/2 (292x368 mm ; 11.50x14.50 in)</li>
-		 * <li><b>Japanese (JIS P 0138-61) Standard B-Series</b></li>
-		 * <li>JIS_B0 (1030x1456 mm ; 40.55x57.32 in)</li>
-		 * <li>JIS_B1 (728x1030 mm ; 28.66x40.55 in)</li>
-		 * <li>JIS_B2 (515x728 mm ; 20.28x28.66 in)</li>
-		 * <li>JIS_B3 (364x515 mm ; 14.33x20.28 in)</li>
-		 * <li>JIS_B4 (257x364 mm ; 10.12x14.33 in)</li>
-		 * <li>JIS_B5 (182x257 mm ; 7.17x10.12 in)</li>
-		 * <li>JIS_B6 (128x182 mm ; 5.04x7.17 in)</li>
-		 * <li>JIS_B7 (91x128 mm ; 3.58x5.04 in)</li>
-		 * <li>JIS_B8 (64x91 mm ; 2.52x3.58 in)</li>
-		 * <li>JIS_B9 (45x64 mm ; 1.77x2.52 in)</li>
-		 * <li>JIS_B10 (32x45 mm ; 1.26x1.77 in)</li>
-		 * <li>JIS_B11 (22x32 mm ; 0.87x1.26 in)</li>
-		 * <li>JIS_B12 (16x22 mm ; 0.63x0.87 in)</li>
-		 * <li><b>PA Series</b></li>
-		 * <li>PA0 (840x1120 mm ; 33.07x44.09 in)</li>
-		 * <li>PA1 (560x840 mm ; 22.05x33.07 in)</li>
-		 * <li>PA2 (420x560 mm ; 16.54x22.05 in)</li>
-		 * <li>PA3 (280x420 mm ; 11.02x16.54 in)</li>
-		 * <li>PA4 (210x280 mm ; 8.27x11.02 in)</li>
-		 * <li>PA5 (140x210 mm ; 5.51x8.27 in)</li>
-		 * <li>PA6 (105x140 mm ; 4.13x5.51 in)</li>
-		 * <li>PA7 (70x105 mm ; 2.76x4.13 in)</li>
-		 * <li>PA8 (52x70 mm ; 2.05x2.76 in)</li>
-		 * <li>PA9 (35x52 mm ; 1.38x2.05 in)</li>
-		 * <li>PA10 (26x35 mm ; 1.02x1.38 in)</li>
-		 * <li><b>Standard Photographic Print Sizes</b></li>
-		 * <li>PASSPORT_PHOTO (35x45 mm ; 1.38x1.77 in)</li>
-		 * <li>E (82x120 mm ; 3.25x4.72 in)</li>
-		 * <li>3R, L (89x127 mm ; 3.50x5.00 in)</li>
-		 * <li>4R, KG (102x152 mm ; 4.02x5.98 in)</li>
-		 * <li>4D (120x152 mm ; 4.72x5.98 in)</li>
-		 * <li>5R, 2L (127x178 mm ; 5.00x7.01 in)</li>
-		 * <li>6R, 8P (152x203 mm ; 5.98x7.99 in)</li>
-		 * <li>8R, 6P (203x254 mm ; 7.99x10.00 in)</li>
-		 * <li>S8R, 6PW (203x305 mm ; 7.99x12.01 in)</li>
-		 * <li>10R, 4P (254x305 mm ; 10.00x12.01 in)</li>
-		 * <li>S10R, 4PW (254x381 mm ; 10.00x15.00 in)</li>
-		 * <li>11R (279x356 mm ; 10.98x14.02 in)</li>
-		 * <li>S11R (279x432 mm ; 10.98x17.01 in)</li>
-		 * <li>12R (305x381 mm ; 12.01x15.00 in)</li>
-		 * <li>S12R (305x456 mm ; 12.01x17.95 in)</li>
-		 * <li><b>Common Newspaper Sizes</b></li>
-		 * <li>NEWSPAPER_BROADSHEET (750x600 mm ; 29.53x23.62 in)</li>
-		 * <li>NEWSPAPER_BERLINER (470x315 mm ; 18.50x12.40 in)</li>
-		 * <li>NEWSPAPER_COMPACT, NEWSPAPER_TABLOID (430x280 mm ; 16.93x11.02 in)</li>
-		 * <li><b>Business Cards</b></li>
-		 * <li>CREDIT_CARD, BUSINESS_CARD, BUSINESS_CARD_ISO7810 (54x86 mm ; 2.13x3.37 in)</li>
-		 * <li>BUSINESS_CARD_ISO216 (52x74 mm ; 2.05x2.91 in)</li>
-		 * <li>BUSINESS_CARD_IT, BUSINESS_CARD_UK, BUSINESS_CARD_FR, BUSINESS_CARD_DE, BUSINESS_CARD_ES (55x85 mm ; 2.17x3.35 in)</li>
-		 * <li>BUSINESS_CARD_US, BUSINESS_CARD_CA (51x89 mm ; 2.01x3.50 in)</li>
-		 * <li>BUSINESS_CARD_JP (55x91 mm ; 2.17x3.58 in)</li>
-		 * <li>BUSINESS_CARD_HK (54x90 mm ; 2.13x3.54 in)</li>
-		 * <li>BUSINESS_CARD_AU, BUSINESS_CARD_DK, BUSINESS_CARD_SE (55x90 mm ; 2.17x3.54 in)</li>
-		 * <li>BUSINESS_CARD_RU, BUSINESS_CARD_CZ, BUSINESS_CARD_FI, BUSINESS_CARD_HU, BUSINESS_CARD_IL (50x90 mm ; 1.97x3.54 in)</li>
-		 * <li><b>Billboards</b></li>
-		 * <li>4SHEET (1016x1524 mm ; 40.00x60.00 in)</li>
-		 * <li>6SHEET (1200x1800 mm ; 47.24x70.87 in)</li>
-		 * <li>12SHEET (3048x1524 mm ; 120.00x60.00 in)</li>
-		 * <li>16SHEET (2032x3048 mm ; 80.00x120.00 in)</li>
-		 * <li>32SHEET (4064x3048 mm ; 160.00x120.00 in)</li>
-		 * <li>48SHEET (6096x3048 mm ; 240.00x120.00 in)</li>
-		 * <li>64SHEET (8128x3048 mm ; 320.00x120.00 in)</li>
-		 * <li>96SHEET (12192x3048 mm ; 480.00x120.00 in)</li>
-		 * <li><b>Old Imperial English (some are still used in USA)</b></li>
-		 * <li>EN_EMPEROR (1219x1829 mm ; 48.00x72.00 in)</li>
-		 * <li>EN_ANTIQUARIAN (787x1346 mm ; 31.00x53.00 in)</li>
-		 * <li>EN_GRAND_EAGLE (730x1067 mm ; 28.75x42.00 in)</li>
-		 * <li>EN_DOUBLE_ELEPHANT (679x1016 mm ; 26.75x40.00 in)</li>
-		 * <li>EN_ATLAS (660x864 mm ; 26.00x34.00 in)</li>
-		 * <li>EN_COLOMBIER (597x876 mm ; 23.50x34.50 in)</li>
-		 * <li>EN_ELEPHANT (584x711 mm ; 23.00x28.00 in)</li>
-		 * <li>EN_DOUBLE_DEMY (572x902 mm ; 22.50x35.50 in)</li>
-		 * <li>EN_IMPERIAL (559x762 mm ; 22.00x30.00 in)</li>
-		 * <li>EN_PRINCESS (546x711 mm ; 21.50x28.00 in)</li>
-		 * <li>EN_CARTRIDGE (533x660 mm ; 21.00x26.00 in)</li>
-		 * <li>EN_DOUBLE_LARGE_POST (533x838 mm ; 21.00x33.00 in)</li>
-		 * <li>EN_ROYAL (508x635 mm ; 20.00x25.00 in)</li>
-		 * <li>EN_SHEET, EN_HALF_POST (495x597 mm ; 19.50x23.50 in)</li>
-		 * <li>EN_SUPER_ROYAL (483x686 mm ; 19.00x27.00 in)</li>
-		 * <li>EN_DOUBLE_POST (483x775 mm ; 19.00x30.50 in)</li>
-		 * <li>EN_MEDIUM (445x584 mm ; 17.50x23.00 in)</li>
-		 * <li>EN_DEMY (445x572 mm ; 17.50x22.50 in)</li>
-		 * <li>EN_LARGE_POST (419x533 mm ; 16.50x21.00 in)</li>
-		 * <li>EN_COPY_DRAUGHT (406x508 mm ; 16.00x20.00 in)</li>
-		 * <li>EN_POST (394x489 mm ; 15.50x19.25 in)</li>
-		 * <li>EN_CROWN (381x508 mm ; 15.00x20.00 in)</li>
-		 * <li>EN_PINCHED_POST (375x470 mm ; 14.75x18.50 in)</li>
-		 * <li>EN_BRIEF (343x406 mm ; 13.50x16.00 in)</li>
-		 * <li>EN_FOOLSCAP (343x432 mm ; 13.50x17.00 in)</li>
-		 * <li>EN_SMALL_FOOLSCAP (337x419 mm ; 13.25x16.50 in)</li>
-		 * <li>EN_POTT (318x381 mm ; 12.50x15.00 in)</li>
-		 * <li><b>Old Imperial Belgian</b></li>
-		 * <li>BE_GRAND_AIGLE (700x1040 mm ; 27.56x40.94 in)</li>
-		 * <li>BE_COLOMBIER (620x850 mm ; 24.41x33.46 in)</li>
-		 * <li>BE_DOUBLE_CARRE (620x920 mm ; 24.41x36.22 in)</li>
-		 * <li>BE_ELEPHANT (616x770 mm ; 24.25x30.31 in)</li>
-		 * <li>BE_PETIT_AIGLE (600x840 mm ; 23.62x33.07 in)</li>
-		 * <li>BE_GRAND_JESUS (550x730 mm ; 21.65x28.74 in)</li>
-		 * <li>BE_JESUS (540x730 mm ; 21.26x28.74 in)</li>
-		 * <li>BE_RAISIN (500x650 mm ; 19.69x25.59 in)</li>
-		 * <li>BE_GRAND_MEDIAN (460x605 mm ; 18.11x23.82 in)</li>
-		 * <li>BE_DOUBLE_POSTE (435x565 mm ; 17.13x22.24 in)</li>
-		 * <li>BE_COQUILLE (430x560 mm ; 16.93x22.05 in)</li>
-		 * <li>BE_PETIT_MEDIAN (415x530 mm ; 16.34x20.87 in)</li>
-		 * <li>BE_RUCHE (360x460 mm ; 14.17x18.11 in)</li>
-		 * <li>BE_PROPATRIA (345x430 mm ; 13.58x16.93 in)</li>
-		 * <li>BE_LYS (317x397 mm ; 12.48x15.63 in)</li>
-		 * <li>BE_POT (307x384 mm ; 12.09x15.12 in)</li>
-		 * <li>BE_ROSETTE (270x347 mm ; 10.63x13.66 in)</li>
-		 * <li><b>Old Imperial French</b></li>
-		 * <li>FR_UNIVERS (1000x1300 mm ; 39.37x51.18 in)</li>
-		 * <li>FR_DOUBLE_COLOMBIER (900x1260 mm ; 35.43x49.61 in)</li>
-		 * <li>FR_GRANDE_MONDE (900x1260 mm ; 35.43x49.61 in)</li>
-		 * <li>FR_DOUBLE_SOLEIL (800x1200 mm ; 31.50x47.24 in)</li>
-		 * <li>FR_DOUBLE_JESUS (760x1120 mm ; 29.92x44.09 in)</li>
-		 * <li>FR_GRAND_AIGLE (750x1060 mm ; 29.53x41.73 in)</li>
-		 * <li>FR_PETIT_AIGLE (700x940 mm ; 27.56x37.01 in)</li>
-		 * <li>FR_DOUBLE_RAISIN (650x1000 mm ; 25.59x39.37 in)</li>
-		 * <li>FR_JOURNAL (650x940 mm ; 25.59x37.01 in)</li>
-		 * <li>FR_COLOMBIER_AFFICHE (630x900 mm ; 24.80x35.43 in)</li>
-		 * <li>FR_DOUBLE_CAVALIER (620x920 mm ; 24.41x36.22 in)</li>
-		 * <li>FR_CLOCHE (600x800 mm ; 23.62x31.50 in)</li>
-		 * <li>FR_SOLEIL (600x800 mm ; 23.62x31.50 in)</li>
-		 * <li>FR_DOUBLE_CARRE (560x900 mm ; 22.05x35.43 in)</li>
-		 * <li>FR_DOUBLE_COQUILLE (560x880 mm ; 22.05x34.65 in)</li>
-		 * <li>FR_JESUS (560x760 mm ; 22.05x29.92 in)</li>
-		 * <li>FR_RAISIN (500x650 mm ; 19.69x25.59 in)</li>
-		 * <li>FR_CAVALIER (460x620 mm ; 18.11x24.41 in)</li>
-		 * <li>FR_DOUBLE_COURONNE (460x720 mm ; 18.11x28.35 in)</li>
-		 * <li>FR_CARRE (450x560 mm ; 17.72x22.05 in)</li>
-		 * <li>FR_COQUILLE (440x560 mm ; 17.32x22.05 in)</li>
-		 * <li>FR_DOUBLE_TELLIERE (440x680 mm ; 17.32x26.77 in)</li>
-		 * <li>FR_DOUBLE_CLOCHE (400x600 mm ; 15.75x23.62 in)</li>
-		 * <li>FR_DOUBLE_POT (400x620 mm ; 15.75x24.41 in)</li>
-		 * <li>FR_ECU (400x520 mm ; 15.75x20.47 in)</li>
-		 * <li>FR_COURONNE (360x460 mm ; 14.17x18.11 in)</li>
-		 * <li>FR_TELLIERE (340x440 mm ; 13.39x17.32 in)</li>
-		 * <li>FR_POT (310x400 mm ; 12.20x15.75 in)</li>
-		 * </ul>
-		 * @return array containing page width and height in points
-		 * @access public
-		 * @since 5.0.010 (2010-05-17)
-		 */
-		public function getPageSizeFromFormat($format) {
-			// Paper cordinates are calculated in this way: (inches * 72) where (1 inch = 25.4 mm)
-			switch (strtoupper($format)) {
-				// ISO 216 A Series + 2 SIS 014711 extensions
-				case 'A0' : {$pf = array( 2383.937, 3370.394); break;}
-				case 'A1' : {$pf = array( 1683.780, 2383.937); break;}
-				case 'A2' : {$pf = array( 1190.551, 1683.780); break;}
-				case 'A3' : {$pf = array(  841.890, 1190.551); break;}
-				case 'A4' : {$pf = array(  595.276,  841.890); break;}
-				case 'A5' : {$pf = array(  419.528,  595.276); break;}
-				case 'A6' : {$pf = array(  297.638,  419.528); break;}
-				case 'A7' : {$pf = array(  209.764,  297.638); break;}
-				case 'A8' : {$pf = array(  147.402,  209.764); break;}
-				case 'A9' : {$pf = array(  104.882,  147.402); break;}
-				case 'A10': {$pf = array(   73.701,  104.882); break;}
-				case 'A11': {$pf = array(   51.024,   73.701); break;}
-				case 'A12': {$pf = array(   36.850,   51.024); break;}
-				// ISO 216 B Series + 2 SIS 014711 extensions
-				case 'B0' : {$pf = array( 2834.646, 4008.189); break;}
-				case 'B1' : {$pf = array( 2004.094, 2834.646); break;}
-				case 'B2' : {$pf = array( 1417.323, 2004.094); break;}
-				case 'B3' : {$pf = array( 1000.630, 1417.323); break;}
-				case 'B4' : {$pf = array(  708.661, 1000.630); break;}
-				case 'B5' : {$pf = array(  498.898,  708.661); break;}
-				case 'B6' : {$pf = array(  354.331,  498.898); break;}
-				case 'B7' : {$pf = array(  249.449,  354.331); break;}
-				case 'B8' : {$pf = array(  175.748,  249.449); break;}
-				case 'B9' : {$pf = array(  124.724,  175.748); break;}
-				case 'B10': {$pf = array(   87.874,  124.724); break;}
-				case 'B11': {$pf = array(   62.362,   87.874); break;}
-				case 'B12': {$pf = array(   42.520,   62.362); break;}
-				// ISO 216 C Series + 2 SIS 014711 extensions + 2 EXTENSION
-				case 'C0' : {$pf = array( 2599.370, 3676.535); break;}
-				case 'C1' : {$pf = array( 1836.850, 2599.370); break;}
-				case 'C2' : {$pf = array( 1298.268, 1836.850); break;}
-				case 'C3' : {$pf = array(  918.425, 1298.268); break;}
-				case 'C4' : {$pf = array(  649.134,  918.425); break;}
-				case 'C5' : {$pf = array(  459.213,  649.134); break;}
-				case 'C6' : {$pf = array(  323.150,  459.213); break;}
-				case 'C7' : {$pf = array(  229.606,  323.150); break;}
-				case 'C8' : {$pf = array(  161.575,  229.606); break;}
-				case 'C9' : {$pf = array(  113.386,  161.575); break;}
-				case 'C10': {$pf = array(   79.370,  113.386); break;}
-				case 'C11': {$pf = array(   56.693,   79.370); break;}
-				case 'C12': {$pf = array(   39.685,   56.693); break;}
-				case 'C76': {$pf = array(  229.606,  459.213); break;}
-				case 'DL' : {$pf = array(  311.811,  623.622); break;}
-				// SIS 014711 E Series
-				case 'E0' : {$pf = array( 2491.654, 3517.795); break;}
-				case 'E1' : {$pf = array( 1757.480, 2491.654); break;}
-				case 'E2' : {$pf = array( 1247.244, 1757.480); break;}
-				case 'E3' : {$pf = array(  878.740, 1247.244); break;}
-				case 'E4' : {$pf = array(  623.622,  878.740); break;}
-				case 'E5' : {$pf = array(  439.370,  623.622); break;}
-				case 'E6' : {$pf = array(  311.811,  439.370); break;}
-				case 'E7' : {$pf = array(  221.102,  311.811); break;}
-				case 'E8' : {$pf = array(  155.906,  221.102); break;}
-				case 'E9' : {$pf = array(  110.551,  155.906); break;}
-				case 'E10': {$pf = array(   76.535,  110.551); break;}
-				case 'E11': {$pf = array(   53.858,   76.535); break;}
-				case 'E12': {$pf = array(   36.850,   53.858); break;}
-				// SIS 014711 G Series
-				case 'G0' : {$pf = array( 2715.591, 3838.110); break;}
-				case 'G1' : {$pf = array( 1919.055, 2715.591); break;}
-				case 'G2' : {$pf = array( 1357.795, 1919.055); break;}
-				case 'G3' : {$pf = array(  958.110, 1357.795); break;}
-				case 'G4' : {$pf = array(  677.480,  958.110); break;}
-				case 'G5' : {$pf = array(  479.055,  677.480); break;}
-				case 'G6' : {$pf = array(  337.323,  479.055); break;}
-				case 'G7' : {$pf = array(  238.110,  337.323); break;}
-				case 'G8' : {$pf = array(  167.244,  238.110); break;}
-				case 'G9' : {$pf = array(  119.055,  167.244); break;}
-				case 'G10': {$pf = array(   82.205,  119.055); break;}
-				case 'G11': {$pf = array(   59.528,   82.205); break;}
-				case 'G12': {$pf = array(   39.685,   59.528); break;}
-				// ISO Press
-				case 'RA0': {$pf = array( 2437.795, 3458.268); break;}
-				case 'RA1': {$pf = array( 1729.134, 2437.795); break;}
-				case 'RA2': {$pf = array( 1218.898, 1729.134); break;}
-				case 'RA3': {$pf = array(  864.567, 1218.898); break;}
-				case 'RA4': {$pf = array(  609.449,  864.567); break;}
-				case 'SRA0': {$pf = array( 2551.181, 3628.346); break;}
-				case 'SRA1': {$pf = array( 1814.173, 2551.181); break;}
-				case 'SRA2': {$pf = array( 1275.591, 1814.173); break;}
-				case 'SRA3': {$pf = array(  907.087, 1275.591); break;}
-				case 'SRA4': {$pf = array(  637.795,  907.087); break;}
-				// German  DIN 476
-				case '4A0': {$pf = array( 4767.874, 6740.787); break;}
-				case '2A0': {$pf = array( 3370.394, 4767.874); break;}
-				// Variations on the ISO Standard
-				case 'A2_EXTRA'   : {$pf = array( 1261.417, 1754.646); break;}
-				case 'A3+'        : {$pf = array(  932.598, 1369.134); break;}
-				case 'A3_EXTRA'   : {$pf = array(  912.756, 1261.417); break;}
-				case 'A3_SUPER'   : {$pf = array(  864.567, 1440.000); break;}
-				case 'SUPER_A3'   : {$pf = array(  864.567, 1380.472); break;}
-				case 'A4_EXTRA'   : {$pf = array(  666.142,  912.756); break;}
-				case 'A4_SUPER'   : {$pf = array(  649.134,  912.756); break;}
-				case 'SUPER_A4'   : {$pf = array(  643.465, 1009.134); break;}
-				case 'A4_LONG'    : {$pf = array(  595.276,  986.457); break;}
-				case 'F4'         : {$pf = array(  595.276,  935.433); break;}
-				case 'SO_B5_EXTRA': {$pf = array(  572.598,  782.362); break;}
-				case 'A5_EXTRA'   : {$pf = array(  490.394,  666.142); break;}
-				// ANSI Series
-				case 'ANSI_E': {$pf = array( 2448.000, 3168.000); break;}
-				case 'ANSI_D': {$pf = array( 1584.000, 2448.000); break;}
-				case 'ANSI_C': {$pf = array( 1224.000, 1584.000); break;}
-				case 'ANSI_B': {$pf = array(  792.000, 1224.000); break;}
-				case 'ANSI_A': {$pf = array(  612.000,  792.000); break;}
-				// Traditional 'Loose' North American Paper Sizes
-				case 'USLEDGER':
-				case 'LEDGER' : {$pf = array( 1224.000,  792.000); break;}
-				case 'ORGANIZERK':
-				case 'BIBLE':
-				case 'USTABLOID':
-				case 'TABLOID': {$pf = array(  792.000, 1224.000); break;}
-				case 'ORGANIZERM':
-				case 'USLETTER':
-				case 'LETTER' : {$pf = array(  612.000,  792.000); break;}
-				case 'USLEGAL':
-				case 'LEGAL'  : {$pf = array(  612.000, 1008.000); break;}
-				case 'GOVERNMENTLETTER':
-				case 'GLETTER': {$pf = array(  576.000,  756.000); break;}
-				case 'JUNIORLEGAL':
-				case 'JLEGAL' : {$pf = array(  576.000,  360.000); break;}
-				// Other North American Paper Sizes
-				case 'QUADDEMY': {$pf = array( 2520.000, 3240.000); break;}
-				case 'SUPER_B': {$pf = array(  936.000, 1368.000); break;}
-				case 'QUARTO': {$pf = array(  648.000,  792.000); break;}
-				case 'GOVERNMENTLEGAL':
-				case 'FOLIO': {$pf = array(  612.000,  936.000); break;}
-				case 'MONARCH':
-				case 'EXECUTIVE': {$pf = array(  522.000,  756.000); break;}
-				case 'ORGANIZERL':
-				case 'STATEMENT':
-				case 'MEMO': {$pf = array(  396.000,  612.000); break;}
-				case 'FOOLSCAP': {$pf = array(  595.440,  936.000); break;}
-				case 'COMPACT': {$pf = array(  306.000,  486.000); break;}
-				case 'ORGANIZERJ': {$pf = array(  198.000,  360.000); break;}
-				// Canadian standard CAN 2-9.60M
-				case 'P1': {$pf = array( 1587.402, 2437.795); break;}
-				case 'P2': {$pf = array( 1218.898, 1587.402); break;}
-				case 'P3': {$pf = array(  793.701, 1218.898); break;}
-				case 'P4': {$pf = array(  609.449,  793.701); break;}
-				case 'P5': {$pf = array(  396.850,  609.449); break;}
-				case 'P6': {$pf = array(  303.307,  396.850); break;}
-				// North American Architectural Sizes
-				case 'ARCH_E' : {$pf = array( 2592.000, 3456.000); break;}
-				case 'ARCH_E1': {$pf = array( 2160.000, 3024.000); break;}
-				case 'ARCH_D' : {$pf = array( 1728.000, 2592.000); break;}
-				case 'BROADSHEET':
-				case 'ARCH_C' : {$pf = array( 1296.000, 1728.000); break;}
-				case 'ARCH_B' : {$pf = array(  864.000, 1296.000); break;}
-				case 'ARCH_A' : {$pf = array(  648.000,  864.000); break;}
-				// --- North American Envelope Sizes ---
-				//   - Announcement Envelopes
-				case 'ANNENV_A2'  : {$pf = array(  314.640,  414.000); break;}
-				case 'ANNENV_A6'  : {$pf = array(  342.000,  468.000); break;}
-				case 'ANNENV_A7'  : {$pf = array(  378.000,  522.000); break;}
-				case 'ANNENV_A8'  : {$pf = array(  396.000,  584.640); break;}
-				case 'ANNENV_A10' : {$pf = array(  450.000,  692.640); break;}
-				case 'ANNENV_SLIM': {$pf = array(  278.640,  638.640); break;}
-				//   - Commercial Envelopes
-				case 'COMMENV_N6_1/4': {$pf = array(  252.000,  432.000); break;}
-				case 'COMMENV_N6_3/4': {$pf = array(  260.640,  468.000); break;}
-				case 'COMMENV_N8'    : {$pf = array(  278.640,  540.000); break;}
-				case 'COMMENV_N9'    : {$pf = array(  278.640,  638.640); break;}
-				case 'COMMENV_N10'   : {$pf = array(  296.640,  684.000); break;}
-				case 'COMMENV_N11'   : {$pf = array(  324.000,  746.640); break;}
-				case 'COMMENV_N12'   : {$pf = array(  342.000,  792.000); break;}
-				case 'COMMENV_N14'   : {$pf = array(  360.000,  828.000); break;}
-				//   - Catalogue Envelopes
-				case 'CATENV_N1'     : {$pf = array(  432.000,  648.000); break;}
-				case 'CATENV_N1_3/4' : {$pf = array(  468.000,  684.000); break;}
-				case 'CATENV_N2'     : {$pf = array(  468.000,  720.000); break;}
-				case 'CATENV_N3'     : {$pf = array(  504.000,  720.000); break;}
-				case 'CATENV_N6'     : {$pf = array(  540.000,  756.000); break;}
-				case 'CATENV_N7'     : {$pf = array(  576.000,  792.000); break;}
-				case 'CATENV_N8'     : {$pf = array(  594.000,  810.000); break;}
-				case 'CATENV_N9_1/2' : {$pf = array(  612.000,  756.000); break;}
-				case 'CATENV_N9_3/4' : {$pf = array(  630.000,  810.000); break;}
-				case 'CATENV_N10_1/2': {$pf = array(  648.000,  864.000); break;}
-				case 'CATENV_N12_1/2': {$pf = array(  684.000,  900.000); break;}
-				case 'CATENV_N13_1/2': {$pf = array(  720.000,  936.000); break;}
-				case 'CATENV_N14_1/4': {$pf = array(  810.000,  882.000); break;}
-				case 'CATENV_N14_1/2': {$pf = array(  828.000, 1044.000); break;}
-				// Japanese (JIS P 0138-61) Standard B-Series
-				case 'JIS_B0' : {$pf = array( 2919.685, 4127.244); break;}
-				case 'JIS_B1' : {$pf = array( 2063.622, 2919.685); break;}
-				case 'JIS_B2' : {$pf = array( 1459.843, 2063.622); break;}
-				case 'JIS_B3' : {$pf = array( 1031.811, 1459.843); break;}
-				case 'JIS_B4' : {$pf = array(  728.504, 1031.811); break;}
-				case 'JIS_B5' : {$pf = array(  515.906,  728.504); break;}
-				case 'JIS_B6' : {$pf = array(  362.835,  515.906); break;}
-				case 'JIS_B7' : {$pf = array(  257.953,  362.835); break;}
-				case 'JIS_B8' : {$pf = array(  181.417,  257.953); break;}
-				case 'JIS_B9' : {$pf = array(  127.559,  181.417); break;}
-				case 'JIS_B10': {$pf = array(   90.709,  127.559); break;}
-				case 'JIS_B11': {$pf = array(   62.362,   90.709); break;}
-				case 'JIS_B12': {$pf = array(   45.354,   62.362); break;}
-				// PA Series
-				case 'PA0' : {$pf = array( 2381.102, 3174.803,); break;}
-				case 'PA1' : {$pf = array( 1587.402, 2381.102); break;}
-				case 'PA2' : {$pf = array( 1190.551, 1587.402); break;}
-				case 'PA3' : {$pf = array(  793.701, 1190.551); break;}
-				case 'PA4' : {$pf = array(  595.276,  793.701); break;}
-				case 'PA5' : {$pf = array(  396.850,  595.276); break;}
-				case 'PA6' : {$pf = array(  297.638,  396.850); break;}
-				case 'PA7' : {$pf = array(  198.425,  297.638); break;}
-				case 'PA8' : {$pf = array(  147.402,  198.425); break;}
-				case 'PA9' : {$pf = array(   99.213,  147.402); break;}
-				case 'PA10': {$pf = array(   73.701,   99.213); break;}
-				// Standard Photographic Print Sizes
-				case 'PASSPORT_PHOTO': {$pf = array(   99.213,  127.559); break;}
-				case 'E'   : {$pf = array(  233.858,  340.157); break;}
-				case 'L':
-				case '3R'  : {$pf = array(  252.283,  360.000); break;}
-				case 'KG':
-				case '4R'  : {$pf = array(  289.134,  430.866); break;}
-				case '4D'  : {$pf = array(  340.157,  430.866); break;}
-				case '2L':
-				case '5R'  : {$pf = array(  360.000,  504.567); break;}
-				case '8P':
-				case '6R'  : {$pf = array(  430.866,  575.433); break;}
-				case '6P':
-				case '8R'  : {$pf = array(  575.433,  720.000); break;}
-				case '6PW':
-				case 'S8R' : {$pf = array(  575.433,  864.567); break;}
-				case '4P':
-				case '10R' : {$pf = array(  720.000,  864.567); break;}
-				case '4PW':
-				case 'S10R': {$pf = array(  720.000, 1080.000); break;}
-				case '11R' : {$pf = array(  790.866, 1009.134); break;}
-				case 'S11R': {$pf = array(  790.866, 1224.567); break;}
-				case '12R' : {$pf = array(  864.567, 1080.000); break;}
-				case 'S12R': {$pf = array(  864.567, 1292.598); break;}
-				// Common Newspaper Sizes
-				case 'NEWSPAPER_BROADSHEET': {$pf = array( 2125.984, 1700.787); break;}
-				case 'NEWSPAPER_BERLINER'  : {$pf = array( 1332.283,  892.913); break;}
-				case 'NEWSPAPER_TABLOID':
-				case 'NEWSPAPER_COMPACT'   : {$pf = array( 1218.898,  793.701); break;}
-				// Business Cards
-				case 'CREDIT_CARD':
-				case 'BUSINESS_CARD':
-				case 'BUSINESS_CARD_ISO7810': {$pf = array(  153.014,  242.646); break;}
-				case 'BUSINESS_CARD_ISO216' : {$pf = array(  147.402,  209.764); break;}
-				case 'BUSINESS_CARD_IT':
-				case 'BUSINESS_CARD_UK':
-				case 'BUSINESS_CARD_FR':
-				case 'BUSINESS_CARD_DE':
-				case 'BUSINESS_CARD_ES'     : {$pf = array(  155.906,  240.945); break;}
-				case 'BUSINESS_CARD_CA':
-				case 'BUSINESS_CARD_US'     : {$pf = array(  144.567,  252.283); break;}
-				case 'BUSINESS_CARD_JP'     : {$pf = array(  155.906,  257.953); break;}
-				case 'BUSINESS_CARD_HK'     : {$pf = array(  153.071,  255.118); break;}
-				case 'BUSINESS_CARD_AU':
-				case 'BUSINESS_CARD_DK':
-				case 'BUSINESS_CARD_SE'     : {$pf = array(  155.906,  255.118); break;}
-				case 'BUSINESS_CARD_RU':
-				case 'BUSINESS_CARD_CZ':
-				case 'BUSINESS_CARD_FI':
-				case 'BUSINESS_CARD_HU':
-				case 'BUSINESS_CARD_IL'     : {$pf = array(  141.732,  255.118); break;}
-				// Billboards
-				case '4SHEET' : {$pf = array( 2880.000, 4320.000); break;}
-				case '6SHEET' : {$pf = array( 3401.575, 5102.362); break;}
-				case '12SHEET': {$pf = array( 8640.000, 4320.000); break;}
-				case '16SHEET': {$pf = array( 5760.000, 8640.000); break;}
-				case '32SHEET': {$pf = array(11520.000, 8640.000); break;}
-				case '48SHEET': {$pf = array(17280.000, 8640.000); break;}
-				case '64SHEET': {$pf = array(23040.000, 8640.000); break;}
-				case '96SHEET': {$pf = array(34560.000, 8640.000); break;}
-				// Old European Sizes
-				//   - Old Imperial English Sizes
-				case 'EN_EMPEROR'          : {$pf = array( 3456.000, 5184.000); break;}
-				case 'EN_ANTIQUARIAN'      : {$pf = array( 2232.000, 3816.000); break;}
-				case 'EN_GRAND_EAGLE'      : {$pf = array( 2070.000, 3024.000); break;}
-				case 'EN_DOUBLE_ELEPHANT'  : {$pf = array( 1926.000, 2880.000); break;}
-				case 'EN_ATLAS'            : {$pf = array( 1872.000, 2448.000); break;}
-				case 'EN_COLOMBIER'        : {$pf = array( 1692.000, 2484.000); break;}
-				case 'EN_ELEPHANT'         : {$pf = array( 1656.000, 2016.000); break;}
-				case 'EN_DOUBLE_DEMY'      : {$pf = array( 1620.000, 2556.000); break;}
-				case 'EN_IMPERIAL'         : {$pf = array( 1584.000, 2160.000); break;}
-				case 'EN_PRINCESS'         : {$pf = array( 1548.000, 2016.000); break;}
-				case 'EN_CARTRIDGE'        : {$pf = array( 1512.000, 1872.000); break;}
-				case 'EN_DOUBLE_LARGE_POST': {$pf = array( 1512.000, 2376.000); break;}
-				case 'EN_ROYAL'            : {$pf = array( 1440.000, 1800.000); break;}
-				case 'EN_SHEET':
-				case 'EN_HALF_POST'        : {$pf = array( 1404.000, 1692.000); break;}
-				case 'EN_SUPER_ROYAL'      : {$pf = array( 1368.000, 1944.000); break;}
-				case 'EN_DOUBLE_POST'      : {$pf = array( 1368.000, 2196.000); break;}
-				case 'EN_MEDIUM'           : {$pf = array( 1260.000, 1656.000); break;}
-				case 'EN_DEMY'             : {$pf = array( 1260.000, 1620.000); break;}
-				case 'EN_LARGE_POST'       : {$pf = array( 1188.000, 1512.000); break;}
-				case 'EN_COPY_DRAUGHT'     : {$pf = array( 1152.000, 1440.000); break;}
-				case 'EN_POST'             : {$pf = array( 1116.000, 1386.000); break;}
-				case 'EN_CROWN'            : {$pf = array( 1080.000, 1440.000); break;}
-				case 'EN_PINCHED_POST'     : {$pf = array( 1062.000, 1332.000); break;}
-				case 'EN_BRIEF'            : {$pf = array(  972.000, 1152.000); break;}
-				case 'EN_FOOLSCAP'         : {$pf = array(  972.000, 1224.000); break;}
-				case 'EN_SMALL_FOOLSCAP'   : {$pf = array(  954.000, 1188.000); break;}
-				case 'EN_POTT'             : {$pf = array(  900.000, 1080.000); break;}
-				//   - Old Imperial Belgian Sizes
-				case 'BE_GRAND_AIGLE' : {$pf = array( 1984.252, 2948.031); break;}
-				case 'BE_COLOMBIER'   : {$pf = array( 1757.480, 2409.449); break;}
-				case 'BE_DOUBLE_CARRE': {$pf = array( 1757.480, 2607.874); break;}
-				case 'BE_ELEPHANT'    : {$pf = array( 1746.142, 2182.677); break;}
-				case 'BE_PETIT_AIGLE' : {$pf = array( 1700.787, 2381.102); break;}
-				case 'BE_GRAND_JESUS' : {$pf = array( 1559.055, 2069.291); break;}
-				case 'BE_JESUS'       : {$pf = array( 1530.709, 2069.291); break;}
-				case 'BE_RAISIN'      : {$pf = array( 1417.323, 1842.520); break;}
-				case 'BE_GRAND_MEDIAN': {$pf = array( 1303.937, 1714.961); break;}
-				case 'BE_DOUBLE_POSTE': {$pf = array( 1233.071, 1601.575); break;}
-				case 'BE_COQUILLE'    : {$pf = array( 1218.898, 1587.402); break;}
-				case 'BE_PETIT_MEDIAN': {$pf = array( 1176.378, 1502.362); break;}
-				case 'BE_RUCHE'       : {$pf = array( 1020.472, 1303.937); break;}
-				case 'BE_PROPATRIA'   : {$pf = array(  977.953, 1218.898); break;}
-				case 'BE_LYS'         : {$pf = array(  898.583, 1125.354); break;}
-				case 'BE_POT'         : {$pf = array(  870.236, 1088.504); break;}
-				case 'BE_ROSETTE'     : {$pf = array(  765.354,  983.622); break;}
-				//   - Old Imperial French Sizes
-				case 'FR_UNIVERS'          : {$pf = array( 2834.646, 3685.039); break;}
-				case 'FR_DOUBLE_COLOMBIER' : {$pf = array( 2551.181, 3571.654); break;}
-				case 'FR_GRANDE_MONDE'     : {$pf = array( 2551.181, 3571.654); break;}
-				case 'FR_DOUBLE_SOLEIL'    : {$pf = array( 2267.717, 3401.575); break;}
-				case 'FR_DOUBLE_JESUS'     : {$pf = array( 2154.331, 3174.803); break;}
-				case 'FR_GRAND_AIGLE'      : {$pf = array( 2125.984, 3004.724); break;}
-				case 'FR_PETIT_AIGLE'      : {$pf = array( 1984.252, 2664.567); break;}
-				case 'FR_DOUBLE_RAISIN'    : {$pf = array( 1842.520, 2834.646); break;}
-				case 'FR_JOURNAL'          : {$pf = array( 1842.520, 2664.567); break;}
-				case 'FR_COLOMBIER_AFFICHE': {$pf = array( 1785.827, 2551.181); break;}
-				case 'FR_DOUBLE_CAVALIER'  : {$pf = array( 1757.480, 2607.874); break;}
-				case 'FR_CLOCHE'           : {$pf = array( 1700.787, 2267.717); break;}
-				case 'FR_SOLEIL'           : {$pf = array( 1700.787, 2267.717); break;}
-				case 'FR_DOUBLE_CARRE'     : {$pf = array( 1587.402, 2551.181); break;}
-				case 'FR_DOUBLE_COQUILLE'  : {$pf = array( 1587.402, 2494.488); break;}
-				case 'FR_JESUS'            : {$pf = array( 1587.402, 2154.331); break;}
-				case 'FR_RAISIN'           : {$pf = array( 1417.323, 1842.520); break;}
-				case 'FR_CAVALIER'         : {$pf = array( 1303.937, 1757.480); break;}
-				case 'FR_DOUBLE_COURONNE'  : {$pf = array( 1303.937, 2040.945); break;}
-				case 'FR_CARRE'            : {$pf = array( 1275.591, 1587.402); break;}
-				case 'FR_COQUILLE'         : {$pf = array( 1247.244, 1587.402); break;}
-				case 'FR_DOUBLE_TELLIERE'  : {$pf = array( 1247.244, 1927.559); break;}
-				case 'FR_DOUBLE_CLOCHE'    : {$pf = array( 1133.858, 1700.787); break;}
-				case 'FR_DOUBLE_POT'       : {$pf = array( 1133.858, 1757.480); break;}
-				case 'FR_ECU'              : {$pf = array( 1133.858, 1474.016); break;}
-				case 'FR_COURONNE'         : {$pf = array( 1020.472, 1303.937); break;}
-				case 'FR_TELLIERE'         : {$pf = array(  963.780, 1247.244); break;}
-				case 'FR_POT'              : {$pf = array(  878.740, 1133.858); break;}
-				// DEFAULT ISO A4
-				default: {$pf = array(  595.276,  841.890); break;}
-			}
-			return $pf;
-		}
-
-		/**
-		 * Change the format of the current page
-		 * @param mixed $format The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() documentation or an array containing page measures and advanced options:<ul><li>['format'] = page format name (one of the above);</li><li>['Rotate'] : The number of degrees by which the page shall be rotated clockwise when displayed or printed. The value shall be a multiple of 90.</li><li>['PZ'] : The page's preferred zoom (magnification) factor.</li><li>['MediaBox'] : the boundaries of the physical medium on which the page shall be displayed or printed:</li><li>['MediaBox']['llx'] : lower-left x coordinate in points</li><li>['MediaBox']['lly'] : lower-left y coordinate in points</li><li>['MediaBox']['urx'] : upper-right x coordinate in points</li><li>['MediaBox']['ury'] : upper-right y coordinate in points</li><li>['CropBox'] : the visible region of default user space:</li><li>['CropBox']['llx'] : lower-left x coordinate in points</li><li>['CropBox']['lly'] : lower-left y coordinate in points</li><li>['CropBox']['urx'] : upper-right x coordinate in points</li><li>['CropBox']['ury'] : upper-right y coordinate in points</li><li>['BleedBox'] : the region to which the contents of the page shall be clipped when output in a production environment:</li><li>['BleedBox']['llx'] : lower-left x coordinate in points</li><li>['BleedBox']['lly'] : lower-left y coordinate in points</li><li>['BleedBox']['urx'] : upper-right x coordinate in points</li><li>['BleedBox']['ury'] : upper-right y coordinate in points</li><li>['TrimBox'] : the intended dimensions of the finished page after trimming:</li><li>['TrimBox']['llx'] : lower-left x coordinate in points</li><li>['TrimBox']['lly'] : lower-left y coordinate in points</li><li>['TrimBox']['urx'] : upper-right x coordinate in points</li><li>['TrimBox']['ury'] : upper-right y coordinate in points</li><li>['ArtBox'] : the extent of the page's meaningful content:</li><li>['ArtBox']['llx'] : lower-left x coordinate in points</li><li>['ArtBox']['lly'] : lower-left y coordinate in points</li><li>['ArtBox']['urx'] : upper-right x coordinate in points</li><li>['ArtBox']['ury'] : upper-right y coordinate in points</li><li>['BoxColorInfo'] :specify the colours and other visual characteristics that should be used in displaying guidelines on the screen for each of the possible page boundaries other than the MediaBox:</li><li>['BoxColorInfo'][BOXTYPE]['C'] : an array of three numbers in the range 0-255, representing the components in the DeviceRGB colour space.</li><li>['BoxColorInfo'][BOXTYPE]['W'] : the guideline width in default user units</li><li>['BoxColorInfo'][BOXTYPE]['S'] : the guideline style: S = Solid; D = Dashed</li><li>['BoxColorInfo'][BOXTYPE]['D'] : dash array defining a pattern of dashes and gaps to be used in drawing dashed guidelines</li><li>['trans'] : the style and duration of the visual transition to use when moving from another page to the given page during a presentation</li><li>['trans']['Dur'] : The page's display duration (also called its advance timing): the maximum length of time, in seconds, that the page shall be displayed during presentations before the viewer application shall automatically advance to the next page.</li><li>['trans']['S'] : transition style : Split, Blinds, Box, Wipe, Dissolve, Glitter, R, Fly, Push, Cover, Uncover, Fade</li><li>['trans']['D'] : The duration of the transition effect, in seconds.</li><li>['trans']['Dm'] : (Split and Blinds transition styles only) The dimension in which the specified transition effect shall occur: H = Horizontal, V = Vertical. Default value: H.</li><li>['trans']['M'] : (Split, Box and Fly transition styles only) The direction of motion for the specified transition effect: I = Inward from the edges of the page, O = Outward from the center of the pageDefault value: I.</li><li>['trans']['Di'] : (Wipe, Glitter, Fly, Cover, Uncover and Push transition styles only) The direction in which the specified transition effect shall moves, expressed in degrees counterclockwise starting from a left-to-right direction. If the value is a number, it shall be one of: 0 = Left to right, 90 = Bottom to top (Wipe only), 180 = Right to left (Wipe only), 270 = Top to bottom, 315 = Top-left to bottom-right (Glitter only). If the value is a name, it shall be None, which is relevant only for the Fly transition when the value of SS is not 1.0. Default value: 0.</li><li>['trans']['SS'] : (Fly transition style only) The starting or ending scale at which the changes shall be drawn. If M specifies an inward transition, the scale of the changes drawn shall progress from SS to 1.0 over the course of the transition. If M specifies an outward transition, the scale of the changes drawn shall progress from 1.0 to SS over the course of the transition. Default: 1.0.</li><li>['trans']['B'] : (Fly transition style only) If true, the area that shall be flown in is rectangular and opaque. Default: false.</li></ul>
-		 * @access protected
-		 * @since 3.0.015 (2008-06-06)
-		 * @see getPageSizeFromFormat()
-		 */
-		protected function setPageFormat($format, $orientation='P') {
-			if (!empty($format) AND isset($this->pagedim[$this->page])) {
-				// remove inherited values
-				unset($this->pagedim[$this->page]);
-			}
-			if (is_string($format)) {
-				// get page measures from format name
-				$pf = $this->getPageSizeFromFormat($format);
-				$this->fwPt = $pf[0];
-				$this->fhPt = $pf[1];
-			} else {
-				// the boundaries of the physical medium on which the page shall be displayed or printed
-				if (isset($format['MediaBox'])) {
-					$this->setPageBoxes($this->page, 'MediaBox', $format['MediaBox']['llx'], $format['MediaBox']['lly'], $format['MediaBox']['urx'], $format['MediaBox']['ury'], false);
-					$this->fwPt = (($format['MediaBox']['urx'] - $format['MediaBox']['llx']) * $this->k);
-					$this->fhPt = (($format['MediaBox']['ury'] - $format['MediaBox']['lly']) * $this->k);
-				} else {
-					if (isset($format[0]) AND is_numeric($format[0]) AND isset($format[1]) AND is_numeric($format[1])) {
-						$pf = array(($format[0] * $this->k), ($format[1] * $this->k));
-					} else {
-						if (!isset($format['format'])) {
-							// default value
-							$format['format'] = 'A4';
-						}
-						$pf = $this->getPageSizeFromFormat($format['format']);
-					}
-					$this->fwPt = $pf[0];
-					$this->fhPt = $pf[1];
-					$this->setPageBoxes($this->page, 'MediaBox', 0, 0, $this->fwPt, $this->fhPt, true);
-				}
-				// the visible region of default user space
-				if (isset($format['CropBox'])) {
-					$this->setPageBoxes($this->page, 'CropBox', $format['CropBox']['llx'], $format['CropBox']['lly'], $format['CropBox']['urx'], $format['CropBox']['ury'], false);
-				}
-				// the region to which the contents of the page shall be clipped when output in a production environment
-				if (isset($format['BleedBox'])) {
-					$this->setPageBoxes($this->page, 'BleedBox', $format['BleedBox']['llx'], $format['BleedBox']['lly'], $format['BleedBox']['urx'], $format['BleedBox']['ury'], false);
-				}
-				// the intended dimensions of the finished page after trimming
-				if (isset($format['TrimBox'])) {
-					$this->setPageBoxes($this->page, 'TrimBox', $format['TrimBox']['llx'], $format['TrimBox']['lly'], $format['TrimBox']['urx'], $format['TrimBox']['ury'], false);
-				}
-				// the page's meaningful content (including potential white space)
-				if (isset($format['ArtBox'])) {
-					$this->setPageBoxes($this->page, 'ArtBox', $format['ArtBox']['llx'], $format['ArtBox']['lly'], $format['ArtBox']['urx'], $format['ArtBox']['ury'], false);
-				}
-				// specify the colours and other visual characteristics that should be used in displaying guidelines on the screen for the various page boundaries
-				if (isset($format['BoxColorInfo'])) {
-					$this->pagedim[$this->page]['BoxColorInfo'] = $format['BoxColorInfo'];
-				}
-				if (isset($format['Rotate']) AND (($format['Rotate'] % 90) == 0)) {
-					// The number of degrees by which the page shall be rotated clockwise when displayed or printed. The value shall be a multiple of 90.
-					$this->pagedim[$this->page]['Rotate'] = intval($format['Rotate']);
-				}
-				if (isset($format['PZ'])) {
-					// The page's preferred zoom (magnification) factor
-					$this->pagedim[$this->page]['PZ'] = floatval($format['PZ']);
-				}
-				if (isset($format['trans'])) {
-					// The style and duration of the visual transition to use when moving from another page to the given page during a presentation
-					if (isset($format['trans']['Dur'])) {
-						// The page's display duration
-						$this->pagedim[$this->page]['trans']['Dur'] = floatval($format['trans']['Dur']);
-					}
-					$stansition_styles = array('Split', 'Blinds', 'Box', 'Wipe', 'Dissolve', 'Glitter', 'R', 'Fly', 'Push', 'Cover', 'Uncover', 'Fade');
-					if (isset($format['trans']['S']) AND in_array($format['trans']['S'], $stansition_styles)) {
-						// The transition style that shall be used when moving to this page from another during a presentation
-						$this->pagedim[$this->page]['trans']['S'] = $format['trans']['S'];
-						$valid_effect = array('Split', 'Blinds');
-						$valid_vals = array('H', 'V');
-						if (isset($format['trans']['Dm']) AND in_array($format['trans']['S'], $valid_effect) AND in_array($format['trans']['Dm'], $valid_vals)) {
-							$this->pagedim[$this->page]['trans']['Dm'] = $format['trans']['Dm'];
-						}
-						$valid_effect = array('Split', 'Box', 'Fly');
-						$valid_vals = array('I', 'O');
-						if (isset($format['trans']['M']) AND in_array($format['trans']['S'], $valid_effect) AND in_array($format['trans']['M'], $valid_vals)) {
-							$this->pagedim[$this->page]['trans']['M'] = $format['trans']['M'];
-						}
-						$valid_effect = array('Wipe', 'Glitter', 'Fly', 'Cover', 'Uncover', 'Push');
-						if (isset($format['trans']['Di']) AND in_array($format['trans']['S'], $valid_effect)) {
-							if (((($format['trans']['Di'] == 90) OR ($format['trans']['Di'] == 180)) AND ($format['trans']['S'] == 'Wipe'))
-								OR (($format['trans']['Di'] == 315) AND ($format['trans']['S'] == 'Glitter'))
-								OR (($format['trans']['Di'] == 0) OR ($format['trans']['Di'] == 270))) {
-								$this->pagedim[$this->page]['trans']['Di'] = intval($format['trans']['Di']);
-							}
-						}
-						if (isset($format['trans']['SS']) AND ($format['trans']['S'] == 'Fly')) {
-							$this->pagedim[$this->page]['trans']['SS'] = floatval($format['trans']['SS']);
-						}
-						if (isset($format['trans']['B']) AND ($format['trans']['B'] === true) AND ($format['trans']['S'] == 'Fly')) {
-							$this->pagedim[$this->page]['trans']['B'] = 'true';
-						}
-					} else {
-						$this->pagedim[$this->page]['trans']['S'] = 'R';
-					}
-					if (isset($format['trans']['D'])) {
-						// The duration of the transition effect, in seconds
-						$this->pagedim[$this->page]['trans']['D'] = floatval($format['trans']['D']);
-					} else {
-						$this->pagedim[$this->page]['trans']['D'] = 1;
-					}
-				}
+			// correct internal cell padding if required to avoid overlap between text and lines
+			if ((strpos($border,'T') !== false) AND ($this->cell_padding['T'] < $adj)) {
+				$this->cell_padding['T'] = $adj;
+			}
+			if ((strpos($border,'R') !== false) AND ($this->cell_padding['R'] < $adj)) {
+				$this->cell_padding['R'] = $adj;
+			}
+			if ((strpos($border,'B') !== false) AND ($this->cell_padding['B'] < $adj)) {
+				$this->cell_padding['B'] = $adj;
+			}
+			if ((strpos($border,'L') !== false) AND ($this->cell_padding['L'] < $adj)) {
+				$this->cell_padding['L'] = $adj;
 			}
-			$this->setPageOrientation($orientation);
 		}
+		return array('T' => ($this->cell_padding['T'] - $cp['T']), 'R' => ($this->cell_padding['R'] - $cp['R']), 'B' => ($this->cell_padding['B'] - $cp['B']), 'L' => ($this->cell_padding['L'] - $cp['L']));
+	}
 
-		/**
-		 * Set page boundaries.
-		 * @param int $page page number
-		 * @param string $type valid values are: <ul><li>'MediaBox' : the boundaries of the physical medium on which the page shall be displayed or printed;</li><li>'CropBox' : the visible region of default user space;</li><li>'BleedBox' : the region to which the contents of the page shall be clipped when output in a production environment;</li><li>'TrimBox' : the intended dimensions of the finished page after trimming;</li><li>'ArtBox' : the page's meaningful content (including potential white space).</li></ul>
-		 * @param float $llx lower-left x coordinate in user units
-		 * @param float $lly lower-left y coordinate in user units
-		 * @param float $urx upper-right x coordinate in user units
-		 * @param float $ury upper-right y coordinate in user units
-		 * @param boolean $points if true uses user units as unit of measure, otherwise uses PDF points
-		 * @access public
-		 * @since 5.0.010 (2010-05-17)
-		 */
-		public function setPageBoxes($page, $type, $llx, $lly, $urx, $ury, $points=false) {
-			if (!isset($this->pagedim[$page])) {
-				// initialize array
-				$this->pagedim[$page] = array();
-			}
-			$pageboxes = array('MediaBox', 'CropBox', 'BleedBox', 'TrimBox', 'ArtBox');
-			if (!in_array($type, $pageboxes)) {
-				return;
+	/**
+	 * Enables or disables the automatic page breaking mode. When enabling, the second parameter is the distance from the bottom of the page that defines the triggering limit. By default, the mode is on and the margin is 2 cm.
+	 * @param $auto (boolean) Boolean indicating if mode should be on or off.
+	 * @param $margin (float) Distance from the bottom of the page.
+	 * @public
+	 * @since 1.0
+	 * @see Cell(), MultiCell(), AcceptPageBreak()
+	 */
+	public function SetAutoPageBreak($auto, $margin=0) {
+		$this->AutoPageBreak = $auto;
+		$this->bMargin = $margin;
+		$this->PageBreakTrigger = $this->h - $margin;
+	}
+
+	/**
+	 * Defines the way the document is to be displayed by the viewer.
+	 * @param $zoom (mixed) The zoom to use. It can be one of the following string values or a number indicating the zooming factor to use. <ul><li>fullpage: displays the entire page on screen </li><li>fullwidth: uses maximum width of window</li><li>real: uses real size (equivalent to 100% zoom)</li><li>default: uses viewer default mode</li></ul>
+	 * @param $layout (string) The page layout. Possible values are:<ul><li>SinglePage Display one page at a time</li><li>OneColumn Display the pages in one column</li><li>TwoColumnLeft Display the pages in two columns, with odd-numbered pages on the left</li><li>TwoColumnRight Display the pages in two columns, with odd-numbered pages on the right</li><li>TwoPageLeft (PDF 1.5) Display the pages two at a time, with odd-numbered pages on the left</li><li>TwoPageRight (PDF 1.5) Display the pages two at a time, with odd-numbered pages on the right</li></ul>
+	 * @param $mode (string) A name object specifying how the document should be displayed when opened:<ul><li>UseNone Neither document outline nor thumbnail images visible</li><li>UseOutlines Document outline visible</li><li>UseThumbs Thumbnail images visible</li><li>FullScreen Full-screen mode, with no menu bar, window controls, or any other window visible</li><li>UseOC (PDF 1.5) Optional content group panel visible</li><li>UseAttachments (PDF 1.6) Attachments panel visible</li></ul>
+	 * @public
+	 * @since 1.2
+	 */
+	public function SetDisplayMode($zoom, $layout='SinglePage', $mode='UseNone') {
+		if (($zoom == 'fullpage') OR ($zoom == 'fullwidth') OR ($zoom == 'real') OR ($zoom == 'default') OR (!is_string($zoom))) {
+			$this->ZoomMode = $zoom;
+		} else {
+			$this->Error('Incorrect zoom display mode: '.$zoom);
+		}
+		switch ($layout) {
+			case 'default':
+			case 'single':
+			case 'SinglePage': {
+				$this->LayoutMode = 'SinglePage';
+				break;
 			}
-			if ($points) {
-				$k = 1;
-			} else {
-				$k = $this->k;
-			}
-			$this->pagedim[$page][$type]['llx'] = ($llx * $k);
-			$this->pagedim[$page][$type]['lly'] = ($lly * $k);
-			$this->pagedim[$page][$type]['urx'] = ($urx * $k);
-			$this->pagedim[$page][$type]['ury'] = ($ury * $k);
-		}
-
-		/**
-		 * Swap X and Y coordinates of page boxes (change page boxes orientation).
-		 * @param int $page page number
-		 * @access protected
-		 * @since 5.0.010 (2010-05-17)
-		 */
-		protected function swapPageBoxCoordinates($page) {
-			$pageboxes = array('MediaBox', 'CropBox', 'BleedBox', 'TrimBox', 'ArtBox');
-			foreach ($pageboxes as $type) {
-				// swap X and Y coordinates
-				if (isset($this->pagedim[$page][$type])) {
-					$tmp = $this->pagedim[$page][$type]['llx'];
-					$this->pagedim[$page][$type]['llx'] = $this->pagedim[$page][$type]['lly'];
-					$this->pagedim[$page][$type]['lly'] = $tmp;
-					$tmp = $this->pagedim[$page][$type]['urx'];
-					$this->pagedim[$page][$type]['urx'] = $this->pagedim[$page][$type]['ury'];
-					$this->pagedim[$page][$type]['ury'] = $tmp;
-				}
-			}
-		}
-
-		/**
-		 * Set page orientation.
-		 * @param string $orientation page orientation. Possible values are (case insensitive):<ul><li>P or PORTRAIT (default)</li><li>L or LANDSCAPE</li></ul>
-		 * @param boolean $autopagebreak Boolean indicating if auto-page-break mode should be on or off.
-		 * @param float $bottommargin bottom margin of the page.
-		 * @access public
-		 * @since 3.0.015 (2008-06-06)
-		 */
-		public function setPageOrientation($orientation, $autopagebreak='', $bottommargin='') {
-			if (!isset($this->pagedim[$this->page]['MediaBox'])) {
-				// the boundaries of the physical medium on which the page shall be displayed or printed
-				$this->setPageBoxes($this->page, 'MediaBox', 0, 0, $this->fwPt, $this->fhPt, true);
+			case 'continuous':
+			case 'OneColumn': {
+				$this->LayoutMode = 'OneColumn';
+				break;
 			}
-			if (!isset($this->pagedim[$this->page]['CropBox'])) {
-				// the visible region of default user space
-				$this->setPageBoxes($this->page, 'CropBox', $this->pagedim[$this->page]['MediaBox']['llx'], $this->pagedim[$this->page]['MediaBox']['lly'], $this->pagedim[$this->page]['MediaBox']['urx'], $this->pagedim[$this->page]['MediaBox']['ury'], true);
+			case 'two':
+			case 'TwoColumnLeft': {
+				$this->LayoutMode = 'TwoColumnLeft';
+				break;
 			}
-			if (!isset($this->pagedim[$this->page]['BleedBox'])) {
-				// the region to which the contents of the page shall be clipped when output in a production environment
-				$this->setPageBoxes($this->page, 'BleedBox', $this->pagedim[$this->page]['CropBox']['llx'], $this->pagedim[$this->page]['CropBox']['lly'], $this->pagedim[$this->page]['CropBox']['urx'], $this->pagedim[$this->page]['CropBox']['ury'], true);
+			case 'TwoColumnRight': {
+				$this->LayoutMode = 'TwoColumnRight';
+				break;
 			}
-			if (!isset($this->pagedim[$this->page]['TrimBox'])) {
-				// the intended dimensions of the finished page after trimming
-				$this->setPageBoxes($this->page, 'TrimBox', $this->pagedim[$this->page]['CropBox']['llx'], $this->pagedim[$this->page]['CropBox']['lly'], $this->pagedim[$this->page]['CropBox']['urx'], $this->pagedim[$this->page]['CropBox']['ury'], true);
+			case 'TwoPageLeft': {
+				$this->LayoutMode = 'TwoPageLeft';
+				break;
 			}
-			if (!isset($this->pagedim[$this->page]['ArtBox'])) {
-				// the page's meaningful content (including potential white space)
-				$this->setPageBoxes($this->page, 'ArtBox', $this->pagedim[$this->page]['CropBox']['llx'], $this->pagedim[$this->page]['CropBox']['lly'], $this->pagedim[$this->page]['CropBox']['urx'], $this->pagedim[$this->page]['CropBox']['ury'], true);
+			case 'TwoPageRight': {
+				$this->LayoutMode = 'TwoPageRight';
+				break;
 			}
-			if (!isset($this->pagedim[$this->page]['Rotate'])) {
-				// The number of degrees by which the page shall be rotated clockwise when displayed or printed. The value shall be a multiple of 90.
-				$this->pagedim[$this->page]['Rotate'] = 0;
+			default: {
+				$this->LayoutMode = 'SinglePage';
 			}
-			if (!isset($this->pagedim[$this->page]['PZ'])) {
-				// The page's preferred zoom (magnification) factor
-				$this->pagedim[$this->page]['PZ'] = 1;
+		}
+		switch ($mode) {
+			case 'UseNone': {
+				$this->PageMode = 'UseNone';
+				break;
 			}
-			if ($this->fwPt > $this->fhPt) {
-				// landscape
-				$default_orientation = 'L';
-			} else {
-				// portrait
-				$default_orientation = 'P';
+			case 'UseOutlines': {
+				$this->PageMode = 'UseOutlines';
+				break;
 			}
-			$valid_orientations = array('P', 'L');
-			if (empty($orientation)) {
-				$orientation = $default_orientation;
-			} else {
-				$orientation = strtoupper($orientation{0});
+			case 'UseThumbs': {
+				$this->PageMode = 'UseThumbs';
+				break;
 			}
-			if (in_array($orientation, $valid_orientations) AND ($orientation != $default_orientation)) {
-				$this->CurOrientation = $orientation;
-				$this->wPt = $this->fhPt;
-				$this->hPt = $this->fwPt;
-			} else {
-				$this->CurOrientation = $default_orientation;
-				$this->wPt = $this->fwPt;
-				$this->hPt = $this->fhPt;
-			}
-			if ((abs($this->pagedim[$this->page]['MediaBox']['urx'] - $this->hPt) < $this->feps) AND (abs($this->pagedim[$this->page]['MediaBox']['ury'] - $this->wPt) < $this->feps)){
-				// swap X and Y coordinates (change page orientation)
-				$this->swapPageBoxCoordinates($this->page);
-			}
-			$this->w = $this->wPt / $this->k;
-			$this->h = $this->hPt / $this->k;
-			if ($this->empty_string($autopagebreak)) {
-				if (isset($this->AutoPageBreak)) {
-					$autopagebreak = $this->AutoPageBreak;
-				} else {
-					$autopagebreak = true;
-				}
+			case 'FullScreen': {
+				$this->PageMode = 'FullScreen';
+				break;
 			}
-			if ($this->empty_string($bottommargin)) {
-				if (isset($this->bMargin)) {
-					$bottommargin = $this->bMargin;
-				} else {
-					// default value = 2 cm
-					$bottommargin = 2 * 28.35 / $this->k;
-				}
+			case 'UseOC': {
+				$this->PageMode = 'UseOC';
+				break;
 			}
-			$this->SetAutoPageBreak($autopagebreak, $bottommargin);
-			// store page dimensions
-			$this->pagedim[$this->page]['w'] = $this->wPt;
-			$this->pagedim[$this->page]['h'] = $this->hPt;
-			$this->pagedim[$this->page]['wk'] = $this->w;
-			$this->pagedim[$this->page]['hk'] = $this->h;
-			$this->pagedim[$this->page]['tm'] = $this->tMargin;
-			$this->pagedim[$this->page]['bm'] = $bottommargin;
-			$this->pagedim[$this->page]['lm'] = $this->lMargin;
-			$this->pagedim[$this->page]['rm'] = $this->rMargin;
-			$this->pagedim[$this->page]['pb'] = $autopagebreak;
-			$this->pagedim[$this->page]['or'] = $this->CurOrientation;
-			$this->pagedim[$this->page]['olm'] = $this->original_lMargin;
-			$this->pagedim[$this->page]['orm'] = $this->original_rMargin;
-		}
-
-		/**
-		 * Set regular expression to detect withespaces or word separators.
-		 * @param string $re regular expression (leave empty for default).
-		 * @access public
-		 * @since 4.6.016 (2009-06-15)
-		 */
-		public function setSpacesRE($re='/[\s]/') {
-			// if PCRE unicode support is turned ON:
-			// 	\p{Z} or \p{Separator}: any kind of Unicode whitespace or invisible separator.
-			// 	\p{Lo} or \p{Other_Letter}: a Unicode letter or ideograph that does not have lowercase and uppercase variants.
-			// 	\p{Lo} is needed because Chinese characters are packed next to each other without spaces in between.
-			$this->re_spaces = $re;
-		}
-
-		/**
-		 * Enable or disable Right-To-Left language mode
-		 * @param Boolean $enable if true enable Right-To-Left language mode.
-		 * @param Boolean $resetx if true reset the X position on direction change.
-		 * @access public
-		 * @since 2.0.000 (2008-01-03)
-		 */
-		public function setRTL($enable, $resetx=true) {
-			$enable = $enable ? true : false;
-			$resetx = ($resetx AND ($enable != $this->rtl));
-			$this->rtl = $enable;
-			$this->tmprtl = false;
-			if ($resetx) {
-				$this->Ln(0);
+			case '': {
+				$this->PageMode = 'UseAttachments';
+				break;
+			}
+			default: {
+				$this->PageMode = 'UseNone';
 			}
 		}
+	}
 
-		/**
-		 * Return the RTL status
-		 * @return boolean
-		 * @access public
-		 * @since 4.0.012 (2008-07-24)
-		 */
-		public function getRTL() {
-			return $this->rtl;
+	/**
+	 * Activates or deactivates page compression. When activated, the internal representation of each page is compressed, which leads to a compression ratio of about 2 for the resulting document. Compression is on by default.
+	 * Note: the Zlib extension is required for this feature. If not present, compression will be turned off.
+	 * @param $compress (boolean) Boolean indicating if compression must be enabled.
+	 * @public
+	 * @since 1.4
+	 */
+	public function SetCompression($compress) {
+		if (function_exists('gzcompress')) {
+			$this->compress = $compress ? true : false;
+		} else {
+			$this->compress = false;
 		}
+	}
 
-		/**
-		 * Force temporary RTL language direction
-		 * @param mixed $mode can be false, 'L' for LTR or 'R' for RTL
-		 * @access public
-		 * @since 2.1.000 (2008-01-09)
-		 */
-		public function setTempRTL($mode) {
-			$newmode = false;
-			switch ($mode) {
-				case 'ltr':
-				case 'LTR':
-				case 'L': {
-					if ($this->rtl) {
-						$newmode = 'L';
-					}
-					break;
-				}
-				case 'rtl':
-				case 'RTL':
-				case 'R': {
-					if (!$this->rtl) {
-						$newmode = 'R';
-					}
-					break;
-				}
-				case false:
-				default: {
-					$newmode = false;
-					break;
-				}
-			}
-			$this->tmprtl = $newmode;
-		}
-
-		/**
-		 * Return the current temporary RTL status
-		 * @return boolean
-		 * @access public
-		 * @since 4.8.014 (2009-11-04)
-		 */
-		public function isRTLTextDir() {
-			return ($this->rtl OR ($this->tmprtl == 'R'));
-		}
-
-		/**
-		 * Set the last cell height.
-		 * @param float $h cell height.
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 1.53.0.TC034
-		 */
-		public function setLastH($h) {
-			$this->lasth = $h;
-		}
-
-		/**
-		 * Get the last cell height.
-		 * @return last cell height
-		 * @access public
-		 * @since 4.0.017 (2008-08-05)
-		 */
-		public function getLastH() {
-			return $this->lasth;
-		}
-
-		/**
-		 * Set the adjusting factor to convert pixels to user units.
-		 * @param float $scale adjusting factor to convert pixels to user units.
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 1.5.2
-		 */
-		public function setImageScale($scale) {
-			$this->imgscale = $scale;
-		}
-
-		/**
-		 * Returns the adjusting factor to convert pixels to user units.
-		 * @return float adjusting factor to convert pixels to user units.
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 1.5.2
-		 */
-		public function getImageScale() {
-			return $this->imgscale;
-		}
-
-		/**
-		 * Returns an array of page dimensions:
-		 * <ul><li>$this->pagedim[$this->page]['w'] = page width in points</li><li>$this->pagedim[$this->page]['h'] = height in points</li><li>$this->pagedim[$this->page]['wk'] = page width in user units</li><li>$this->pagedim[$this->page]['hk'] = page height in user units</li><li>$this->pagedim[$this->page]['tm'] = top margin</li><li>$this->pagedim[$this->page]['bm'] = bottom margin</li><li>$this->pagedim[$this->page]['lm'] = left margin</li><li>$this->pagedim[$this->page]['rm'] = right margin</li><li>$this->pagedim[$this->page]['pb'] = auto page break</li><li>$this->pagedim[$this->page]['or'] = page orientation</li><li>$this->pagedim[$this->page]['olm'] = original left margin</li><li>$this->pagedim[$this->page]['orm'] = original right margin</li><li>$this->pagedim[$this->page]['Rotate'] = The number of degrees by which the page shall be rotated clockwise when displayed or printed. The value shall be a multiple of 90.</li><li>$this->pagedim[$this->page]['PZ'] = The page's preferred zoom (magnification) factor.</li><li>$this->pagedim[$this->page]['trans'] : the style and duration of the visual transition to use when moving from another page to the given page during a presentation<ul><li>$this->pagedim[$this->page]['trans']['Dur'] = The page's display duration (also called its advance timing): the maximum length of time, in seconds, that the page shall be displayed during presentations before the viewer application shall automatically advance to the next page.</li><li>$this->pagedim[$this->page]['trans']['S'] = transition style : Split, Blinds, Box, Wipe, Dissolve, Glitter, R, Fly, Push, Cover, Uncover, Fade</li><li>$this->pagedim[$this->page]['trans']['D'] = The duration of the transition effect, in seconds.</li><li>$this->pagedim[$this->page]['trans']['Dm'] = (Split and Blinds transition styles only) The dimension in which the specified transition effect shall occur: H = Horizontal, V = Vertical. Default value: H.</li><li>$this->pagedim[$this->page]['trans']['M'] = (Split, Box and Fly transition styles only) The direction of motion for the specified transition effect: I = Inward from the edges of the page, O = Outward from the center of the pageDefault value: I.</li><li>$this->pagedim[$this->page]['trans']['Di'] = (Wipe, Glitter, Fly, Cover, Uncover and Push transition styles only) The direction in which the specified transition effect shall moves, expressed in degrees counterclockwise starting from a left-to-right direction. If the value is a number, it shall be one of: 0 = Left to right, 90 = Bottom to top (Wipe only), 180 = Right to left (Wipe only), 270 = Top to bottom, 315 = Top-left to bottom-right (Glitter only). If the value is a name, it shall be None, which is relevant only for the Fly transition when the value of SS is not 1.0. Default value: 0.</li><li>$this->pagedim[$this->page]['trans']['SS'] = (Fly transition style only) The starting or ending scale at which the changes shall be drawn. If M specifies an inward transition, the scale of the changes drawn shall progress from SS to 1.0 over the course of the transition. If M specifies an outward transition, the scale of the changes drawn shall progress from 1.0 to SS over the course of the transition. Default: 1.0. </li><li>$this->pagedim[$this->page]['trans']['B'] = (Fly transition style only) If true, the area that shall be flown in is rectangular and opaque. Default: false.</li></ul></li><li>$this->pagedim[$this->page]['MediaBox'] : the boundaries of the physical medium on which the page shall be displayed or printed<ul><li>$this->pagedim[$this->page]['MediaBox']['llx'] = lower-left x coordinate in points</li><li>$this->pagedim[$this->page]['MediaBox']['lly'] = lower-left y coordinate in points</li><li>$this->pagedim[$this->page]['MediaBox']['urx'] = upper-right x coordinate in points</li><li>$this->pagedim[$this->page]['MediaBox']['ury'] = upper-right y coordinate in points</li></ul></li><li>$this->pagedim[$this->page]['CropBox'] : the visible region of default user space<ul><li>$this->pagedim[$this->page]['CropBox']['llx'] = lower-left x coordinate in points</li><li>$this->pagedim[$this->page]['CropBox']['lly'] = lower-left y coordinate in points</li><li>$this->pagedim[$this->page]['CropBox']['urx'] = upper-right x coordinate in points</li><li>$this->pagedim[$this->page]['CropBox']['ury'] = upper-right y coordinate in points</li></ul></li><li>$this->pagedim[$this->page]['BleedBox'] : the region to which the contents of the page shall be clipped when output in a production environment<ul><li>$this->pagedim[$this->page]['BleedBox']['llx'] = lower-left x coordinate in points</li><li>$this->pagedim[$this->page]['BleedBox']['lly'] = lower-left y coordinate in points</li><li>$this->pagedim[$this->page]['BleedBox']['urx'] = upper-right x coordinate in points</li><li>$this->pagedim[$this->page]['BleedBox']['ury'] = upper-right y coordinate in points</li></ul></li><li>$this->pagedim[$this->page]['TrimBox'] : the intended dimensions of the finished page after trimming<ul><li>$this->pagedim[$this->page]['TrimBox']['llx'] = lower-left x coordinate in points</li><li>$this->pagedim[$this->page]['TrimBox']['lly'] = lower-left y coordinate in points</li><li>$this->pagedim[$this->page]['TrimBox']['urx'] = upper-right x coordinate in points</li><li>$this->pagedim[$this->page]['TrimBox']['ury'] = upper-right y coordinate in points</li></ul></li><li>$this->pagedim[$this->page]['ArtBox'] : the extent of the page's meaningful content<ul><li>$this->pagedim[$this->page]['ArtBox']['llx'] = lower-left x coordinate in points</li><li>$this->pagedim[$this->page]['ArtBox']['lly'] = lower-left y coordinate in points</li><li>$this->pagedim[$this->page]['ArtBox']['urx'] = upper-right x coordinate in points</li><li>$this->pagedim[$this->page]['ArtBox']['ury'] = upper-right y coordinate in points</li></ul></li></ul>
-		 * @param int $pagenum page number (empty = current page)
-		 * @return array of page dimensions.
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 4.5.027 (2009-03-16)
-		 */
-		public function getPageDimensions($pagenum='') {
-			if (empty($pagenum)) {
-				$pagenum = $this->page;
-			}
-			return $this->pagedim[$pagenum];
-		}
-
-		/**
-		 * Returns the page width in units.
-		 * @param int $pagenum page number (empty = current page)
-		 * @return int page width.
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 1.5.2
-		 * @see getPageDimensions()
-		 */
-		public function getPageWidth($pagenum='') {
-			if (empty($pagenum)) {
-				return $this->w;
-			}
-			return $this->pagedim[$pagenum]['w'];
-		}
-
-		/**
-		 * Returns the page height in units.
-		 * @param int $pagenum page number (empty = current page)
-		 * @return int page height.
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 1.5.2
-		 * @see getPageDimensions()
-		 */
-		public function getPageHeight($pagenum='') {
-			if (empty($pagenum)) {
-				return $this->h;
-			}
-			return $this->pagedim[$pagenum]['h'];
-		}
-
-		/**
-		 * Returns the page break margin.
-		 * @param int $pagenum page number (empty = current page)
-		 * @return int page break margin.
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 1.5.2
-		 * @see getPageDimensions()
-		 */
-		public function getBreakMargin($pagenum='') {
-			if (empty($pagenum)) {
-				return $this->bMargin;
-			}
-			return $this->pagedim[$pagenum]['bm'];
-		}
-
-		/**
-		 * Returns the scale factor (number of points in user unit).
-		 * @return int scale factor.
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 1.5.2
-		 */
-		public function getScaleFactor() {
-			return $this->k;
-		}
-
-		/**
-		 * Defines the left, top and right margins.
-		 * @param float $left Left margin.
-		 * @param float $top Top margin.
-		 * @param float $right Right margin. Default value is the left one.
-		 * @param boolean $keepmargins if true overwrites the default page margins
-		 * @access public
-		 * @since 1.0
-		 * @see SetLeftMargin(), SetTopMargin(), SetRightMargin(), SetAutoPageBreak()
-		 */
-		public function SetMargins($left, $top, $right=-1, $keepmargins=false) {
-			//Set left, top and right margins
-			$this->lMargin = $left;
-			$this->tMargin = $top;
-			if ($right == -1) {
-				$right = $left;
-			}
-			$this->rMargin = $right;
-			if ($keepmargins) {
-				// overwrite original values
-				$this->original_lMargin = $this->lMargin;
-				$this->original_rMargin = $this->rMargin;
-			}
-		}
-
-		/**
-		 * Defines the left margin. The method can be called before creating the first page. If the current abscissa gets out of page, it is brought back to the margin.
-		 * @param float $margin The margin.
-		 * @access public
-		 * @since 1.4
-		 * @see SetTopMargin(), SetRightMargin(), SetAutoPageBreak(), SetMargins()
-		 */
-		public function SetLeftMargin($margin) {
-			//Set left margin
-			$this->lMargin = $margin;
-			if (($this->page > 0) AND ($this->x < $margin)) {
-				$this->x = $margin;
-			}
-		}
-
-		/**
-		 * Defines the top margin. The method can be called before creating the first page.
-		 * @param float $margin The margin.
-		 * @access public
-		 * @since 1.5
-		 * @see SetLeftMargin(), SetRightMargin(), SetAutoPageBreak(), SetMargins()
-		 */
-		public function SetTopMargin($margin) {
-			//Set top margin
-			$this->tMargin = $margin;
-			if (($this->page > 0) AND ($this->y < $margin)) {
-				$this->y = $margin;
-			}
-		}
-
-		/**
-		 * Defines the right margin. The method can be called before creating the first page.
-		 * @param float $margin The margin.
-		 * @access public
-		 * @since 1.5
-		 * @see SetLeftMargin(), SetTopMargin(), SetAutoPageBreak(), SetMargins()
-		 */
-		public function SetRightMargin($margin) {
-			$this->rMargin = $margin;
-			if (($this->page > 0) AND ($this->x > ($this->w - $margin))) {
-				$this->x = $this->w - $margin;
-			}
-		}
-
-		/**
-		 * Set the internal Cell padding.
-		 * @param float $pad internal padding.
-		 * @access public
-		 * @since 2.1.000 (2008-01-09)
-		 * @see Cell(), SetLeftMargin(), SetTopMargin(), SetAutoPageBreak(), SetMargins()
-		 */
-		public function SetCellPadding($pad) {
-			$this->cMargin = $pad;
-		}
-
-		/**
-		 * Enables or disables the automatic page breaking mode. When enabling, the second parameter is the distance from the bottom of the page that defines the triggering limit. By default, the mode is on and the margin is 2 cm.
-		 * @param boolean $auto Boolean indicating if mode should be on or off.
-		 * @param float $margin Distance from the bottom of the page.
-		 * @access public
-		 * @since 1.0
-		 * @see Cell(), MultiCell(), AcceptPageBreak()
-		 */
-		public function SetAutoPageBreak($auto, $margin=0) {
-			//Set auto page break mode and triggering margin
-			$this->AutoPageBreak = $auto;
-			$this->bMargin = $margin;
-			$this->PageBreakTrigger = $this->h - $margin;
-		}
-
-		/**
-		 * Defines the way the document is to be displayed by the viewer.
-		 * @param mixed $zoom The zoom to use. It can be one of the following string values or a number indicating the zooming factor to use. <ul><li>fullpage: displays the entire page on screen </li><li>fullwidth: uses maximum width of window</li><li>real: uses real size (equivalent to 100% zoom)</li><li>default: uses viewer default mode</li></ul>
-		 * @param string $layout The page layout. Possible values are:<ul><li>SinglePage Display one page at a time</li><li>OneColumn Display the pages in one column</li><li>TwoColumnLeft Display the pages in two columns, with odd-numbered pages on the left</li><li>TwoColumnRight Display the pages in two columns, with odd-numbered pages on the right</li><li>TwoPageLeft (PDF 1.5) Display the pages two at a time, with odd-numbered pages on the left</li><li>TwoPageRight (PDF 1.5) Display the pages two at a time, with odd-numbered pages on the right</li></ul>
-		 * @param string $mode A name object specifying how the document should be displayed when opened:<ul><li>UseNone Neither document outline nor thumbnail images visible</li><li>UseOutlines Document outline visible</li><li>UseThumbs Thumbnail images visible</li><li>FullScreen Full-screen mode, with no menu bar, window controls, or any other window visible</li><li>UseOC (PDF 1.5) Optional content group panel visible</li><li>UseAttachments (PDF 1.6) Attachments panel visible</li></ul>
-		 * @access public
-		 * @since 1.2
-		 */
-		public function SetDisplayMode($zoom, $layout='SinglePage', $mode='UseNone') {
-			//Set display mode in viewer
-			if (($zoom == 'fullpage') OR ($zoom == 'fullwidth') OR ($zoom == 'real') OR ($zoom == 'default') OR (!is_string($zoom))) {
-				$this->ZoomMode = $zoom;
+	/**
+	 * Turn on/off Unicode mode for document information dictionary (meta tags).
+	 * This has effect only when unicode mode is set to false.
+	 * @param $unicode (boolean) if true set the meta information in Unicode
+	 * @since 5.9.027 (2010-12-01)
+	 * @public
+	 */
+	public function SetDocInfoUnicode($unicode=true) {
+		$this->docinfounicode = $unicode ? true : false;
+	}
+
+	/**
+	 * Defines the title of the document.
+	 * @param $title (string) The title.
+	 * @public
+	 * @since 1.2
+	 * @see SetAuthor(), SetCreator(), SetKeywords(), SetSubject()
+	 */
+	public function SetTitle($title) {
+		$this->title = $title;
+	}
+
+	/**
+	 * Defines the subject of the document.
+	 * @param $subject (string) The subject.
+	 * @public
+	 * @since 1.2
+	 * @see SetAuthor(), SetCreator(), SetKeywords(), SetTitle()
+	 */
+	public function SetSubject($subject) {
+		$this->subject = $subject;
+	}
+
+	/**
+	 * Defines the author of the document.
+	 * @param $author (string) The name of the author.
+	 * @public
+	 * @since 1.2
+	 * @see SetCreator(), SetKeywords(), SetSubject(), SetTitle()
+	 */
+	public function SetAuthor($author) {
+		$this->author = $author;
+	}
+
+	/**
+	 * Associates keywords with the document, generally in the form 'keyword1 keyword2 ...'.
+	 * @param $keywords (string) The list of keywords.
+	 * @public
+	 * @since 1.2
+	 * @see SetAuthor(), SetCreator(), SetSubject(), SetTitle()
+	 */
+	public function SetKeywords($keywords) {
+		$this->keywords = $keywords;
+	}
+
+	/**
+	 * Defines the creator of the document. This is typically the name of the application that generates the PDF.
+	 * @param $creator (string) The name of the creator.
+	 * @public
+	 * @since 1.2
+	 * @see SetAuthor(), SetKeywords(), SetSubject(), SetTitle()
+	 */
+	public function SetCreator($creator) {
+		$this->creator = $creator;
+	}
+
+	/**
+	 * This method is automatically called in case of fatal error; it simply outputs the message and halts the execution. An inherited class may override it to customize the error handling but should always halt the script, or the resulting document would probably be invalid.
+	 * 2004-06-11 :: Nicola Asuni : changed bold tag with strong
+	 * @param $msg (string) The error message
+	 * @public
+	 * @since 1.0
+	 */
+	public function Error($msg) {
+		// unset all class variables
+		$this->_destroy(true);
+		// exit program and print error
+		die('<strong>TCPDF ERROR: </strong>'.$msg);
+	}
+
+	/**
+	 * This method begins the generation of the PDF document.
+	 * It is not necessary to call it explicitly because AddPage() does it automatically.
+	 * Note: no page is created by this method
+	 * @public
+	 * @since 1.0
+	 * @see AddPage(), Close()
+	 */
+	public function Open() {
+		$this->state = 1;
+	}
+
+	/**
+	 * Terminates the PDF document.
+	 * It is not necessary to call this method explicitly because Output() does it automatically.
+	 * If the document contains no page, AddPage() is called to prevent from getting an invalid document.
+	 * @public
+	 * @since 1.0
+	 * @see Open(), Output()
+	 */
+	public function Close() {
+		if ($this->state == 3) {
+			return;
+		}
+		if ($this->page == 0) {
+			$this->AddPage();
+		}
+		// save current graphic settings
+		$gvars = $this->getGraphicVars();
+		$this->setEqualColumns();
+		$this->lastpage(true);
+		$this->SetAutoPageBreak(false);
+		$this->x = 0;
+		$this->y = $this->h - (1 / $this->k);
+		$this->lMargin = 0;
+		$this->_out('q');
+		$this->SetFont('helvetica', '', 1);
+		$this->setTextRenderingMode(0, false, false);
+		$msg = "\x50\x6f\x77\x65\x72\x65\x64\x20\x62\x79\x20\x54\x43\x50\x44\x46\x20\x28\x77\x77\x77\x2e\x74\x63\x70\x64\x66\x2e\x6f\x72\x67\x29";
+		$lnk = "\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x74\x63\x70\x64\x66\x2e\x6f\x72\x67";
+		$this->Cell(0, 0, $msg, 0, 0, 'L', 0, $lnk, 0, false, 'D', 'B');
+		$this->_out('Q');
+		// restore graphic settings
+		$this->setGraphicVars($gvars);
+		// close page
+		$this->endPage();
+		// close document
+		$this->_enddoc();
+		// unset all class variables (except critical ones)
+		$this->_destroy(false);
+	}
+
+	/**
+	 * Move pointer at the specified document page and update page dimensions.
+	 * @param $pnum (int) page number (1 ... numpages)
+	 * @param $resetmargins (boolean) if true reset left, right, top margins and Y position.
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see getPage(), lastpage(), getNumPages()
+	 */
+	public function setPage($pnum, $resetmargins=false) {
+		if (($pnum == $this->page) AND ($this->state == 2)) {
+			return;
+		}
+		if (($pnum > 0) AND ($pnum <= $this->numpages)) {
+			$this->state = 2;
+			// save current graphic settings
+			//$gvars = $this->getGraphicVars();
+			$oldpage = $this->page;
+			$this->page = $pnum;
+			$this->wPt = $this->pagedim[$this->page]['w'];
+			$this->hPt = $this->pagedim[$this->page]['h'];
+			$this->w = $this->pagedim[$this->page]['wk'];
+			$this->h = $this->pagedim[$this->page]['hk'];
+			$this->tMargin = $this->pagedim[$this->page]['tm'];
+			$this->bMargin = $this->pagedim[$this->page]['bm'];
+			$this->original_lMargin = $this->pagedim[$this->page]['olm'];
+			$this->original_rMargin = $this->pagedim[$this->page]['orm'];
+			$this->AutoPageBreak = $this->pagedim[$this->page]['pb'];
+			$this->CurOrientation = $this->pagedim[$this->page]['or'];
+			$this->SetAutoPageBreak($this->AutoPageBreak, $this->bMargin);
+			// restore graphic settings
+			//$this->setGraphicVars($gvars);
+			if ($resetmargins) {
+				$this->lMargin = $this->pagedim[$this->page]['olm'];
+				$this->rMargin = $this->pagedim[$this->page]['orm'];
+				$this->SetY($this->tMargin);
 			} else {
-				$this->Error('Incorrect zoom display mode: '.$zoom);
-			}
-			switch ($layout) {
-				case 'default':
-				case 'single':
-				case 'SinglePage': {
-					$this->LayoutMode = 'SinglePage';
-					break;
-				}
-				case 'continuous':
-				case 'OneColumn': {
-					$this->LayoutMode = 'OneColumn';
-					break;
-				}
-				case 'two':
-				case 'TwoColumnLeft': {
-					$this->LayoutMode = 'TwoColumnLeft';
-					break;
-				}
-				case 'TwoColumnRight': {
-					$this->LayoutMode = 'TwoColumnRight';
-					break;
-				}
-				case 'TwoPageLeft': {
-					$this->LayoutMode = 'TwoPageLeft';
-					break;
-				}
-				case 'TwoPageRight': {
-					$this->LayoutMode = 'TwoPageRight';
-					break;
-				}
-				default: {
-					$this->LayoutMode = 'SinglePage';
+				// account for booklet mode
+				if ($this->pagedim[$this->page]['olm'] != $this->pagedim[$oldpage]['olm']) {
+					$deltam = $this->pagedim[$this->page]['olm'] - $this->pagedim[$this->page]['orm'];
+					$this->lMargin += $deltam;
+					$this->rMargin -= $deltam;
 				}
 			}
-			switch ($mode) {
-				case 'UseNone': {
-					$this->PageMode = 'UseNone';
-					break;
-				}
-				case 'UseOutlines': {
-					$this->PageMode = 'UseOutlines';
-					break;
-				}
-				case 'UseThumbs': {
-					$this->PageMode = 'UseThumbs';
-					break;
-				}
-				case 'FullScreen': {
-					$this->PageMode = 'FullScreen';
-					break;
-				}
-				case 'UseOC': {
-					$this->PageMode = 'UseOC';
-					break;
-				}
-				case '': {
-					$this->PageMode = 'UseAttachments';
-					break;
-				}
-				default: {
-					$this->PageMode = 'UseNone';
-				}
+		} else {
+			$this->Error('Wrong page number on setPage() function: '.$pnum);
+		}
+	}
+
+	/**
+	 * Reset pointer to the last document page.
+	 * @param $resetmargins (boolean) if true reset left, right, top margins and Y position.
+	 * @public
+	 * @since 2.0.000 (2008-01-04)
+	 * @see setPage(), getPage(), getNumPages()
+	 */
+	public function lastPage($resetmargins=false) {
+		$this->setPage($this->getNumPages(), $resetmargins);
+	}
+
+	/**
+	 * Get current document page number.
+	 * @return int page number
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see setPage(), lastpage(), getNumPages()
+	 */
+	public function getPage() {
+		return $this->page;
+	}
+
+	/**
+	 * Get the total number of insered pages.
+	 * @return int number of pages
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see setPage(), getPage(), lastpage()
+	 */
+	public function getNumPages() {
+		return $this->numpages;
+	}
+
+	/**
+	 * Adds a new TOC (Table Of Content) page to the document.
+	 * @param $orientation (string) page orientation.
+	 * @param $format (mixed) The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() or an array of parameters specified at setPageFormat().
+	 * @param $keepmargins (boolean) if true overwrites the default page margins with the current margins
+	 * @public
+	 * @since 5.0.001 (2010-05-06)
+	 * @see AddPage(), startPage(), endPage(), endTOCPage()
+	 */
+	public function addTOCPage($orientation='', $format='', $keepmargins=false) {
+		$this->AddPage($orientation, $format, $keepmargins, true);
+	}
+
+	/**
+	 * Terminate the current TOC (Table Of Content) page
+	 * @public
+	 * @since 5.0.001 (2010-05-06)
+	 * @see AddPage(), startPage(), endPage(), addTOCPage()
+	 */
+	public function endTOCPage() {
+		$this->endPage(true);
+	}
+
+	/**
+	 * Adds a new page to the document. If a page is already present, the Footer() method is called first to output the footer (if enabled). Then the page is added, the current position set to the top-left corner according to the left and top margins (or top-right if in RTL mode), and Header() is called to display the header (if enabled).
+	 * The origin of the coordinate system is at the top-left corner (or top-right for RTL) and increasing ordinates go downwards.
+	 * @param $orientation (string) page orientation. Possible values are (case insensitive):<ul><li>P or PORTRAIT (default)</li><li>L or LANDSCAPE</li></ul>
+	 * @param $format (mixed) The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() or an array of parameters specified at setPageFormat().
+	 * @param $keepmargins (boolean) if true overwrites the default page margins with the current margins
+	 * @param $tocpage (boolean) if true set the tocpage state to true (the added page will be used to display Table Of Content).
+	 * @public
+	 * @since 1.0
+	 * @see startPage(), endPage(), addTOCPage(), endTOCPage(), getPageSizeFromFormat(), setPageFormat()
+	 */
+	public function AddPage($orientation='', $format='', $keepmargins=false, $tocpage=false) {
+		if ($this->inxobj) {
+			// we are inside an XObject template
+			return;
+		}
+		if (!isset($this->original_lMargin) OR $keepmargins) {
+			$this->original_lMargin = $this->lMargin;
+		}
+		if (!isset($this->original_rMargin) OR $keepmargins) {
+			$this->original_rMargin = $this->rMargin;
+		}
+		// terminate previous page
+		$this->endPage();
+		// start new page
+		$this->startPage($orientation, $format, $tocpage);
+	}
+
+	/**
+	 * Terminate the current page
+	 * @param $tocpage (boolean) if true set the tocpage state to false (end the page used to display Table Of Content).
+	 * @public
+	 * @since 4.2.010 (2008-11-14)
+	 * @see AddPage(), startPage(), addTOCPage(), endTOCPage()
+	 */
+	public function endPage($tocpage=false) {
+		// check if page is already closed
+		if (($this->page == 0) OR ($this->numpages > $this->page) OR (!$this->pageopen[$this->page])) {
+			return;
+		}
+		$this->InFooter = true;
+		// print page footer
+		$this->setFooter();
+		// close page
+		$this->_endpage();
+		// mark page as closed
+		$this->pageopen[$this->page] = false;
+		$this->InFooter = false;
+		if ($tocpage) {
+			$this->tocpage = false;
+		}
+	}
+
+	/**
+	 * Starts a new page to the document. The page must be closed using the endPage() function.
+	 * The origin of the coordinate system is at the top-left corner and increasing ordinates go downwards.
+	 * @param $orientation (string) page orientation. Possible values are (case insensitive):<ul><li>P or PORTRAIT (default)</li><li>L or LANDSCAPE</li></ul>
+	 * @param $format (mixed) The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() or an array of parameters specified at setPageFormat().
+	 * @param $tocpage (boolean) if true the page is designated to contain the Table-Of-Content.
+	 * @since 4.2.010 (2008-11-14)
+	 * @see AddPage(), endPage(), addTOCPage(), endTOCPage(), getPageSizeFromFormat(), setPageFormat()
+	 * @public
+	 */
+	public function startPage($orientation='', $format='', $tocpage=false) {
+		if ($tocpage) {
+			$this->tocpage = true;
+		}
+		if ($this->numpages > $this->page) {
+			// this page has been already added
+			$this->setPage($this->page + 1);
+			$this->SetY($this->tMargin);
+			return;
+		}
+		// start a new page
+		if ($this->state == 0) {
+			$this->Open();
+		}
+		++$this->numpages;
+		$this->swapMargins($this->booklet);
+		// save current graphic settings
+		$gvars = $this->getGraphicVars();
+		// start new page
+		$this->_beginpage($orientation, $format);
+		// mark page as open
+		$this->pageopen[$this->page] = true;
+		// restore graphic settings
+		$this->setGraphicVars($gvars);
+		// mark this point
+		$this->setPageMark();
+		// print page header
+		$this->setHeader();
+		// restore graphic settings
+		$this->setGraphicVars($gvars);
+		// mark this point
+		$this->setPageMark();
+		// print table header (if any)
+		$this->setTableHeader();
+		// set mark for empty page check
+		$this->emptypagemrk[$this->page]= $this->pagelen[$this->page];
+	}
+
+	/**
+	 * Set start-writing mark on current page stream used to put borders and fills.
+	 * Borders and fills are always created after content and inserted on the position marked by this method.
+	 * This function must be called after calling Image() function for a background image.
+	 * Background images must be always inserted before calling Multicell() or WriteHTMLCell() or WriteHTML() functions.
+	 * @public
+	 * @since 4.0.016 (2008-07-30)
+	 */
+	public function setPageMark() {
+		$this->intmrk[$this->page] = $this->pagelen[$this->page];
+		$this->bordermrk[$this->page] = $this->intmrk[$this->page];
+		$this->setContentMark();
+	}
+
+	/**
+	 * Set start-writing mark on selected page.
+	 * Borders and fills are always created after content and inserted on the position marked by this method.
+	 * @param $page (int) page number (default is the current page)
+	 * @protected
+	 * @since 4.6.021 (2009-07-20)
+	 */
+	protected function setContentMark($page=0) {
+		if ($page <= 0) {
+			$page = $this->page;
+		}
+		if (isset($this->footerlen[$page])) {
+			$this->cntmrk[$page] = $this->pagelen[$page] - $this->footerlen[$page];
+		} else {
+			$this->cntmrk[$page] = $this->pagelen[$page];
+		}
+	}
+
+	/**
+	 * Set header data.
+	 * @param $ln (string) header image logo
+	 * @param $lw (string) header image logo width in mm
+	 * @param $ht (string) string to print as title on document header
+	 * @param $hs (string) string to print on document header
+	 * @public
+	 */
+	public function setHeaderData($ln='', $lw=0, $ht='', $hs='') {
+		$this->header_logo = $ln;
+		$this->header_logo_width = $lw;
+		$this->header_title = $ht;
+		$this->header_string = $hs;
+	}
+
+	/**
+	 * Returns header data:
+	 * <ul><li>$ret['logo'] = logo image</li><li>$ret['logo_width'] = width of the image logo in user units</li><li>$ret['title'] = header title</li><li>$ret['string'] = header description string</li></ul>
+	 * @return array()
+	 * @public
+	 * @since 4.0.012 (2008-07-24)
+	 */
+	public function getHeaderData() {
+		$ret = array();
+		$ret['logo'] = $this->header_logo;
+		$ret['logo_width'] = $this->header_logo_width;
+		$ret['title'] = $this->header_title;
+		$ret['string'] = $this->header_string;
+		return $ret;
+	}
+
+	/**
+	 * Set header margin.
+	 * (minimum distance between header and top page margin)
+	 * @param $hm (int) distance in user units
+	 * @public
+	 */
+	public function setHeaderMargin($hm=10) {
+		$this->header_margin = $hm;
+	}
+
+	/**
+	 * Returns header margin in user units.
+	 * @return float
+	 * @since 4.0.012 (2008-07-24)
+	 * @public
+	 */
+	public function getHeaderMargin() {
+		return $this->header_margin;
+	}
+
+	/**
+	 * Set footer margin.
+	 * (minimum distance between footer and bottom page margin)
+	 * @param $fm (int) distance in user units
+	 * @public
+	 */
+	public function setFooterMargin($fm=10) {
+		$this->footer_margin = $fm;
+	}
+
+	/**
+	 * Returns footer margin in user units.
+	 * @return float
+	 * @since 4.0.012 (2008-07-24)
+	 * @public
+	 */
+	public function getFooterMargin() {
+		return $this->footer_margin;
+	}
+	/**
+	 * Set a flag to print page header.
+	 * @param $val (boolean) set to true to print the page header (default), false otherwise.
+	 * @public
+	 */
+	public function setPrintHeader($val=true) {
+		$this->print_header = $val;
+	}
+
+	/**
+	 * Set a flag to print page footer.
+	 * @param $val (boolean) set to true to print the page footer (default), false otherwise.
+	 * @public
+	 */
+	public function setPrintFooter($val=true) {
+		$this->print_footer = $val;
+	}
+
+	/**
+	 * Return the right-bottom (or left-bottom for RTL) corner X coordinate of last inserted image
+	 * @return float
+	 * @public
+	 */
+	public function getImageRBX() {
+		return $this->img_rb_x;
+	}
+
+	/**
+	 * Return the right-bottom (or left-bottom for RTL) corner Y coordinate of last inserted image
+	 * @return float
+	 * @public
+	 */
+	public function getImageRBY() {
+		return $this->img_rb_y;
+	}
+
+	/**
+	 * This method is used to render the page header.
+	 * It is automatically called by AddPage() and could be overwritten in your own inherited class.
+	 * @public
+	 */
+	public function Header() {
+		$ormargins = $this->getOriginalMargins();
+		$headerfont = $this->getHeaderFont();
+		$headerdata = $this->getHeaderData();
+		if (($headerdata['logo']) AND ($headerdata['logo'] != K_BLANK_IMAGE)) {
+			$imgtype = $this->getImageFileType(K_PATH_IMAGES.$headerdata['logo']);
+			if (($imgtype == 'eps') OR ($imgtype == 'ai')) {
+				$this->ImageEps(K_PATH_IMAGES.$headerdata['logo'], '', '', $headerdata['logo_width']);
+			} elseif ($imgtype == 'svg') {
+				$this->ImageSVG(K_PATH_IMAGES.$headerdata['logo'], '', '', $headerdata['logo_width']);
+			} else {
+				$this->Image(K_PATH_IMAGES.$headerdata['logo'], '', '', $headerdata['logo_width']);
 			}
+			$imgy = $this->getImageRBY();
+		} else {
+			$imgy = $this->GetY();
+		}
+		$cell_height = round(($this->getCellHeightRatio() * $headerfont[2]) / $this->getScaleFactor(), 2);
+		// set starting margin for text data cell
+		if ($this->getRTL()) {
+			$header_x = $ormargins['right'] + ($headerdata['logo_width'] * 1.1);
+		} else {
+			$header_x = $ormargins['left'] + ($headerdata['logo_width'] * 1.1);
+		}
+		$this->SetTextColor(0, 0, 0);
+		// header title
+		$this->SetFont($headerfont[0], 'B', $headerfont[2] + 1);
+		$this->SetX($header_x);
+		$this->Cell(0, $cell_height, $headerdata['title'], 0, 1, '', 0, '', 0);
+		// header string
+		$this->SetFont($headerfont[0], $headerfont[1], $headerfont[2]);
+		$this->SetX($header_x);
+		$this->MultiCell(0, $cell_height, $headerdata['string'], 0, '', 0, 1, '', '', true, 0, false);
+		// print an ending header line
+		$this->SetLineStyle(array('width' => 0.85 / $this->getScaleFactor(), 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)));
+		$this->SetY((2.835 / $this->getScaleFactor()) + max($imgy, $this->GetY()));
+		if ($this->getRTL()) {
+			$this->SetX($ormargins['right']);
+		} else {
+			$this->SetX($ormargins['left']);
+		}
+		$this->Cell(0, 0, '', 'T', 0, 'C');
+	}
+
+	/**
+	 * This method is used to render the page footer.
+	 * It is automatically called by AddPage() and could be overwritten in your own inherited class.
+	 * @public
+	 */
+	public function Footer() {
+		$cur_y = $this->GetY();
+		$ormargins = $this->getOriginalMargins();
+		$this->SetTextColor(0, 0, 0);
+		//set style for cell border
+		$line_width = 0.85 / $this->getScaleFactor();
+		$this->SetLineStyle(array('width' => $line_width, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)));
+		//print document barcode
+		$barcode = $this->getBarcode();
+		if (!empty($barcode)) {
+			$this->Ln($line_width);
+			$barcode_width = round(($this->getPageWidth() - $ormargins['left'] - $ormargins['right']) / 3);
+			$style = array(
+				'position' => $this->rtl?'R':'L',
+				'align' => $this->rtl?'R':'L',
+				'stretch' => false,
+				'fitwidth' => true,
+				'cellfitalign' => '',
+				'border' => false,
+				'padding' => 0,
+				'fgcolor' => array(0,0,0),
+				'bgcolor' => false,
+				'text' => false
+			);
+			$this->write1DBarcode($barcode, 'C128B', '', $cur_y + $line_width, '', (($this->getFooterMargin() / 3) - $line_width), 0.3, $style, '');
+		}
+		if (empty($this->pagegroups)) {
+			$pagenumtxt = $this->l['w_page'].' '.$this->getAliasNumPage().' / '.$this->getAliasNbPages();
+		} else {
+			$pagenumtxt = $this->l['w_page'].' '.$this->getPageNumGroupAlias().' / '.$this->getPageGroupAlias();
+		}
+		$this->SetY($cur_y);
+		//Print page number
+		if ($this->getRTL()) {
+			$this->SetX($ormargins['right']);
+			$this->Cell(0, 0, $pagenumtxt, 'T', 0, 'L');
+		} else {
+			$this->SetX($ormargins['left']);
+			$this->Cell(0, 0, $pagenumtxt, 'T', 0, 'R');
 		}
+	}
 
-		/**
-		 * Activates or deactivates page compression. When activated, the internal representation of each page is compressed, which leads to a compression ratio of about 2 for the resulting document. Compression is on by default.
-		 * Note: the Zlib extension is required for this feature. If not present, compression will be turned off.
-		 * @param boolean $compress Boolean indicating if compression must be enabled.
-		 * @access public
-		 * @since 1.4
-		 */
-		public function SetCompression($compress) {
-			//Set page compression
-			if (function_exists('gzcompress')) {
-				$this->compress = $compress;
+	/**
+	 * This method is used to render the page header.
+	 * @protected
+	 * @since 4.0.012 (2008-07-24)
+	 */
+	protected function setHeader() {
+		if ($this->print_header) {
+			$this->setGraphicVars($this->default_graphic_vars);
+			$temp_thead = $this->thead;
+			$temp_theadMargins = $this->theadMargins;
+			$lasth = $this->lasth;
+			$this->_out('q');
+			$this->rMargin = $this->original_rMargin;
+			$this->lMargin = $this->original_lMargin;
+			$this->SetCellPadding(0);
+			//set current position
+			if ($this->rtl) {
+				$this->SetXY($this->original_rMargin, $this->header_margin);
 			} else {
-				$this->compress = false;
-			}
-		}
-
-		/**
-		 * Defines the title of the document.
-		 * @param string $title The title.
-		 * @access public
-		 * @since 1.2
-		 * @see SetAuthor(), SetCreator(), SetKeywords(), SetSubject()
-		 */
-		public function SetTitle($title) {
-			//Title of document
-			$this->title = $title;
-		}
-
-		/**
-		 * Defines the subject of the document.
-		 * @param string $subject The subject.
-		 * @access public
-		 * @since 1.2
-		 * @see SetAuthor(), SetCreator(), SetKeywords(), SetTitle()
-		 */
-		public function SetSubject($subject) {
-			//Subject of document
-			$this->subject = $subject;
-		}
-
-		/**
-		 * Defines the author of the document.
-		 * @param string $author The name of the author.
-		 * @access public
-		 * @since 1.2
-		 * @see SetCreator(), SetKeywords(), SetSubject(), SetTitle()
-		 */
-		public function SetAuthor($author) {
-			//Author of document
-			$this->author = $author;
-		}
-
-		/**
-		 * Associates keywords with the document, generally in the form 'keyword1 keyword2 ...'.
-		 * @param string $keywords The list of keywords.
-		 * @access public
-		 * @since 1.2
-		 * @see SetAuthor(), SetCreator(), SetSubject(), SetTitle()
-		 */
-		public function SetKeywords($keywords) {
-			//Keywords of document
-			$this->keywords = $keywords;
-		}
-
-		/**
-		 * Defines the creator of the document. This is typically the name of the application that generates the PDF.
-		 * @param string $creator The name of the creator.
-		 * @access public
-		 * @since 1.2
-		 * @see SetAuthor(), SetKeywords(), SetSubject(), SetTitle()
-		 */
-		public function SetCreator($creator) {
-			//Creator of document
-			$this->creator = $creator;
-		}
-
-		/**
-		 * This method is automatically called in case of fatal error; it simply outputs the message and halts the execution. An inherited class may override it to customize the error handling but should always halt the script, or the resulting document would probably be invalid.
-		 * 2004-06-11 :: Nicola Asuni : changed bold tag with strong
-		 * @param string $msg The error message
-		 * @access public
-		 * @since 1.0
-		 */
-		public function Error($msg) {
-			// unset all class variables
-			$this->_destroy(true);
-			// exit program and print error
-			die('<strong>TCPDF ERROR: </strong>'.$msg);
-		}
-
-		/**
-		 * This method begins the generation of the PDF document.
-		 * It is not necessary to call it explicitly because AddPage() does it automatically.
-		 * Note: no page is created by this method
-		 * @access public
-		 * @since 1.0
-		 * @see AddPage(), Close()
-		 */
-		public function Open() {
-			//Begin document
-			$this->state = 1;
-		}
-
-		/**
-		 * Terminates the PDF document.
-		 * It is not necessary to call this method explicitly because Output() does it automatically.
-		 * If the document contains no page, AddPage() is called to prevent from getting an invalid document.
-		 * @access public
-		 * @since 1.0
-		 * @see Open(), Output()
-		 */
-		public function Close() {
-			if ($this->state == 3) {
-				return;
+				$this->SetXY($this->original_lMargin, $this->header_margin);
 			}
-			if ($this->page == 0) {
-				$this->AddPage();
+			$this->SetFont($this->header_font[0], $this->header_font[1], $this->header_font[2]);
+			$this->Header();
+			//restore position
+			if ($this->rtl) {
+				$this->SetXY($this->original_rMargin, $this->tMargin);
+			} else {
+				$this->SetXY($this->original_lMargin, $this->tMargin);
 			}
+			$this->_out('Q');
+			$this->lasth = $lasth;
+			$this->thead = $temp_thead;
+			$this->theadMargins = $temp_theadMargins;
+			$this->newline = false;
+		}
+	}
 
-			// save current graphic settings
-			$gvars = $this->getGraphicVars();
-			$this->lastpage();
-			$this->SetAutoPageBreak(false);
-			$this->x = 0;
-			$this->y = $this->h - (1 / $this->k);
-			$this->lMargin = 0;
+	/**
+	 * This method is used to render the page footer.
+	 * @protected
+	 * @since 4.0.012 (2008-07-24)
+	 */
+	protected function setFooter() {
+		//Page footer
+		// save current graphic settings
+		$gvars = $this->getGraphicVars();
+		// mark this point
+		$this->footerpos[$this->page] = $this->pagelen[$this->page];
+		$this->_out("\n");
+		if ($this->print_footer) {
+			$this->setGraphicVars($this->default_graphic_vars);
+			$this->current_column = 0;
+			$this->num_columns = 1;
+			$temp_thead = $this->thead;
+			$temp_theadMargins = $this->theadMargins;
+			$lasth = $this->lasth;
 			$this->_out('q');
-			$this->setVisibility('screen');
-			$this->SetFont('helvetica', '', 1);
-			$this->SetTextColor(255, 255, 255);
-			$msg = "\x50\x6f\x77\x65\x72\x65\x64\x20\x62\x79\x20\x54\x43\x50\x44\x46\x20\x28\x77\x77\x77\x2e\x74\x63\x70\x64\x66\x2e\x6f\x72\x67\x29";
-			$lnk = "\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x74\x63\x70\x64\x66\x2e\x6f\x72\x67";
-			$this->Cell(0, 0, $msg, 0, 0, 'L', 0, $lnk, 0, false, 'D', 'B');
-			$this->setVisibility('all');
-			$this->_out('Q');
-			// restore graphic settings
-			$this->setGraphicVars($gvars);
-			// close page
-			$this->endPage();
-			// close document
-			$this->_enddoc();
-			// unset all class variables (except critical ones)
-			$this->_destroy(false);
-		}
-
-		/**
-		 * Move pointer at the specified document page and update page dimensions.
-		 * @param int $pnum page number (1 ... numpages)
-		 * @param boolean $resetmargins if true reset left, right, top margins and Y position.
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see getPage(), lastpage(), getNumPages()
-		 */
-		public function setPage($pnum, $resetmargins=false) {
-			if ($pnum == $this->page) {
-				return;
-			}
-			if (($pnum > 0) AND ($pnum <= $this->numpages)) {
-				$this->state = 2;
-				// save current graphic settings
-				//$gvars = $this->getGraphicVars();
-				$oldpage = $this->page;
-				$this->page = $pnum;
-				$this->wPt = $this->pagedim[$this->page]['w'];
-				$this->hPt = $this->pagedim[$this->page]['h'];
-				$this->w = $this->pagedim[$this->page]['wk'];
-				$this->h = $this->pagedim[$this->page]['hk'];
-				$this->tMargin = $this->pagedim[$this->page]['tm'];
-				$this->bMargin = $this->pagedim[$this->page]['bm'];
-				$this->original_lMargin = $this->pagedim[$this->page]['olm'];
-				$this->original_rMargin = $this->pagedim[$this->page]['orm'];
-				$this->AutoPageBreak = $this->pagedim[$this->page]['pb'];
-				$this->CurOrientation = $this->pagedim[$this->page]['or'];
-				$this->SetAutoPageBreak($this->AutoPageBreak, $this->bMargin);
-				// restore graphic settings
-				//$this->setGraphicVars($gvars);
-				if ($resetmargins) {
-					$this->lMargin = $this->pagedim[$this->page]['olm'];
-					$this->rMargin = $this->pagedim[$this->page]['orm'];
-					$this->SetY($this->tMargin);
-				} else {
-					// account for booklet mode
-					if ($this->pagedim[$this->page]['olm'] != $this->pagedim[$oldpage]['olm']) {
-						$deltam = $this->pagedim[$this->page]['olm'] - $this->pagedim[$this->page]['orm'];
-						$this->lMargin += $deltam;
-						$this->rMargin -= $deltam;
-					}
-				}
+			$this->rMargin = $this->original_rMargin;
+			$this->lMargin = $this->original_lMargin;
+			$this->SetCellPadding(0);
+			//set current position
+			$footer_y = $this->h - $this->footer_margin;
+			if ($this->rtl) {
+				$this->SetXY($this->original_rMargin, $footer_y);
 			} else {
-				$this->Error('Wrong page number on setPage() function.');
-			}
-		}
-
-		/**
-		 * Reset pointer to the last document page.
-		 * @param boolean $resetmargins if true reset left, right, top margins and Y position.
-		 * @access public
-		 * @since 2.0.000 (2008-01-04)
-		 * @see setPage(), getPage(), getNumPages()
-		 */
-		public function lastPage($resetmargins=false) {
-			$this->setPage($this->getNumPages(), $resetmargins);
-		}
-
-		/**
-		 * Get current document page number.
-		 * @return int page number
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see setPage(), lastpage(), getNumPages()
-		 */
-		public function getPage() {
-			return $this->page;
-		}
-
-
-		/**
-		 * Get the total number of insered pages.
-		 * @return int number of pages
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see setPage(), getPage(), lastpage()
-		 */
-		public function getNumPages() {
-			return $this->numpages;
-		}
-
-		/**
-		 * Adds a new TOC (Table Of Content) page to the document.
-		 * @param string $orientation page orientation.
-		 * @param boolean $keepmargins if true overwrites the default page margins with the current margins
-		 * @access public
-		 * @since 5.0.001 (2010-05-06)
-		 * @see AddPage(), startPage(), endPage(), endTOCPage()
-		 */
-		public function addTOCPage($orientation='', $format='', $keepmargins=false) {
-			$this->AddPage($orientation, $format, $keepmargins, true);
-		}
-
-		/**
-		 * Terminate the current TOC (Table Of Content) page
-		 * @access public
-		 * @since 5.0.001 (2010-05-06)
-		 * @see AddPage(), startPage(), endPage(), addTOCPage()
-		 */
-		public function endTOCPage() {
-			$this->endPage(true);
-		}
-
-		/**
-		 * Adds a new page to the document. If a page is already present, the Footer() method is called first to output the footer (if enabled). Then the page is added, the current position set to the top-left corner according to the left and top margins (or top-right if in RTL mode), and Header() is called to display the header (if enabled).
-		 * The origin of the coordinate system is at the top-left corner (or top-right for RTL) and increasing ordinates go downwards.
-		 * @param string $orientation page orientation. Possible values are (case insensitive):<ul><li>P or PORTRAIT (default)</li><li>L or LANDSCAPE</li></ul>
-		 * @param mixed $format The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() or an array of parameters specified at setPageFormat().
-		 * @param boolean $keepmargins if true overwrites the default page margins with the current margins
-		 * @param boolean $tocpage if true set the tocpage state to true (the added page will be used to display Table Of Content).
-		 * @access public
-		 * @since 1.0
-		 * @see startPage(), endPage(), addTOCPage(), endTOCPage(), getPageSizeFromFormat(), setPageFormat()
-		 */
-		public function AddPage($orientation='', $format='', $keepmargins=false, $tocpage=false) {
-			if (!isset($this->original_lMargin) OR $keepmargins) {
-				$this->original_lMargin = $this->lMargin;
-			}
-			if (!isset($this->original_rMargin) OR $keepmargins) {
-				$this->original_rMargin = $this->rMargin;
-			}
-			// terminate previous page
-			$this->endPage();
-			// start new page
-			$this->startPage($orientation, $format, $tocpage);
-		}
-
-		/**
-		 * Terminate the current page
-		 * @param boolean $tocpage if true set the tocpage state to false (end the page used to display Table Of Content).
-		 * @access public
-		 * @since 4.2.010 (2008-11-14)
-		 * @see AddPage(), startPage(), addTOCPage(), endTOCPage()
-		 */
-		public function endPage($tocpage=false) {
-			// check if page is already closed
-			if (($this->page == 0) OR ($this->numpages > $this->page) OR (!$this->pageopen[$this->page])) {
-				return;
-			}
-			$this->InFooter = true;
-			// print page footer
-			$this->setFooter();
-			// close page
-			$this->_endpage();
-			// mark page as closed
-			$this->pageopen[$this->page] = false;
-			$this->InFooter = false;
-			if ($tocpage) {
-				$this->tocpage = false;
-			}
-		}
-
-		/**
-		 * Starts a new page to the document. The page must be closed using the endPage() function.
-		 * The origin of the coordinate system is at the top-left corner and increasing ordinates go downwards.
-		 * @param string $orientation page orientation. Possible values are (case insensitive):<ul><li>P or PORTRAIT (default)</li><li>L or LANDSCAPE</li></ul>
-		 * @param mixed $format The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() or an array of parameters specified at setPageFormat().
-		 * @access public
-		 * @since 4.2.010 (2008-11-14)
-		 * @see AddPage(), endPage(), addTOCPage(), endTOCPage(), getPageSizeFromFormat(), setPageFormat()
-		 */
-		public function startPage($orientation='', $format='', $tocpage=false) {
-			if ($tocpage) {
-				$this->tocpage = true;
-			}
-			if ($this->numpages > $this->page) {
-				// this page has been already added
-				$this->setPage($this->page + 1);
-				$this->SetY($this->tMargin);
-				return;
+				$this->SetXY($this->original_lMargin, $footer_y);
 			}
-			// start a new page
-			if ($this->state == 0) {
-				$this->Open();
-			}
-			++$this->numpages;
-			$this->swapMargins($this->booklet);
-			// save current graphic settings
-			$gvars = $this->getGraphicVars();
-			// start new page
-			$this->_beginpage($orientation, $format);
-			// mark page as open
-			$this->pageopen[$this->page] = true;
-			// restore graphic settings
-			$this->setGraphicVars($gvars);
-			// mark this point
-			$this->setPageMark();
-			// print page header
-			$this->setHeader();
-			// restore graphic settings
-			$this->setGraphicVars($gvars);
-			// mark this point
-			$this->setPageMark();
-			// print table header (if any)
-			$this->setTableHeader();
-		}
-
-		/**
-	 	 * Set start-writing mark on current page stream used to put borders and fills.
-	 	 * Borders and fills are always created after content and inserted on the position marked by this method.
-	 	 * This function must be called after calling Image() function for a background image.
-	 	 * Background images must be always inserted before calling Multicell() or WriteHTMLCell() or WriteHTML() functions.
-	 	 * @access public
-	 	 * @since 4.0.016 (2008-07-30)
-		 */
-		public function setPageMark() {
-			$this->intmrk[$this->page] = $this->pagelen[$this->page];
-			$this->setContentMark();
-		}
-
-		/**
-	 	 * Set start-writing mark on selected page.
-	 	 * Borders and fills are always created after content and inserted on the position marked by this method.
-	 	 * @param int $page page number (default is the current page)
-	 	 * @access protected
-	 	 * @since 4.6.021 (2009-07-20)
-		 */
-		protected function setContentMark($page=0) {
-			if ($page <= 0) {
-				$page = $this->page;
-			}
-			if (isset($this->footerlen[$page])) {
-				$this->cntmrk[$page] = $this->pagelen[$page] - $this->footerlen[$page];
-			} else {
-				$this->cntmrk[$page] = $this->pagelen[$page];
-			}
-		}
-
-		/**
-	 	 * Set header data.
-		 * @param string $ln header image logo
-		 * @param string $lw header image logo width in mm
-		 * @param string $ht string to print as title on document header
-		 * @param string $hs string to print on document header
-		 * @access public
-		 */
-		public function setHeaderData($ln='', $lw=0, $ht='', $hs='') {
-			$this->header_logo = $ln;
-			$this->header_logo_width = $lw;
-			$this->header_title = $ht;
-			$this->header_string = $hs;
-		}
-
-		/**
-	 	 * Returns header data:
-	 	 * <ul><li>$ret['logo'] = logo image</li><li>$ret['logo_width'] = width of the image logo in user units</li><li>$ret['title'] = header title</li><li>$ret['string'] = header description string</li></ul>
-		 * @return array()
-		 * @access public
-		 * @since 4.0.012 (2008-07-24)
-		 */
-		public function getHeaderData() {
-			$ret = array();
-			$ret['logo'] = $this->header_logo;
-			$ret['logo_width'] = $this->header_logo_width;
-			$ret['title'] = $this->header_title;
-			$ret['string'] = $this->header_string;
-			return $ret;
-		}
-
-		/**
-	 	 * Set header margin.
-		 * (minimum distance between header and top page margin)
-		 * @param int $hm distance in user units
-		 * @access public
-		 */
-		public function setHeaderMargin($hm=10) {
-			$this->header_margin = $hm;
-		}
-
-		/**
-	 	 * Returns header margin in user units.
-		 * @return float
-		 * @since 4.0.012 (2008-07-24)
-		 * @access public
-		 */
-		public function getHeaderMargin() {
-			return $this->header_margin;
-		}
-
-		/**
-	 	 * Set footer margin.
-		 * (minimum distance between footer and bottom page margin)
-		 * @param int $fm distance in user units
-		 * @access public
-		 */
-		public function setFooterMargin($fm=10) {
-			$this->footer_margin = $fm;
-		}
-
-		/**
-	 	 * Returns footer margin in user units.
-		 * @return float
-		 * @since 4.0.012 (2008-07-24)
-		 * @access public
-		 */
-		public function getFooterMargin() {
-			return $this->footer_margin;
-		}
-		/**
-	 	 * Set a flag to print page header.
-		 * @param boolean $val set to true to print the page header (default), false otherwise.
-		 * @access public
-		 */
-		public function setPrintHeader($val=true) {
-			$this->print_header = $val;
-		}
-
-		/**
-	 	 * Set a flag to print page footer.
-		 * @param boolean $value set to true to print the page footer (default), false otherwise.
-		 * @access public
-		 */
-		public function setPrintFooter($val=true) {
-			$this->print_footer = $val;
-		}
-
-		/**
-	 	 * Return the right-bottom (or left-bottom for RTL) corner X coordinate of last inserted image
-		 * @return float
-		 * @access public
-		 */
-		public function getImageRBX() {
-			return $this->img_rb_x;
-		}
-
-		/**
-	 	 * Return the right-bottom (or left-bottom for RTL) corner Y coordinate of last inserted image
-		 * @return float
-		 * @access public
-		 */
-		public function getImageRBY() {
-			return $this->img_rb_y;
-		}
-
-		/**
-	 	 * This method is used to render the page header.
-	 	 * It is automatically called by AddPage() and could be overwritten in your own inherited class.
-		 * @access public
-		 */
-		public function Header() {
-			$ormargins = $this->getOriginalMargins();
-			$headerfont = $this->getHeaderFont();
-			$headerdata = $this->getHeaderData();
-			if (($headerdata['logo']) AND ($headerdata['logo'] != K_BLANK_IMAGE)) {
-				$this->Image(K_PATH_IMAGES.$headerdata['logo'], '', '', $headerdata['logo_width']);
-				$imgy = $this->getImageRBY();
+			$this->SetFont($this->footer_font[0], $this->footer_font[1], $this->footer_font[2]);
+			$this->Footer();
+			//restore position
+			if ($this->rtl) {
+				$this->SetXY($this->original_rMargin, $this->tMargin);
 			} else {
-				$imgy = $this->GetY();
+				$this->SetXY($this->original_lMargin, $this->tMargin);
 			}
-			$cell_height = round(($this->getCellHeightRatio() * $headerfont[2]) / $this->getScaleFactor(), 2);
-			// set starting margin for text data cell
-			if ($this->getRTL()) {
-				$header_x = $ormargins['right'] + ($headerdata['logo_width'] * 1.1);
-			} else {
-				$header_x = $ormargins['left'] + ($headerdata['logo_width'] * 1.1);
-			}
-			$this->SetTextColor(0, 0, 0);
-			// header title
-			$this->SetFont($headerfont[0], 'B', $headerfont[2] + 1);
-			$this->SetX($header_x);
-			$this->Cell(0, $cell_height, $headerdata['title'], 0, 1, '', 0, '', 0);
-			// header string
-			$this->SetFont($headerfont[0], $headerfont[1], $headerfont[2]);
-			$this->SetX($header_x);
-			$this->MultiCell(0, $cell_height, $headerdata['string'], 0, '', 0, 1, '', '', true, 0, false);
-			// print an ending header line
-			$this->SetLineStyle(array('width' => 0.85 / $this->getScaleFactor(), 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)));
-			$this->SetY((2.835 / $this->getScaleFactor()) + max($imgy, $this->GetY()));
-			if ($this->getRTL()) {
-				$this->SetX($ormargins['right']);
-			} else {
-				$this->SetX($ormargins['left']);
-			}
-			$this->Cell(0, 0, '', 'T', 0, 'C');
-		}
-
-		/**
-	 	 * This method is used to render the page footer.
-	 	 * It is automatically called by AddPage() and could be overwritten in your own inherited class.
-		 * @access public
-		 */
-		public function Footer() {
-			$cur_y = $this->GetY();
-			$ormargins = $this->getOriginalMargins();
-			$this->SetTextColor(0, 0, 0);
-			//set style for cell border
-			$line_width = 0.85 / $this->getScaleFactor();
-			$this->SetLineStyle(array('width' => $line_width, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)));
-			//print document barcode
-			$barcode = $this->getBarcode();
-			if (!empty($barcode)) {
-				$this->Ln($line_width);
-				$barcode_width = round(($this->getPageWidth() - $ormargins['left'] - $ormargins['right'])/3);
-				$this->write1DBarcode($barcode, 'C128B', $this->GetX(), $cur_y + $line_width, $barcode_width, (($this->getFooterMargin() / 3) - $line_width), 0.3, '', '');
-			}
-			if (empty($this->pagegroups)) {
-				$pagenumtxt = $this->l['w_page'].' '.$this->getAliasNumPage().' / '.$this->getAliasNbPages();
+			$this->_out('Q');
+			$this->lasth = $lasth;
+			$this->thead = $temp_thead;
+			$this->theadMargins = $temp_theadMargins;
+		}
+		// restore graphic settings
+		$this->setGraphicVars($gvars);
+		$this->current_column = $gvars['current_column'];
+		$this->num_columns = $gvars['num_columns'];
+		// calculate footer length
+		$this->footerlen[$this->page] = $this->pagelen[$this->page] - $this->footerpos[$this->page] + 1;
+	}
+
+	/**
+	 * This method is used to render the table header on new page (if any).
+	 * @protected
+	 * @since 4.5.030 (2009-03-25)
+	 */
+	protected function setTableHeader() {
+		if ($this->num_columns > 1) {
+			// multi column mode
+			return;
+		}
+		if (isset($this->theadMargins['top'])) {
+			// restore the original top-margin
+			$this->tMargin = $this->theadMargins['top'];
+			$this->pagedim[$this->page]['tm'] = $this->tMargin;
+			$this->y = $this->tMargin;
+		}
+		if (!$this->empty_string($this->thead) AND (!$this->inthead)) {
+			// set margins
+			$prev_lMargin = $this->lMargin;
+			$prev_rMargin = $this->rMargin;
+			$prev_cell_padding = $this->cell_padding;
+			$this->lMargin = $this->theadMargins['lmargin'] + ($this->pagedim[$this->page]['olm'] - $this->pagedim[$this->theadMargins['page']]['olm']);
+			$this->rMargin = $this->theadMargins['rmargin'] + ($this->pagedim[$this->page]['orm'] - $this->pagedim[$this->theadMargins['page']]['orm']);
+			$this->cell_padding = $this->theadMargins['cell_padding'];
+			if ($this->rtl) {
+				$this->x = $this->w - $this->rMargin;
 			} else {
-				$pagenumtxt = $this->l['w_page'].' '.$this->getPageNumGroupAlias().' / '.$this->getPageGroupAlias();
+				$this->x = $this->lMargin;
 			}
-			$this->SetY($cur_y);
-			//Print page number
-			if ($this->getRTL()) {
-				$this->SetX($ormargins['right']);
-				$this->Cell(0, 0, $pagenumtxt, 'T', 0, 'L');
-			} else {
-				$this->SetX($ormargins['left']);
-				$this->Cell(0, 0, $pagenumtxt, 'T', 0, 'R');
-			}
-		}
-
-		/**
-	 	 * This method is used to render the page header.
-	 	 * @access protected
-	 	 * @since 4.0.012 (2008-07-24)
-		 */
-		protected function setHeader() {
-			if ($this->print_header) {
-				$this->setGraphicVars($this->default_graphic_vars);
-				$temp_thead = $this->thead;
-				$temp_theadMargins = $this->theadMargins;
-				$lasth = $this->lasth;
-				$this->_out('q');
-				$this->rMargin = $this->original_rMargin;
-				$this->lMargin = $this->original_lMargin;
-				$this->cMargin = 0;
-				//set current position
-				if ($this->rtl) {
-					$this->SetXY($this->original_rMargin, $this->header_margin);
-				} else {
-					$this->SetXY($this->original_lMargin, $this->header_margin);
-				}
-				$this->SetFont($this->header_font[0], $this->header_font[1], $this->header_font[2]);
-				$this->Header();
-				//restore position
-				if ($this->rtl) {
-					$this->SetXY($this->original_rMargin, $this->tMargin);
-				} else {
-					$this->SetXY($this->original_lMargin, $this->tMargin);
-				}
-				$this->_out('Q');
-				$this->lasth = $lasth;
-				$this->thead = $temp_thead;
-				$this->theadMargins = $temp_theadMargins;
-				$this->newline = false;
+			// print table header
+			$this->writeHTML($this->thead, false, false, false, false, '');
+			// set new top margin to skip the table headers
+			if (!isset($this->theadMargins['top'])) {
+				$this->theadMargins['top'] = $this->tMargin;
 			}
+			$this->tMargin = $this->y;
+			$this->pagedim[$this->page]['tm'] = $this->tMargin;
+			$this->lasth = 0;
+			$this->lMargin = $prev_lMargin;
+			$this->rMargin = $prev_rMargin;
+			$this->cell_padding = $prev_cell_padding;
 		}
+	}
 
-		/**
-	 	 * This method is used to render the page footer.
-	 	 * @access protected
-	 	 * @since 4.0.012 (2008-07-24)
-		 */
-		protected function setFooter() {
-			//Page footer
-			// save current graphic settings
-			$gvars = $this->getGraphicVars();
-			// mark this point
-			$this->footerpos[$this->page] = $this->pagelen[$this->page];
-			$this->_out("\n");
-			if ($this->print_footer) {
-				$this->setGraphicVars($this->default_graphic_vars);
-				$temp_thead = $this->thead;
-				$temp_theadMargins = $this->theadMargins;
-				$lasth = $this->lasth;
-				$this->_out('q');
-				$this->rMargin = $this->original_rMargin;
-				$this->lMargin = $this->original_lMargin;
-				$this->cMargin = 0;
-				//set current position
-				$footer_y = $this->h - $this->footer_margin;
-				if ($this->rtl) {
-					$this->SetXY($this->original_rMargin, $footer_y);
-				} else {
-					$this->SetXY($this->original_lMargin, $footer_y);
-				}
-				$this->SetFont($this->footer_font[0], $this->footer_font[1], $this->footer_font[2]);
-				$this->Footer();
-				//restore position
-				if ($this->rtl) {
-					$this->SetXY($this->original_rMargin, $this->tMargin);
-				} else {
-					$this->SetXY($this->original_lMargin, $this->tMargin);
-				}
-				$this->_out('Q');
-				$this->lasth = $lasth;
-				$this->thead = $temp_thead;
-				$this->theadMargins = $temp_theadMargins;
-			}
-			// restore graphic settings
-			$this->setGraphicVars($gvars);
-			// calculate footer length
-			$this->footerlen[$this->page] = $this->pagelen[$this->page] - $this->footerpos[$this->page] + 1;
-		}
-
-		/**
-	 	 * This method is used to render the table header on new page (if any).
-	 	 * @access protected
-	 	 * @since 4.5.030 (2009-03-25)
-		 */
-		protected function setTableHeader() {
-			if ($this->num_columns > 1) {
-				// multi column mode
-				return;
-			}
-			if (isset($this->theadMargins['top'])) {
-				// restore the original top-margin
-				$this->tMargin = $this->theadMargins['top'];
-				$this->pagedim[$this->page]['tm'] = $this->tMargin;
-				$this->y = $this->tMargin;
-			}
-			if (!$this->empty_string($this->thead) AND (!$this->inthead)) {
-				// set margins
-				$prev_lMargin = $this->lMargin;
-				$prev_rMargin = $this->rMargin;
-				$this->lMargin = $this->theadMargins['lmargin'] + ($this->pagedim[$this->page]['olm'] - $this->pagedim[$this->theadMargins['page']]['olm']);
-				$this->rMargin = $this->theadMargins['rmargin'] + ($this->pagedim[$this->page]['orm'] - $this->pagedim[$this->theadMargins['page']]['orm']);
-				$this->cMargin = $this->theadMargins['cmargin'];
-				if ($this->rtl) {
-					$this->x = $this->w - $this->rMargin;
-				} else {
-					$this->x = $this->lMargin;
-				}
-				// print table header
-				$this->writeHTML($this->thead, false, false, false, false, '');
-				// set new top margin to skip the table headers
-				if (!isset($this->theadMargins['top'])) {
-					$this->theadMargins['top'] = $this->tMargin;
-				}
-				$this->tMargin = $this->y;
-				$this->pagedim[$this->page]['tm'] = $this->tMargin;
-				$this->lasth = 0;
-				$this->lMargin = $prev_lMargin;
-				$this->rMargin = $prev_rMargin;
-			}
-		}
-
-		/**
-		 * Returns the current page number.
-		 * @return int page number
-		 * @access public
-		 * @since 1.0
-		 * @see AliasNbPages(), getAliasNbPages()
-		 */
-		public function PageNo() {
-			return $this->page;
-		}
-
-		/**
-		 * Defines a new spot color.
-		 * It can be expressed in RGB components or gray scale.
-		 * The method can be called before the first page is created and the value is retained from page to page.
-		 * @param int $c Cyan color for CMYK. Value between 0 and 255
-		 * @param int $m Magenta color for CMYK. Value between 0 and 255
-		 * @param int $y Yellow color for CMYK. Value between 0 and 255
-		 * @param int $k Key (Black) color for CMYK. Value between 0 and 255
-		 * @access public
-		 * @since 4.0.024 (2008-09-12)
-		 * @see SetDrawSpotColor(), SetFillSpotColor(), SetTextSpotColor()
-		 */
-		public function AddSpotColor($name, $c, $m, $y, $k) {
-			if (!isset($this->spot_colors[$name])) {
-				$i = 1 + count($this->spot_colors);
-				$this->spot_colors[$name] = array('i' => $i, 'c' => $c, 'm' => $m, 'y' => $y, 'k' => $k);
-			}
-		}
-
-		/**
-		 * Defines the color used for all drawing operations (lines, rectangles and cell borders).
-		 * It can be expressed in RGB components or gray scale.
-		 * The method can be called before the first page is created and the value is retained from page to page.
-		 * @param array $color array of colors
-		 * @access public
-		 * @since 3.1.000 (2008-06-11)
-		 * @see SetDrawColor()
-		 */
-		public function SetDrawColorArray($color) {
-			if (isset($color)) {
-				$color = array_values($color);
-				$r = isset($color[0]) ? $color[0] : -1;
-				$g = isset($color[1]) ? $color[1] : -1;
-				$b = isset($color[2]) ? $color[2] : -1;
-				$k = isset($color[3]) ? $color[3] : -1;
-				if ($r >= 0) {
-					$this->SetDrawColor($r, $g, $b, $k);
-				}
-			}
-		}
-
-		/**
-		 * Defines the color used for all drawing operations (lines, rectangles and cell borders). It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.
-		 * @param int $col1 Gray level for single color, or Red color for RGB, or Cyan color for CMYK. Value between 0 and 255
-		 * @param int $col2 Green color for RGB, or Magenta color for CMYK. Value between 0 and 255
-		 * @param int $col3 Blue color for RGB, or Yellow color for CMYK. Value between 0 and 255
-		 * @param int $col4 Key (Black) color for CMYK. Value between 0 and 255
-		 * @access public
-		 * @since 1.3
-		 * @see SetDrawColorArray(), SetFillColor(), SetTextColor(), Line(), Rect(), Cell(), MultiCell()
-		 */
-		public function SetDrawColor($col1=0, $col2=-1, $col3=-1, $col4=-1) {
-			// set default values
-			if (!is_numeric($col1)) {
-				$col1 = 0;
-			}
-			if (!is_numeric($col2)) {
-				$col2 = -1;
-			}
-			if (!is_numeric($col3)) {
-				$col3 = -1;
-			}
-			if (!is_numeric($col4)) {
-				$col4 = -1;
-			}
-			//Set color for all stroking operations
-			if (($col2 == -1) AND ($col3 == -1) AND ($col4 == -1)) {
-				// Grey scale
-				$this->DrawColor = sprintf('%.3F G', $col1/255);
-				$this->strokecolor = array('G' => $col1);
-			} elseif ($col4 == -1) {
-				// RGB
-				$this->DrawColor = sprintf('%.3F %.3F %.3F RG', $col1/255, $col2/255, $col3/255);
-				$this->strokecolor = array('R' => $col1, 'G' => $col2, 'B' => $col3);
-			} else {
-				// CMYK
-				$this->DrawColor = sprintf('%.3F %.3F %.3F %.3F K', $col1/100, $col2/100, $col3/100, $col4/100);
-				$this->strokecolor = array('C' => $col1, 'M' => $col2, 'Y' => $col3, 'K' => $col4);
-			}
-			if ($this->page > 0) {
-				$this->_out($this->DrawColor);
-			}
+	/**
+	 * Returns the current page number.
+	 * @return int page number
+	 * @public
+	 * @since 1.0
+	 * @see AliasNbPages(), getAliasNbPages()
+	 */
+	public function PageNo() {
+		return $this->page;
+	}
+
+	/**
+	 * Defines a new spot color.
+	 * It can be expressed in RGB components or gray scale.
+	 * The method can be called before the first page is created and the value is retained from page to page.
+	 * @param $name (string) name of the spot color
+	 * @param $c (int) Cyan color for CMYK. Value between 0 and 100
+	 * @param $m (int) Magenta color for CMYK. Value between 0 and 100
+	 * @param $y (int) Yellow color for CMYK. Value between 0 and 100
+	 * @param $k (int) Key (Black) color for CMYK. Value between 0 and 100
+	 * @public
+	 * @since 4.0.024 (2008-09-12)
+	 * @see SetDrawSpotColor(), SetFillSpotColor(), SetTextSpotColor()
+	 */
+	public function AddSpotColor($name, $c, $m, $y, $k) {
+		if (!isset($this->spot_colors[$name])) {
+			$i = 1 + count($this->spot_colors);
+			$this->spot_colors[$name] = array('i' => $i, 'c' => $c, 'm' => $m, 'y' => $y, 'k' => $k);
+		}
+		$color = preg_replace('/[\s]*/', '', $name); // remove extra spaces
+		$color = strtolower($color);
+		if (!isset($this->spotcolor[$color])) {
+			$this->spotcolor[$color] = array($c, $m, $y, $k, $name);
 		}
+	}
 
-		/**
-		 * Defines the spot color used for all drawing operations (lines, rectangles and cell borders).
-		 * @param string $name name of the spot color
-		 * @param int $tint the intensity of the color (from 0 to 100 ; 100 = full intensity by default).
-		 * @access public
-		 * @since 4.0.024 (2008-09-12)
-		 * @see AddSpotColor(), SetFillSpotColor(), SetTextSpotColor()
-		 */
-		public function SetDrawSpotColor($name, $tint=100) {
-			if (!isset($this->spot_colors[$name])) {
-				$this->Error('Undefined spot color: '.$name);
+	/**
+	 * Defines the color used for all drawing operations (lines, rectangles and cell borders).
+	 * It can be expressed in RGB, CMYK or GRAY SCALE components.
+	 * The method can be called before the first page is created and the value is retained from page to page.
+	 * @param $color (array) array of colors
+	 * @param $ret (boolean) if true do not send the PDF command.
+	 * @return string the PDF command
+	 * @public
+	 * @since 3.1.000 (2008-06-11)
+	 * @see SetDrawColor()
+	 */
+	public function SetDrawColorArray($color, $ret=false) {
+		if (is_array($color)) {
+			$color = array_values($color);
+			$r = isset($color[0]) ? $color[0] : -1;
+			$g = isset($color[1]) ? $color[1] : -1;
+			$b = isset($color[2]) ? $color[2] : -1;
+			$k = isset($color[3]) ? $color[3] : -1;
+			$name = isset($color[4]) ? $color[4] : ''; // spot color name
+			if ($r >= 0) {
+				return $this->SetDrawColor($r, $g, $b, $k, $ret, $name);
 			}
-			$this->DrawColor = sprintf('/CS%d CS %.3F SCN', $this->spot_colors[$name]['i'], $tint/100);
-			if ($this->page > 0) {
+		}
+		return '';
+	}
+
+	/**
+	 * Defines the color used for all drawing operations (lines, rectangles and cell borders). It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.
+	 * @param $col1 (int) GRAY level for single color, or Red color for RGB (0-255), or CYAN color for CMYK (0-100).
+	 * @param $col2 (int) GREEN color for RGB (0-255), or MAGENTA color for CMYK (0-100).
+	 * @param $col3 (int) BLUE color for RGB (0-255), or YELLOW color for CMYK (0-100).
+	 * @param $col4 (int) KEY (BLACK) color for CMYK (0-100).
+	 * @param $ret (boolean) if true do not send the command.
+	 * @param $name (string) spot color name (if any)
+	 * @return string the PDF command
+	 * @public
+	 * @since 1.3
+	 * @see SetDrawColorArray(), SetFillColor(), SetTextColor(), Line(), Rect(), Cell(), MultiCell()
+	 */
+	public function SetDrawColor($col1=0, $col2=-1, $col3=-1, $col4=-1, $ret=false, $name='') {
+		// set default values
+		if (!is_numeric($col1)) {
+			$col1 = 0;
+		}
+		if (!is_numeric($col2)) {
+			$col2 = -1;
+		}
+		if (!is_numeric($col3)) {
+			$col3 = -1;
+		}
+		if (!is_numeric($col4)) {
+			$col4 = -1;
+		}
+		//Set color for all stroking operations
+		if (($col2 == -1) AND ($col3 == -1) AND ($col4 == -1)) {
+			// Grey scale
+			$this->DrawColor = sprintf('%.3F G', ($col1 / 255));
+			$this->strokecolor = array('G' => $col1);
+		} elseif ($col4 == -1) {
+			// RGB
+			$this->DrawColor = sprintf('%.3F %.3F %.3F RG', ($col1 / 255), ($col2 / 255), ($col3 / 255));
+			$this->strokecolor = array('R' => $col1, 'G' => $col2, 'B' => $col3);
+		} elseif (empty($name)) {
+			// CMYK
+			$this->DrawColor = sprintf('%.3F %.3F %.3F %.3F K', ($col1 / 100), ($col2 / 100), ($col3 / 100), ($col4 / 100));
+			$this->strokecolor = array('C' => $col1, 'M' => $col2, 'Y' => $col3, 'K' => $col4);
+		} else {
+			// SPOT COLOR
+			$this->AddSpotColor($name, $col1, $col2, $col3, $col4);
+			$this->DrawColor = sprintf('/CS%d CS %.3F SCN', $this->spot_colors[$name]['i'], 1);
+			$this->strokecolor = array('C' => $col1, 'M' => $col2, 'Y' => $col3, 'K' => $col4, 'name' => $name);
+		}
+		if ($this->page > 0) {
+			if (!$ret) {
 				$this->_out($this->DrawColor);
 			}
+			return $this->DrawColor;
 		}
+		return '';
+	}
 
-		/**
-		 * Defines the color used for all filling operations (filled rectangles and cell backgrounds).
-		 * It can be expressed in RGB components or gray scale.
-		 * The method can be called before the first page is created and the value is retained from page to page.
-		 * @param array $color array of colors
-		 * @access public
-		 * @since 3.1.000 (2008-6-11)
-		 * @see SetFillColor()
-		 */
-		public function SetFillColorArray($color) {
-			if (isset($color)) {
-				$color = array_values($color);
-				$r = isset($color[0]) ? $color[0] : -1;
-				$g = isset($color[1]) ? $color[1] : -1;
-				$b = isset($color[2]) ? $color[2] : -1;
-				$k = isset($color[3]) ? $color[3] : -1;
-				if ($r >= 0) {
-					$this->SetFillColor($r, $g, $b, $k);
-				}
-			}
-		}
-
-		/**
-		 * Defines the color used for all filling operations (filled rectangles and cell backgrounds). It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.
-		 * @param int $col1 Gray level for single color, or Red color for RGB, or Cyan color for CMYK. Value between 0 and 255
-		 * @param int $col2 Green color for RGB, or Magenta color for CMYK. Value between 0 and 255
-		 * @param int $col3 Blue color for RGB, or Yellow color for CMYK. Value between 0 and 255
-		 * @param int $col4 Key (Black) color for CMYK. Value between 0 and 255
-		 * @access public
-		 * @since 1.3
-		 * @see SetFillColorArray(), SetDrawColor(), SetTextColor(), Rect(), Cell(), MultiCell()
-		 */
-		public function SetFillColor($col1=0, $col2=-1, $col3=-1, $col4=-1) {
-			// set default values
-			if (!is_numeric($col1)) {
-				$col1 = 0;
-			}
-			if (!is_numeric($col2)) {
-				$col2 = -1;
-			}
-			if (!is_numeric($col3)) {
-				$col3 = -1;
-			}
-			if (!is_numeric($col4)) {
-				$col4 = -1;
-			}
-			//Set color for all filling operations
-			if (($col2 == -1) AND ($col3 == -1) AND ($col4 == -1)) {
-				// Grey scale
-				$this->FillColor = sprintf('%.3F g', $col1/255);
-				$this->bgcolor = array('G' => $col1);
-			} elseif ($col4 == -1) {
-				// RGB
-				$this->FillColor = sprintf('%.3F %.3F %.3F rg', $col1/255, $col2/255, $col3/255);
-				$this->bgcolor = array('R' => $col1, 'G' => $col2, 'B' => $col3);
-			} else {
-				// CMYK
-				$this->FillColor = sprintf('%.3F %.3F %.3F %.3F k', $col1/100, $col2/100, $col3/100, $col4/100);
-				$this->bgcolor = array('C' => $col1, 'M' => $col2, 'Y' => $col3, 'K' => $col4);
+	/**
+	 * Defines the spot color used for all drawing operations (lines, rectangles and cell borders).
+	 * @param $name (string) name of the spot color
+	 * @param $tint (int) the intensity of the color (from 0 to 100 ; 100 = full intensity by default).
+	 * @public
+	 * @since 4.0.024 (2008-09-12)
+	 * @see AddSpotColor(), SetFillSpotColor(), SetTextSpotColor()
+	 */
+	public function SetDrawSpotColor($name, $tint=100) {
+		if (!isset($this->spot_colors[$name])) {
+			$this->Error('Undefined spot color: '.$name);
+		}
+		$this->DrawColor = sprintf('/CS%d CS %.3F SCN', $this->spot_colors[$name]['i'], ($tint / 100));
+		$this->strokecolor = array('C' => $this->spot_colors[$name]['c'], 'M' => $this->spot_colors[$name]['m'], 'Y' => $this->spot_colors[$name]['y'], 'K' => $this->spot_colors[$name]['k'], 'name' => $name);
+		if ($this->page > 0) {
+			$this->_out($this->DrawColor);
+		}
+	}
+
+	/**
+	 * Defines the color used for all filling operations (filled rectangles and cell backgrounds).
+	 * It can be expressed in RGB, CMYK or GRAY SCALE components.
+	 * The method can be called before the first page is created and the value is retained from page to page.
+	 * @param $color (array) array of colors
+	 * @param $ret (boolean) if true do not send the PDF command.
+	 * @public
+	 * @since 3.1.000 (2008-6-11)
+	 * @see SetFillColor()
+	 */
+	public function SetFillColorArray($color, $ret=false) {
+		if (is_array($color)) {
+			$color = array_values($color);
+			$r = isset($color[0]) ? $color[0] : -1;
+			$g = isset($color[1]) ? $color[1] : -1;
+			$b = isset($color[2]) ? $color[2] : -1;
+			$k = isset($color[3]) ? $color[3] : -1;
+			$name = isset($color[4]) ? $color[4] : ''; // spot color name
+			if ($r >= 0) {
+				$this->SetFillColor($r, $g, $b, $k, $ret, $name);
 			}
-			$this->ColorFlag = ($this->FillColor != $this->TextColor);
-			if ($this->page > 0) {
+		}
+	}
+
+	/**
+	 * Defines the color used for all filling operations (filled rectangles and cell backgrounds). It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.
+	 * @param $col1 (int) GRAY level for single color, or Red color for RGB (0-255), or CYAN color for CMYK (0-100).
+	 * @param $col2 (int) GREEN color for RGB (0-255), or MAGENTA color for CMYK (0-100).
+	 * @param $col3 (int) BLUE color for RGB (0-255), or YELLOW color for CMYK (0-100).
+	 * @param $col4 (int) KEY (BLACK) color for CMYK (0-100).
+	 * @param $ret (boolean) if true do not send the command.
+	 * @param $name (string) spot color name (if any)
+	 * @return string the PDF command
+	 * @public
+	 * @since 1.3
+	 * @see SetFillColorArray(), SetDrawColor(), SetTextColor(), Rect(), Cell(), MultiCell()
+	 */
+	public function SetFillColor($col1=0, $col2=-1, $col3=-1, $col4=-1, $ret=false, $name='') {
+		// set default values
+		if (!is_numeric($col1)) {
+			$col1 = 0;
+		}
+		if (!is_numeric($col2)) {
+			$col2 = -1;
+		}
+		if (!is_numeric($col3)) {
+			$col3 = -1;
+		}
+		if (!is_numeric($col4)) {
+			$col4 = -1;
+		}
+		//Set color for all filling operations
+		if (($col2 == -1) AND ($col3 == -1) AND ($col4 == -1)) {
+			// Grey scale
+			$this->FillColor = sprintf('%.3F g', ($col1 / 255));
+			$this->bgcolor = array('G' => $col1);
+		} elseif ($col4 == -1) {
+			// RGB
+			$this->FillColor = sprintf('%.3F %.3F %.3F rg', ($col1 / 255), ($col2 / 255), ($col3 / 255));
+			$this->bgcolor = array('R' => $col1, 'G' => $col2, 'B' => $col3);
+		} elseif (empty($name)) {
+			// CMYK
+			$this->FillColor = sprintf('%.3F %.3F %.3F %.3F k', ($col1 / 100), ($col2 / 100), ($col3 / 100), ($col4 / 100));
+			$this->bgcolor = array('C' => $col1, 'M' => $col2, 'Y' => $col3, 'K' => $col4);
+		} else {
+			// SPOT COLOR
+			$this->AddSpotColor($name, $col1, $col2, $col3, $col4);
+			$this->FillColor = sprintf('/CS%d cs %.3F scn', $this->spot_colors[$name]['i'], 1);
+			$this->bgcolor = array('C' => $col1, 'M' => $col2, 'Y' => $col3, 'K' => $col4, 'name' => $name);
+		}
+		$this->ColorFlag = ($this->FillColor != $this->TextColor);
+		if ($this->page > 0) {
+			if (!$ret) {
 				$this->_out($this->FillColor);
 			}
+			return $this->FillColor;
 		}
+		return '';
+	}
 
-		/**
-		 * Defines the spot color used for all filling operations (filled rectangles and cell backgrounds).
-		 * @param string $name name of the spot color
-		 * @param int $tint the intensity of the color (from 0 to 100 ; 100 = full intensity by default).
-		 * @access public
-		 * @since 4.0.024 (2008-09-12)
-		 * @see AddSpotColor(), SetDrawSpotColor(), SetTextSpotColor()
-		 */
-		public function SetFillSpotColor($name, $tint=100) {
-			if (!isset($this->spot_colors[$name])) {
-				$this->Error('Undefined spot color: '.$name);
-			}
-			$this->FillColor = sprintf('/CS%d cs %.3F scn', $this->spot_colors[$name]['i'], $tint/100);
-			$this->ColorFlag = ($this->FillColor != $this->TextColor);
-			if ($this->page > 0) {
-				$this->_out($this->FillColor);
+	/**
+	 * Defines the spot color used for all filling operations (filled rectangles and cell backgrounds).
+	 * @param $name (string) name of the spot color
+	 * @param $tint (int) the intensity of the color (from 0 to 100 ; 100 = full intensity by default).
+	 * @public
+	 * @since 4.0.024 (2008-09-12)
+	 * @see AddSpotColor(), SetDrawSpotColor(), SetTextSpotColor()
+	 */
+	public function SetFillSpotColor($name, $tint=100) {
+		if (!isset($this->spot_colors[$name])) {
+			$this->Error('Undefined spot color: '.$name);
+		}
+		$this->FillColor = sprintf('/CS%d cs %.3F scn', $this->spot_colors[$name]['i'], ($tint / 100));
+		$this->bgcolor = array('C' => $this->spot_colors[$name]['c'], 'M' => $this->spot_colors[$name]['m'], 'Y' => $this->spot_colors[$name]['y'], 'K' => $this->spot_colors[$name]['k'], 'name' => $name);
+		$this->ColorFlag = ($this->FillColor != $this->TextColor);
+		if ($this->page > 0) {
+			$this->_out($this->FillColor);
+		}
+	}
+
+	/**
+	 * Defines the color used for text. It can be expressed in RGB components or gray scale.
+	 * The method can be called before the first page is created and the value is retained from page to page.
+	 * @param $color (array) array of colors
+	 * @param $ret (boolean) if true do not send the PDF command.
+	 * @public
+	 * @since 3.1.000 (2008-6-11)
+	 * @see SetFillColor()
+	 */
+	public function SetTextColorArray($color, $ret=false) {
+		if (is_array($color)) {
+			$color = array_values($color);
+			$r = isset($color[0]) ? $color[0] : -1;
+			$g = isset($color[1]) ? $color[1] : -1;
+			$b = isset($color[2]) ? $color[2] : -1;
+			$k = isset($color[3]) ? $color[3] : -1;
+			$name = isset($color[4]) ? $color[4] : ''; // spot color name
+			if ($r >= 0) {
+				$this->SetTextColor($r, $g, $b, $k, $ret, $name);
 			}
 		}
+	}
 
-		/**
-		 * Defines the color used for text. It can be expressed in RGB components or gray scale.
-		 * The method can be called before the first page is created and the value is retained from page to page.
-		 * @param array $color array of colors
-		 * @access public
-		 * @since 3.1.000 (2008-6-11)
-		 * @see SetFillColor()
-		 */
-		public function SetTextColorArray($color) {
-			if (isset($color)) {
-				$color = array_values($color);
-				$r = isset($color[0]) ? $color[0] : -1;
-				$g = isset($color[1]) ? $color[1] : -1;
-				$b = isset($color[2]) ? $color[2] : -1;
-				$k = isset($color[3]) ? $color[3] : -1;
-				if ($r >= 0) {
-					$this->SetTextColor($r, $g, $b, $k);
-				}
-			}
-		}
-
-		/**
-		 * Defines the color used for text. It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.
-		 * @param int $col1 Gray level for single color, or Red color for RGB, or Cyan color for CMYK. Value between 0 and 255
-		 * @param int $col2 Green color for RGB, or Magenta color for CMYK. Value between 0 and 255
-		 * @param int $col3 Blue color for RGB, or Yellow color for CMYK. Value between 0 and 255
-		 * @param int $col4 Key (Black) color for CMYK. Value between 0 and 255
-		 * @access public
-		 * @since 1.3
-		 * @see SetTextColorArray(), SetDrawColor(), SetFillColor(), Text(), Cell(), MultiCell()
-		 */
-		public function SetTextColor($col1=0, $col2=-1, $col3=-1, $col4=-1) {
-			// set default values
-			if (!is_numeric($col1)) {
-				$col1 = 0;
-			}
-			if (!is_numeric($col2)) {
-				$col2 = -1;
-			}
-			if (!is_numeric($col3)) {
-				$col3 = -1;
-			}
-			if (!is_numeric($col4)) {
-				$col4 = -1;
-			}
-			//Set color for text
-			if (($col2 == -1) AND ($col3 == -1) AND ($col4 == -1)) {
-				// Grey scale
-				$this->TextColor = sprintf('%.3F g', $col1/255);
-				$this->fgcolor = array('G' => $col1);
-			} elseif ($col4 == -1) {
-				// RGB
-				$this->TextColor = sprintf('%.3F %.3F %.3F rg', $col1/255, $col2/255, $col3/255);
-				$this->fgcolor = array('R' => $col1, 'G' => $col2, 'B' => $col3);
-			} else {
-				// CMYK
-				$this->TextColor = sprintf('%.3F %.3F %.3F %.3F k', $col1/100, $col2/100, $col3/100, $col4/100);
-				$this->fgcolor = array('C' => $col1, 'M' => $col2, 'Y' => $col3, 'K' => $col4);
-			}
-			$this->ColorFlag = ($this->FillColor != $this->TextColor);
-		}
-
-		/**
-		 * Defines the spot color used for text.
-		 * @param string $name name of the spot color
-		 * @param int $tint the intensity of the color (from 0 to 100 ; 100 = full intensity by default).
-		 * @access public
-		 * @since 4.0.024 (2008-09-12)
-		 * @see AddSpotColor(), SetDrawSpotColor(), SetFillSpotColor()
-		 */
-		public function SetTextSpotColor($name, $tint=100) {
-			if (!isset($this->spot_colors[$name])) {
-				$this->Error('Undefined spot color: '.$name);
-			}
-			$this->TextColor = sprintf('/CS%d cs %.3F scn', $this->spot_colors[$name]['i'], $tint/100);
-			$this->ColorFlag = ($this->FillColor != $this->TextColor);
-			if ($this->page > 0) {
-				$this->_out($this->TextColor);
-			}
-		}
-
-		/**
-		 * Returns the length of a string in user unit. A font must be selected.<br>
-		 * @param string $s The string whose length is to be computed
-		 * @param string $fontname Family font. It can be either a name defined by AddFont() or one of the standard families. It is also possible to pass an empty string, in that case, the current family is retained.
-		 * @param string $fontstyle Font style. Possible values are (case insensitive):<ul><li>empty string: regular</li><li>B: bold</li><li>I: italic</li><li>U: underline</li><li>D: line-trough</li><li>O: overline</li></ul> or any combination. The default value is regular.
-		 * @param float $fontsize Font size in points. The default value is the current size.
-		 * @param boolean $getarray if true returns an array of characters widths, if false returns the total length.
-		 * @return mixed int total string length or array of characted widths
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 1.2
-		 */
-		public function GetStringWidth($s, $fontname='', $fontstyle='', $fontsize=0, $getarray=false) {
-			return $this->GetArrStringWidth($this->utf8Bidi($this->UTF8StringToArray($s), $s, $this->tmprtl), $fontname, $fontstyle, $fontsize, $getarray);
-		}
-
-		/**
-		 * Returns the string length of an array of chars in user unit or an array of characters widths. A font must be selected.<br>
-		 * @param string $sa The array of chars whose total length is to be computed
-		 * @param string $fontname Family font. It can be either a name defined by AddFont() or one of the standard families. It is also possible to pass an empty string, in that case, the current family is retained.
-		 * @param string $fontstyle Font style. Possible values are (case insensitive):<ul><li>empty string: regular</li><li>B: bold</li><li>I: italic</li><li>U: underline</li><li>D: line trough</li><li>O: overline</li></ul> or any combination. The default value is regular.
-		 * @param float $fontsize Font size in points. The default value is the current size.
-		 * @param boolean $getarray if true returns an array of characters widths, if false returns the total length.
-		 * @return mixed int total string length or array of characted widths
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 2.4.000 (2008-03-06)
-		 */
-		public function GetArrStringWidth($sa, $fontname='', $fontstyle='', $fontsize=0, $getarray=false) {
-			// store current values
-			if (!$this->empty_string($fontname)) {
-				$prev_FontFamily = $this->FontFamily;
-				$prev_FontStyle = $this->FontStyle;
-				$prev_FontSizePt = $this->FontSizePt;
-				$this->SetFont($fontname, $fontstyle, $fontsize);
-			}
-			// convert UTF-8 array to Latin1 if required
-			$sa = $this->UTF8ArrToLatin1($sa);
-			$w = 0; // total width
-			$wa = array(); // array of characters widths
-			foreach ($sa as $char) {
-				// character width
-				$cw = $this->GetCharWidth($char);
-				$wa[] = $cw;
-				$w += $cw;
-			}
-			// restore previous values
-			if (!$this->empty_string($fontname)) {
-				$this->SetFont($prev_FontFamily, $prev_FontStyle, $prev_FontSizePt);
-			}
-			if ($getarray) {
-				return $wa;
-			}
-			return $w;
-		}
-
-		/**
-		 * Returns the length of the char in user unit for the current font.
-		 * @param int $char The char code whose length is to be returned
-		 * @return int char width
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 2.4.000 (2008-03-06)
-		 */
-		public function GetCharWidth($char) {
-			if ($char == 173) {
-				// SHY character will not be printed
-				return (0);
+	/**
+	 * Defines the color used for text. It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.
+	 * @param $col1 (int) GRAY level for single color, or Red color for RGB (0-255), or CYAN color for CMYK (0-100).
+	 * @param $col2 (int) GREEN color for RGB (0-255), or MAGENTA color for CMYK (0-100).
+	 * @param $col3 (int) BLUE color for RGB (0-255), or YELLOW color for CMYK (0-100).
+	 * @param $col4 (int) KEY (BLACK) color for CMYK (0-100).
+	 * @param $ret (boolean) if true do not send the command.
+	 * @param $name (string) spot color name (if any)
+	 * @public
+	 * @since 1.3
+	 * @see SetTextColorArray(), SetDrawColor(), SetFillColor(), Text(), Cell(), MultiCell()
+	 */
+	public function SetTextColor($col1=0, $col2=-1, $col3=-1, $col4=-1, $ret=false, $name='') {
+		// set default values
+		if (!is_numeric($col1)) {
+			$col1 = 0;
+		}
+		if (!is_numeric($col2)) {
+			$col2 = -1;
+		}
+		if (!is_numeric($col3)) {
+			$col3 = -1;
+		}
+		if (!is_numeric($col4)) {
+			$col4 = -1;
+		}
+		//Set color for text
+		if (($col2 == -1) AND ($col3 == -1) AND ($col4 == -1)) {
+			// Grey scale
+			$this->TextColor = sprintf('%.3F g', ($col1 / 255));
+			$this->fgcolor = array('G' => $col1);
+		} elseif ($col4 == -1) {
+			// RGB
+			$this->TextColor = sprintf('%.3F %.3F %.3F rg', ($col1 / 255), ($col2 / 255), ($col3 / 255));
+			$this->fgcolor = array('R' => $col1, 'G' => $col2, 'B' => $col3);
+		} elseif (empty($name)) {
+			// CMYK
+			$this->TextColor = sprintf('%.3F %.3F %.3F %.3F k', ($col1 / 100), ($col2 / 100), ($col3 / 100), ($col4 / 100));
+			$this->fgcolor = array('C' => $col1, 'M' => $col2, 'Y' => $col3, 'K' => $col4);
+		} else {
+			// SPOT COLOR
+			$this->AddSpotColor($name, $col1, $col2, $col3, $col4);
+			$this->TextColor = sprintf('/CS%d cs %.3F scn', $this->spot_colors[$name]['i'], 1);
+			$this->fgcolor = array('C' => $col1, 'M' => $col2, 'Y' => $col3, 'K' => $col4, 'name' => $name);
+		}
+		$this->ColorFlag = ($this->FillColor != $this->TextColor);
+	}
+
+	/**
+	 * Defines the spot color used for text.
+	 * @param $name (string) name of the spot color
+	 * @param $tint (int) the intensity of the color (from 0 to 100 ; 100 = full intensity by default).
+	 * @public
+	 * @since 4.0.024 (2008-09-12)
+	 * @see AddSpotColor(), SetDrawSpotColor(), SetFillSpotColor()
+	 */
+	public function SetTextSpotColor($name, $tint=100) {
+		if (!isset($this->spot_colors[$name])) {
+			$this->Error('Undefined spot color: '.$name);
+		}
+		$this->TextColor = sprintf('/CS%d cs %.3F scn', $this->spot_colors[$name]['i'], ($tint / 100));
+		$this->fgcolor = array('C' => $this->spot_colors[$name]['c'], 'M' => $this->spot_colors[$name]['m'], 'Y' => $this->spot_colors[$name]['y'], 'K' => $this->spot_colors[$name]['k'], 'name' => $name);
+		$this->ColorFlag = ($this->FillColor != $this->TextColor);
+		if ($this->page > 0) {
+			$this->_out($this->TextColor);
+		}
+	}
+
+	/**
+	 * Returns the length of a string in user unit. A font must be selected.<br>
+	 * @param $s (string) The string whose length is to be computed
+	 * @param $fontname (string) Family font. It can be either a name defined by AddFont() or one of the standard families. It is also possible to pass an empty string, in that case, the current family is retained.
+	 * @param $fontstyle (string) Font style. Possible values are (case insensitive):<ul><li>empty string: regular</li><li>B: bold</li><li>I: italic</li><li>U: underline</li><li>D: line-trough</li><li>O: overline</li></ul> or any combination. The default value is regular.
+	 * @param $fontsize (float) Font size in points. The default value is the current size.
+	 * @param $getarray (boolean) if true returns an array of characters widths, if false returns the total length.
+	 * @return mixed int total string length or array of characted widths
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 1.2
+	 */
+	public function GetStringWidth($s, $fontname='', $fontstyle='', $fontsize=0, $getarray=false) {
+		return $this->GetArrStringWidth($this->utf8Bidi($this->UTF8StringToArray($s), $s, $this->tmprtl), $fontname, $fontstyle, $fontsize, $getarray);
+	}
+
+	/**
+	 * Returns the string length of an array of chars in user unit or an array of characters widths. A font must be selected.<br>
+	 * @param $sa (string) The array of chars whose total length is to be computed
+	 * @param $fontname (string) Family font. It can be either a name defined by AddFont() or one of the standard families. It is also possible to pass an empty string, in that case, the current family is retained.
+	 * @param $fontstyle (string) Font style. Possible values are (case insensitive):<ul><li>empty string: regular</li><li>B: bold</li><li>I: italic</li><li>U: underline</li><li>D: line trough</li><li>O: overline</li></ul> or any combination. The default value is regular.
+	 * @param $fontsize (float) Font size in points. The default value is the current size.
+	 * @param $getarray (boolean) if true returns an array of characters widths, if false returns the total length.
+	 * @return mixed int total string length or array of characted widths
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 2.4.000 (2008-03-06)
+	 */
+	public function GetArrStringWidth($sa, $fontname='', $fontstyle='', $fontsize=0, $getarray=false) {
+		// store current values
+		if (!$this->empty_string($fontname)) {
+			$prev_FontFamily = $this->FontFamily;
+			$prev_FontStyle = $this->FontStyle;
+			$prev_FontSizePt = $this->FontSizePt;
+			$this->SetFont($fontname, $fontstyle, $fontsize);
+		}
+		// convert UTF-8 array to Latin1 if required
+		$sa = $this->UTF8ArrToLatin1($sa);
+		$w = 0; // total width
+		$wa = array(); // array of characters widths
+		foreach ($sa as $ck => $char) {
+			// character width
+			$cw = $this->GetCharWidth($char, isset($sa[($ck + 1)]));
+			$wa[] = $cw;
+			$w += $cw;
+		}
+		// restore previous values
+		if (!$this->empty_string($fontname)) {
+			$this->SetFont($prev_FontFamily, $prev_FontStyle, $prev_FontSizePt);
+		}
+		if ($getarray) {
+			return $wa;
+		}
+		return $w;
+	}
+
+	/**
+	 * Returns the length of the char in user unit for the current font considering current stretching and spacing (tracking/kerning).
+	 * @param $char (int) The char code whose length is to be returned
+	 * @param $notlast (boolean) set to false for the latest character on string, true otherwise (default)
+	 * @return float char width
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 2.4.000 (2008-03-06)
+	 */
+	public function GetCharWidth($char, $notlast=true) {
+		// get raw width
+		$chw = $this->getRawCharWidth($char);
+		if (($this->font_spacing != 0) AND $notlast) {
+			// increase/decrease font spacing
+			$chw += $this->font_spacing;
+		}
+		if ($this->font_stretching != 100) {
+			// fixed stretching mode
+			$chw *= ($this->font_stretching / 100);
+		}
+		return $chw;
+	}
+
+	/**
+	 * Returns the length of the char in user unit for the current font.
+	 * @param $char (int) The char code whose length is to be returned
+	 * @return float char width
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.9.000 (2010-09-28)
+	 */
+	public function getRawCharWidth($char) {
+		if ($char == 173) {
+			// SHY character will not be printed
+			return (0);
+		}
+		$cw = &$this->CurrentFont['cw'];
+		if (isset($cw[$char])) {
+			$w = $cw[$char];
+		} elseif (isset($this->CurrentFont['dw'])) {
+			// default width
+			$w = $this->CurrentFont['dw'];
+		} elseif (isset($cw[32])) {
+			// default width
+			$w = $cw[32];
+		} else {
+			$w = 600;
+		}
+		return ($w * $this->FontSize / 1000);
+	}
+
+	/**
+	 * Returns the numbero of characters in a string.
+	 * @param $s (string) The input string.
+	 * @return int number of characters
+	 * @public
+	 * @since 2.0.0001 (2008-01-07)
+	 */
+	public function GetNumChars($s) {
+		if ($this->isUnicodeFont()) {
+			return count($this->UTF8StringToArray($s));
+		}
+		return strlen($s);
+	}
+
+	/**
+	 * Fill the list of available fonts ($this->fontlist).
+	 * @protected
+	 * @since 4.0.013 (2008-07-28)
+	 */
+	protected function getFontsList() {
+		$fontsdir = opendir($this->_getfontpath());
+		while (($file = readdir($fontsdir)) !== false) {
+			if (substr($file, -4) == '.php') {
+				array_push($this->fontlist, strtolower(basename($file, '.php')));
 			}
-			$cw = &$this->CurrentFont['cw'];
-			if (isset($cw[$char])) {
-				$w = $cw[$char];
-			} elseif (isset($this->CurrentFont['dw'])) {
-				// default width
-				$w = $this->CurrentFont['dw'];
-			} elseif (isset($cw[32])) {
-				// default width
-				$w = $cw[32];
+		}
+		closedir($fontsdir);
+	}
+
+	/**
+	 * Imports a TrueType, Type1, core, or CID0 font and makes it available.
+	 * It is necessary to generate a font definition file first (read /fonts/utils/README.TXT).
+	 * The definition file (and the font file itself when embedding) must be present either in the current directory or in the one indicated by K_PATH_FONTS if the constant is defined. If it could not be found, the error "Could not include font definition file" is generated.
+	 * @param $family (string) Font family. The name can be chosen arbitrarily. If it is a standard family name, it will override the corresponding font.
+	 * @param $style (string) Font style. Possible values are (case insensitive):<ul><li>empty string: regular (default)</li><li>B: bold</li><li>I: italic</li><li>BI or IB: bold italic</li></ul>
+	 * @param $fontfile (string) The font definition file. By default, the name is built from the family and style, in lower case with no spaces.
+	 * @return array containing the font data, or false in case of error.
+	 * @param $subset (mixed) if true embedd only a subset of the font (stores only the information related to the used characters); if false embedd full font; if 'default' uses the default value set using setFontSubsetting(). This option is valid only for TrueTypeUnicode fonts. If you want to enable users to change the document, set this parameter to false. If you subset the font, the person who receives your PDF would need to have your same font in order to make changes to your PDF. The file size of the PDF would also be smaller because you are embedding only part of a font.
+	 * @public
+	 * @since 1.5
+	 * @see SetFont(), setFontSubsetting()
+	 */
+	public function AddFont($family, $style='', $fontfile='', $subset='default') {
+		if ($subset === 'default') {
+			$subset = $this->font_subsetting;
+		}
+		if ($this->empty_string($family)) {
+			if (!$this->empty_string($this->FontFamily)) {
+				$family = $this->FontFamily;
 			} else {
-				$w = 600;
-			}
-			return ($w * $this->FontSize / 1000);
-		}
-
-		/**
-		 * Returns the numbero of characters in a string.
-		 * @param string $s The input string.
-		 * @return int number of characters
-		 * @access public
-		 * @since 2.0.0001 (2008-01-07)
-		 */
-		public function GetNumChars($s) {
-			if (($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) {
-				return count($this->UTF8StringToArray($s));
-			}
-			return strlen($s);
-		}
-
-		/**
-		 * Fill the list of available fonts ($this->fontlist).
-		 * @access protected
-		 * @since 4.0.013 (2008-07-28)
-		 */
-		protected function getFontsList() {
-			$fontsdir = opendir($this->_getfontpath());
-			while (($file = readdir($fontsdir)) !== false) {
-				if (substr($file, -4) == '.php') {
-					array_push($this->fontlist, strtolower(basename($file, '.php')));
-				}
-			}
-			closedir($fontsdir);
-		}
-
-		/**
-		 * Imports a TrueType, Type1, core, or CID0 font and makes it available.
-		 * It is necessary to generate a font definition file first (read /fonts/utils/README.TXT).
-		 * The definition file (and the font file itself when embedding) must be present either in the current directory or in the one indicated by K_PATH_FONTS if the constant is defined. If it could not be found, the error "Could not include font definition file" is generated.
-		 * @param string $family Font family. The name can be chosen arbitrarily. If it is a standard family name, it will override the corresponding font.
-		 * @param string $style Font style. Possible values are (case insensitive):<ul><li>empty string: regular (default)</li><li>B: bold</li><li>I: italic</li><li>BI or IB: bold italic</li></ul>
-		 * @param string $fontfile The font definition file. By default, the name is built from the family and style, in lower case with no spaces.
-		 * @return array containing the font data, or false in case of error.
-		 * @param mixed $subset if true embedd only a subset of the font (stores only the information related to the used characters); if false embedd full font; if 'default' uses the default value set using setFontSubsetting(). This option is valid only for TrueTypeUnicode fonts. If you want to enable users to change the document, set this parameter to false. If you subset the font, the person who receives your PDF would need to have your same font in order to make changes to your PDF. The file size of the PDF would also be smaller because you are embedding only part of a font.
-		 * @access public
-		 * @since 1.5
-		 * @see SetFont(), setFontSubsetting()
-		 */
-		public function AddFont($family, $style='', $fontfile='', $subset='default') {
-			if ($subset === 'default') {
-				$subset = $this->font_subsetting;
-			}
-			if ($this->empty_string($family)) {
-				if (!$this->empty_string($this->FontFamily)) {
-					$family = $this->FontFamily;
-				} else {
-					$this->Error('Empty font family');
-				}
-			}
-			$family = strtolower($family);
-			if ((!$this->isunicode) AND ($family == 'arial')) {
-				$family = 'helvetica';
-			}
-			if (($family == 'symbol') OR ($family == 'zapfdingbats')) {
-				$style = '';
+				$this->Error('Empty font family');
 			}
-			$tempstyle = strtoupper($style);
+		}
+		// move embedded styles on $style
+		if (substr($family, -1) == 'I') {
+			$style .= 'I';
+			$family = substr($family, 0, -1);
+		}
+		if (substr($family, -1) == 'B') {
+			$style .= 'B';
+			$family = substr($family, 0, -1);
+		}
+		// normalize family name
+		$family = strtolower($family);
+		if ((!$this->isunicode) AND ($family == 'arial')) {
+			$family = 'helvetica';
+		}
+		if (($family == 'symbol') OR ($family == 'zapfdingbats')) {
 			$style = '';
-			// underline
-			if (strpos($tempstyle, 'U') !== false) {
-				$this->underline = true;
-			} else {
-				$this->underline = false;
+		}
+		$tempstyle = strtoupper($style);
+		$style = '';
+		// underline
+		if (strpos($tempstyle, 'U') !== false) {
+			$this->underline = true;
+		} else {
+			$this->underline = false;
+		}
+		// line-through (deleted)
+		if (strpos($tempstyle, 'D') !== false) {
+			$this->linethrough = true;
+		} else {
+			$this->linethrough = false;
+		}
+		// overline
+		if (strpos($tempstyle, 'O') !== false) {
+			$this->overline = true;
+		} else {
+			$this->overline = false;
+		}
+		// bold
+		if (strpos($tempstyle, 'B') !== false) {
+			$style .= 'B';
+		}
+		// oblique
+		if (strpos($tempstyle, 'I') !== false) {
+			$style .= 'I';
+		}
+		$bistyle = $style;
+		$fontkey = $family.$style;
+		$font_style = $style.($this->underline ? 'U' : '').($this->linethrough ? 'D' : '').($this->overline ? 'O' : '');
+		$fontdata = array('fontkey' => $fontkey, 'family' => $family, 'style' => $font_style);
+		// check if the font has been already added
+		$fb = $this->getFontBuffer($fontkey);
+		if ($fb !== false) {
+			if ($this->inxobj) {
+				// we are inside an XObject template
+				$this->xobjects[$this->xobjid]['fonts'][$fontkey] = $fb['i'];
 			}
-			// line-through (deleted)
-			if (strpos($tempstyle, 'D') !== false) {
-				$this->linethrough = true;
+			return $fontdata;
+		}
+		if (isset($type)) {
+			unset($type);
+		}
+		if (isset($cw)) {
+			unset($cw);
+		}
+		// get specified font directory (if any)
+		$fontdir = false;
+		if (!$this->empty_string($fontfile)) {
+			$fontdir = dirname($fontfile);
+			if ($this->empty_string($fontdir) OR ($fontdir == '.')) {
+				$fontdir = '';
 			} else {
-				$this->linethrough = false;
-			}
-			// overline
-			if (strpos($tempstyle, 'O') !== false) {
-				$this->overline = true;
+				$fontdir .= '/';
+			}
+		}
+		// search and include font file
+		if ($this->empty_string($fontfile) OR (!file_exists($fontfile))) {
+			// build a standard filenames for specified font
+			$fontfile1 = str_replace(' ', '', $family).strtolower($style).'.php';
+			$fontfile2 = str_replace(' ', '', $family).'.php';
+			// search files on various directories
+			if (($fontdir !== false) AND file_exists($fontdir.$fontfile1)) {
+				$fontfile = $fontdir.$fontfile1;
+			} elseif (file_exists($this->_getfontpath().$fontfile1)) {
+				$fontfile = $this->_getfontpath().$fontfile1;
+			} elseif (file_exists($fontfile1)) {
+				$fontfile = $fontfile1;
+			} elseif (($fontdir !== false) AND file_exists($fontdir.$fontfile2)) {
+				$fontfile = $fontdir.$fontfile2;
+			} elseif (file_exists($this->_getfontpath().$fontfile2)) {
+				$fontfile = $this->_getfontpath().$fontfile2;
 			} else {
-				$this->overline = false;
-			}
-			// bold
-			if (strpos($tempstyle, 'B') !== false) {
-				$style .= 'B';
-			}
-			// oblique
-			if (strpos($tempstyle, 'I') !== false) {
-				$style .= 'I';
-			}
-			$bistyle = $style;
-			$fontkey = $family.$style;
-			$font_style = $style.($this->underline ? 'U' : '').($this->linethrough ? 'D' : '').($this->overline ? 'O' : '');
-			$fontdata = array('fontkey' => $fontkey, 'family' => $family, 'style' => $font_style);
-			// check if the font has been already added
-			if ($this->getFontBuffer($fontkey) !== false) {
-				return $fontdata;
+				$fontfile = $fontfile2;
 			}
-			if (isset($type)) {
-				unset($type);
-			}
-			if (isset($cw)) {
-				unset($cw);
-			}
-			// get specified font directory (if any)
-			$fontdir = false;
-			if (!$this->empty_string($fontfile)) {
-				$fontdir = dirname($fontfile);
-				if ($this->empty_string($fontdir) OR ($fontdir == '.')) {
-					$fontdir = '';
-				} else {
-					$fontdir .= '/';
-				}
-			}
-			// search and include font file
-			if ($this->empty_string($fontfile) OR (!file_exists($fontfile))) {
-				// build a standard filenames for specified font
-				$fontfile1 = str_replace(' ', '', $family).strtolower($style).'.php';
-				$fontfile2 = str_replace(' ', '', $family).'.php';
-				// search files on various directories
-				if (($fontdir !== false) AND file_exists($fontdir.$fontfile1)) {
-					$fontfile = $fontdir.$fontfile1;
-				} elseif (file_exists($this->_getfontpath().$fontfile1)) {
-					$fontfile = $this->_getfontpath().$fontfile1;
-				} elseif (file_exists($fontfile1)) {
-					$fontfile = $fontfile1;
-				} elseif (($fontdir !== false) AND file_exists($fontdir.$fontfile2)) {
-					$fontfile = $fontdir.$fontfile2;
-				} elseif (file_exists($this->_getfontpath().$fontfile2)) {
-					$fontfile = $this->_getfontpath().$fontfile2;
-				} else {
-					$fontfile = $fontfile2;
-				}
-			}
-			// include font file
-			if (file_exists($fontfile)) {
-				include($fontfile);
+		}
+		// include font file
+		if (file_exists($fontfile)) {
+			include($fontfile);
+		} else {
+			$this->Error('Could not include font definition file: '.$family.'');
+		}
+		// check font parameters
+		if ((!isset($type)) OR (!isset($cw))) {
+			$this->Error('The font definition file has a bad format: '.$fontfile.'');
+		}
+		// SET default parameters
+		if (!isset($file) OR $this->empty_string($file)) {
+			$file = '';
+		}
+		if (!isset($enc) OR $this->empty_string($enc)) {
+			$enc = '';
+		}
+		if (!isset($cidinfo) OR $this->empty_string($cidinfo)) {
+			$cidinfo = array('Registry'=>'Adobe','Ordering'=>'Identity','Supplement'=>0);
+			$cidinfo['uni2cid'] = array();
+		}
+		if (!isset($ctg) OR $this->empty_string($ctg)) {
+			$ctg = '';
+		}
+		if (!isset($desc) OR $this->empty_string($desc)) {
+			$desc = array();
+		}
+		if (!isset($up) OR $this->empty_string($up)) {
+			$up = -100;
+		}
+		if (!isset($ut) OR $this->empty_string($ut)) {
+			$ut = 50;
+		}
+		if (!isset($cw) OR $this->empty_string($cw)) {
+			$cw = array();
+		}
+		if (!isset($dw) OR $this->empty_string($dw)) {
+			// set default width
+			if (isset($desc['MissingWidth']) AND ($desc['MissingWidth'] > 0)) {
+				$dw = $desc['MissingWidth'];
+			} elseif (isset($cw[32])) {
+				$dw = $cw[32];
 			} else {
-				$this->Error('Could not include font definition file: '.$family.'');
-			}
-			// check font parameters
-			if ((!isset($type)) OR (!isset($cw))) {
-				$this->Error('The font definition file has a bad format: '.$fontfile.'');
-			}
-			// SET default parameters
-			if (!isset($file) OR $this->empty_string($file)) {
-				$file = '';
-			}
-			if (!isset($enc) OR $this->empty_string($enc)) {
-				$enc = '';
-			}
-			if (!isset($cidinfo) OR $this->empty_string($cidinfo)) {
-				$cidinfo = array('Registry'=>'Adobe','Ordering'=>'Identity','Supplement'=>0);
-				$cidinfo['uni2cid'] = array();
-			}
-			if (!isset($ctg) OR $this->empty_string($ctg)) {
-				$ctg = '';
-			}
-			if (!isset($desc) OR $this->empty_string($desc)) {
-				$desc = array();
-			}
-			if (!isset($up) OR $this->empty_string($up)) {
-				$up = -100;
-			}
-			if (!isset($ut) OR $this->empty_string($ut)) {
-				$ut = 50;
-			}
-			if (!isset($cw) OR $this->empty_string($cw)) {
-				$cw = array();
-			}
-			if (!isset($dw) OR $this->empty_string($dw)) {
-				// set default width
-				if (isset($desc['MissingWidth']) AND ($desc['MissingWidth'] > 0)) {
-					$dw = $desc['MissingWidth'];
-				} elseif (isset($cw[32])) {
-					$dw = $cw[32];
+				$dw = 600;
+			}
+		}
+		++$this->numfonts;
+		if ($type == 'cidfont0') {
+			// register CID font (all styles at once)
+			$styles = array('' => '', 'B' => ',Bold', 'I' => ',Italic', 'BI' => ',BoldItalic');
+			$sname = $name.$styles[$bistyle];
+			// artificial bold
+			if (strpos($bistyle, 'B') !== false) {
+				if (isset($desc['StemV'])) {
+					$desc['StemV'] *= 2;
 				} else {
-					$dw = 600;
-				}
-			}
-			++$this->numfonts;
-			if ($type == 'cidfont0') {
-				// register CID font (all styles at once)
-				$styles = array('' => '', 'B' => ',Bold', 'I' => ',Italic', 'BI' => ',BoldItalic');
-				$sname = $name.$styles[$bistyle];
-				// artificial bold
-				if (strpos($bistyle, 'B') !== false) {
-					if (isset($desc['StemV'])) {
-						$desc['StemV'] *= 2;
-					} else {
-						$desc['StemV'] = 120;
-					}
-				}
-				// artificial italic
-				if (strpos($bistyle, 'I') !== false) {
-					if (isset($desc['ItalicAngle'])) {
-						$desc['ItalicAngle'] -= 11;
-					} else {
-						$desc['ItalicAngle'] = -11;
-					}
-				}
-			} elseif ($type == 'core') {
-				$name = $this->CoreFonts[$fontkey];
-				$subset = false;
-			} elseif (($type == 'TrueType') OR ($type == 'Type1')) {
-				$subset = false;
-			} elseif ($type == 'TrueTypeUnicode') {
-				$enc = 'Identity-H';
-			} else {
-				$this->Error('Unknow font type: '.$type.'');
-			}
-			// initialize subsetchars to contain default ASCII values (0-255)
-			$subsetchars = array_fill(0, 256, true);
-			$this->setFontBuffer($fontkey, array('fontkey' => $fontkey, 'i' => $this->numfonts, 'type' => $type, 'name' => $name, 'desc' => $desc, 'up' => $up, 'ut' => $ut, 'cw' => $cw, 'dw' => $dw, 'enc' => $enc, 'cidinfo' => $cidinfo, 'file' => $file, 'ctg' => $ctg, 'subset' => $subset, 'subsetchars' => $subsetchars));
-			if (isset($diff) AND (!empty($diff))) {
-				//Search existing encodings
-				$d = 0;
-				$nb = count($this->diffs);
-				for ($i=1; $i <= $nb; ++$i) {
-					if ($this->diffs[$i] == $diff) {
-						$d = $i;
-						break;
-					}
+					$desc['StemV'] = 120;
 				}
-				if ($d == 0) {
-					$d = $nb + 1;
-					$this->diffs[$d] = $diff;
-				}
-				$this->setFontSubBuffer($fontkey, 'diff', $d);
 			}
-			if (!$this->empty_string($file)) {
-				if (!isset($this->FontFiles[$file])) {
-					if ((strcasecmp($type,'TrueType') == 0) OR (strcasecmp($type, 'TrueTypeUnicode') == 0)) {
-						$this->FontFiles[$file] = array('length1' => $originalsize, 'fontdir' => $fontdir, 'subset' => $subset, 'fontkeys' => array($fontkey));
-					} elseif ($type != 'core') {
-						$this->FontFiles[$file] = array('length1' => $size1, 'length2' => $size2, 'fontdir' => $fontdir, 'subset' => $subset, 'fontkeys' => array($fontkey));
-					}
+			// artificial italic
+			if (strpos($bistyle, 'I') !== false) {
+				if (isset($desc['ItalicAngle'])) {
+					$desc['ItalicAngle'] -= 11;
 				} else {
-					// update fontkeys that are sharing this font file
-					$this->FontFiles[$file]['subset'] = ($this->FontFiles[$file]['subset'] AND $subset);
-					if (!in_array($fontkey, $this->FontFiles[$file]['fontkeys'])) {
-						$this->FontFiles[$file]['fontkeys'][] = $fontkey;
-					}
-				}
-			}
-			return $fontdata;
-		}
-
-		/**
-		 * Sets the font used to print character strings.
-		 * The font can be either a standard one or a font added via the AddFont() method. Standard fonts use Windows encoding cp1252 (Western Europe).
-		 * The method can be called before the first page is created and the font is retained from page to page.
-		 * If you just wish to change the current font size, it is simpler to call SetFontSize().
-		 * Note: for the standard fonts, the font metric files must be accessible. There are three possibilities for this:<ul><li>They are in the current directory (the one where the running script lies)</li><li>They are in one of the directories defined by the include_path parameter</li><li>They are in the directory defined by the K_PATH_FONTS constant</li></ul><br />
-		 * @param string $family Family font. It can be either a name defined by AddFont() or one of the standard Type1 families (case insensitive):<ul><li>times (Times-Roman)</li><li>timesb (Times-Bold)</li><li>timesi (Times-Italic)</li><li>timesbi (Times-BoldItalic)</li><li>helvetica (Helvetica)</li><li>helveticab (Helvetica-Bold)</li><li>helveticai (Helvetica-Oblique)</li><li>helveticabi (Helvetica-BoldOblique)</li><li>courier (Courier)</li><li>courierb (Courier-Bold)</li><li>courieri (Courier-Oblique)</li><li>courierbi (Courier-BoldOblique)</li><li>symbol (Symbol)</li><li>zapfdingbats (ZapfDingbats)</li></ul> It is also possible to pass an empty string. In that case, the current family is retained.
-		 * @param string $style Font style. Possible values are (case insensitive):<ul><li>empty string: regular</li><li>B: bold</li><li>I: italic</li><li>U: underline</li><li>D: line trough</li><li>O: overline</li></ul> or any combination. The default value is regular. Bold and italic styles do not apply to Symbol and ZapfDingbats basic fonts or other fonts when not defined.
-		 * @param float $size Font size in points. The default value is the current size. If no size has been specified since the beginning of the document, the value taken is 12
-		 * @param string $fontfile The font definition file. By default, the name is built from the family and style, in lower case with no spaces.
-		 * @param mixed $subset if true embedd only a subset of the font (stores only the information related to the used characters); if false embedd full font; if 'default' uses the default value set using setFontSubsetting(). This option is valid only for TrueTypeUnicode fonts. If you want to enable users to change the document, set this parameter to false. If you subset the font, the person who receives your PDF would need to have your same font in order to make changes to your PDF. The file size of the PDF would also be smaller because you are embedding only part of a font.
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 1.0
-		 * @see AddFont(), SetFontSize()
-		 */
-		public function SetFont($family, $style='', $size=0, $fontfile='', $subset='default') {
-			//Select a font; size given in points
-			if ($size == 0) {
-				$size = $this->FontSizePt;
-			}
-			// try to add font (if not already added)
-			$fontdata = $this->AddFont($family, $style, $fontfile, $subset);
-			$this->FontFamily = $fontdata['family'];
-			$this->FontStyle = $fontdata['style'];
-			$this->CurrentFont = $this->getFontBuffer($fontdata['fontkey']);
-			$this->SetFontSize($size);
-		}
-
-		/**
-		 * Defines the size of the current font.
-		 * @param float $size The size (in points)
-		 * @param boolean $out if true output the font size command, otherwise only set the font properties.
-		 * @access public
-		 * @since 1.0
-		 * @see SetFont()
-		 */
-		public function SetFontSize($size, $out=true) {
-			//Set font size in points
-			$this->FontSizePt = $size;
-			$this->FontSize = $size / $this->k;
-			if (isset($this->CurrentFont['desc']['Ascent']) AND ($this->CurrentFont['desc']['Ascent'] > 0)) {
-				$this->FontAscent = $this->CurrentFont['desc']['Ascent'] * $this->FontSize / 1000;
-			} else {
-				$this->FontAscent = 0.85 * $this->FontSize;
-			}
-			if (isset($this->CurrentFont['desc']['Descent']) AND ($this->CurrentFont['desc']['Descent'] <= 0)) {
-				$this->FontDescent = - $this->CurrentFont['desc']['Descent'] * $this->FontSize / 1000;
-			} else {
-				$this->FontDescent = 0.15 * $this->FontSize;
-			}
-			if ($out AND ($this->page > 0) AND (isset($this->CurrentFont['i']))) {
-				$this->_out(sprintf('BT /F%d %.2F Tf ET', $this->CurrentFont['i'], $this->FontSizePt));
-			}
-		}
-
-		/**
-		 * Return the font descent value
-		 * @param string $font font name
-		 * @param string $style font style
-		 * @param float $size The size (in points)
-		 * @return int font descent
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 4.9.003 (2010-03-30)
-		 */
-		public function getFontDescent($font, $style='', $size=0) {
-			//Set font size in points
-			$sizek = $size / $this->k;
-			$fontdata = $this->AddFont($font, $style);
-			$fontinfo = $this->getFontBuffer($fontdata['fontkey']);
-			if (isset($fontinfo['desc']['Descent']) AND ($fontinfo['desc']['Descent'] <= 0)) {
-				$descent = - $fontinfo['desc']['Descent'] * $sizek / 1000;
-			} else {
-				$descent = 0.15 * $sizek;
-			}
-			return $descent;
-		}
-
-		/**
-		 * Return the font ascent value
-		 * @param string $font font name
-		 * @param string $style font style
-		 * @param float $size The size (in points)
-		 * @return int font ascent
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 4.9.003 (2010-03-30)
-		 */
-		public function getFontAscent($font, $style='', $size=0) {
-			//Set font size in points
-			$sizek = $size / $this->k;
-			$fontdata = $this->AddFont($font, $style);
-			$fontinfo = $this->getFontBuffer($fontdata['fontkey']);
-			if (isset($fontinfo['desc']['Ascent']) AND ($fontinfo['desc']['Ascent'] > 0)) {
-				$ascent = $fontinfo['desc']['Ascent'] * $sizek / 1000;
-			} else {
-				$ascent = 0.85 * $sizek;
-			}
-			return $ascent;
-		}
-
-		/**
-		 * Defines the default monospaced font.
-		 * @param string $font Font name.
-		 * @access public
-		 * @since 4.5.025
-		 */
-		public function SetDefaultMonospacedFont($font) {
-			$this->default_monospaced_font = $font;
-		}
-
-		/**
-		 * Creates a new internal link and returns its identifier. An internal link is a clickable area which directs to another place within the document.<br />
-		 * The identifier can then be passed to Cell(), Write(), Image() or Link(). The destination is defined with SetLink().
-		 * @access public
-		 * @since 1.5
-		 * @see Cell(), Write(), Image(), Link(), SetLink()
-		 */
-		public function AddLink() {
-			//Create a new internal link
-			$n = count($this->links) + 1;
-			$this->links[$n] = array(0, 0);
-			return $n;
-		}
-
-		/**
-		 * Defines the page and position a link points to.
-		 * @param int $link The link identifier returned by AddLink()
-		 * @param float $y Ordinate of target position; -1 indicates the current position. The default value is 0 (top of page)
-		 * @param int $page Number of target page; -1 indicates the current page. This is the default value
-		 * @access public
-		 * @since 1.5
-		 * @see AddLink()
-		 */
-		public function SetLink($link, $y=0, $page=-1) {
-			if ($y == -1) {
-				$y = $this->y;
-			}
-			if ($page == -1) {
-				$page = $this->page;
-			}
-			$this->links[$link] = array($page, $y);
-		}
-
-		/**
-		 * Puts a link on a rectangular area of the page.
-		 * Text or image links are generally put via Cell(), Write() or Image(), but this method can be useful for instance to define a clickable area inside an image.
-		 * @param float $x Abscissa of the upper-left corner of the rectangle
-		 * @param float $y Ordinate of the upper-left corner of the rectangle
-		 * @param float $w Width of the rectangle
-		 * @param float $h Height of the rectangle
-		 * @param mixed $link URL or identifier returned by AddLink()
-		 * @param int $spaces number of spaces on the text to link
-		 * @access public
-		 * @since 1.5
-		 * @see AddLink(), Annotation(), Cell(), Write(), Image()
-		 */
-		public function Link($x, $y, $w, $h, $link, $spaces=0) {
-			$this->Annotation($x, $y, $w, $h, $link, array('Subtype'=>'Link'), $spaces);
-		}
-
-		/**
-		 * Puts a markup annotation on a rectangular area of the page.
-		 * !!!!THE ANNOTATION SUPPORT IS NOT YET FULLY IMPLEMENTED !!!!
-		 * @param float $x Abscissa of the upper-left corner of the rectangle
-		 * @param float $y Ordinate of the upper-left corner of the rectangle
-		 * @param float $w Width of the rectangle
-		 * @param float $h Height of the rectangle
-		 * @param string $text annotation text or alternate content
-		 * @param array $opt array of options (see section 8.4 of PDF reference 1.7).
-		 * @param int $spaces number of spaces on the text to link
-		 * @access public
-		 * @since 4.0.018 (2008-08-06)
-		 */
-		public function Annotation($x, $y, $w, $h, $text, $opt=array('Subtype'=>'Text'), $spaces=0) {
-			if ($x === '') {
-				$x = $this->x;
-			}
-			if ($y === '') {
-				$y = $this->y;
-			}
-			// recalculate coordinates to account for graphic transformations
-			if (isset($this->transfmatrix)) {
-				for ($i=$this->transfmatrix_key; $i > 0; --$i) {
-					$maxid = count($this->transfmatrix[$i]) - 1;
-					for ($j=$maxid; $j >= 0; --$j) {
-						$ctm = $this->transfmatrix[$i][$j];
-						if (isset($ctm['a'])) {
-							$x = $x * $this->k;
-							$y = ($this->h - $y) * $this->k;
-							$w = $w * $this->k;
-							$h = $h * $this->k;
-							// top left
-							$xt = $x;
-							$yt = $y;
-							$x1 = ($ctm['a'] * $xt) + ($ctm['c'] * $yt) + $ctm['e'];
-							$y1 = ($ctm['b'] * $xt) + ($ctm['d'] * $yt) + $ctm['f'];
-							// top right
-							$xt = $x + $w;
-							$yt = $y;
-							$x2 = ($ctm['a'] * $xt) + ($ctm['c'] * $yt) + $ctm['e'];
-							$y2 = ($ctm['b'] * $xt) + ($ctm['d'] * $yt) + $ctm['f'];
-							// bottom left
-							$xt = $x;
-							$yt = $y - $h;
-							$x3 = ($ctm['a'] * $xt) + ($ctm['c'] * $yt) + $ctm['e'];
-							$y3 = ($ctm['b'] * $xt) + ($ctm['d'] * $yt) + $ctm['f'];
-							// bottom right
-							$xt = $x + $w;
-							$yt = $y - $h;
-							$x4 = ($ctm['a'] * $xt) + ($ctm['c'] * $yt) + $ctm['e'];
-							$y4 = ($ctm['b'] * $xt) + ($ctm['d'] * $yt) + $ctm['f'];
-							// new coordinates (rectangle area)
-							$x = min($x1, $x2, $x3, $x4);
-							$y = max($y1, $y2, $y3, $y4);
-							$w = (max($x1, $x2, $x3, $x4) - $x) / $this->k;
-							$h = ($y - min($y1, $y2, $y3, $y4)) / $this->k;
-							$x = $x / $this->k;
-							$y = $this->h - ($y / $this->k);
-						}
-					}
-				}
-			}
-			if ($this->page <= 0) {
-				$page = 1;
-			} else {
-				$page = $this->page;
-			}
-			if (!isset($this->PageAnnots[$page])) {
-				$this->PageAnnots[$page] = array();
-			}
-			$this->PageAnnots[$page][] = array('x' => $x, 'y' => $y, 'w' => $w, 'h' => $h, 'txt' => $text, 'opt' => $opt, 'numspaces' => $spaces);
-			if ((($opt['Subtype'] == 'FileAttachment') OR ($opt['Subtype'] == 'Sound')) AND (!$this->empty_string($opt['FS'])) AND file_exists($opt['FS']) AND (!isset($this->embeddedfiles[basename($opt['FS'])]))) {
-				$this->embeddedfiles[basename($opt['FS'])] = array('file' => $opt['FS'], 'n' => (count($this->embeddedfiles) + $this->embedded_start_obj_id));
-			}
-			// Add widgets annotation's icons
-			if (isset($opt['mk']['i']) AND file_exists($opt['mk']['i'])) {
-				$this->Image($opt['mk']['i'], '', '', 10, 10, '', '', '', false, 300, '', false, false, 0, false, true);
-			}
-			if (isset($opt['mk']['ri']) AND file_exists($opt['mk']['ri'])) {
-				$this->Image($opt['mk']['ri'], '', '', 0, 0, '', '', '', false, 300, '', false, false, 0, false, true);
+					$desc['ItalicAngle'] = -11;
+				}
+			}
+		} elseif ($type == 'core') {
+			$name = $this->CoreFonts[$fontkey];
+			$subset = false;
+		} elseif (($type == 'TrueType') OR ($type == 'Type1')) {
+			$subset = false;
+		} elseif ($type == 'TrueTypeUnicode') {
+			$enc = 'Identity-H';
+		} else {
+			$this->Error('Unknow font type: '.$type.'');
+		}
+		// initialize subsetchars to contain default ASCII values (0-255)
+		$subsetchars = array_fill(0, 256, true);
+		$this->setFontBuffer($fontkey, array('fontkey' => $fontkey, 'i' => $this->numfonts, 'type' => $type, 'name' => $name, 'desc' => $desc, 'up' => $up, 'ut' => $ut, 'cw' => $cw, 'dw' => $dw, 'enc' => $enc, 'cidinfo' => $cidinfo, 'file' => $file, 'ctg' => $ctg, 'subset' => $subset, 'subsetchars' => $subsetchars));
+		if ($this->inxobj) {
+			// we are inside an XObject template
+			$this->xobjects[$this->xobjid]['fonts'][$fontkey] = $this->numfonts;
+		}
+		if (isset($diff) AND (!empty($diff))) {
+			//Search existing encodings
+			$d = 0;
+			$nb = count($this->diffs);
+			for ($i=1; $i <= $nb; ++$i) {
+				if ($this->diffs[$i] == $diff) {
+					$d = $i;
+					break;
+				}
 			}
-			if (isset($opt['mk']['ix']) AND file_exists($opt['mk']['ix'])) {
-				$this->Image($opt['mk']['ix'], '', '', 0, 0, '', '', '', false, 300, '', false, false, 0, false, true);
+			if ($d == 0) {
+				$d = $nb + 1;
+				$this->diffs[$d] = $diff;
 			}
-			++$this->annot_obj_id;
+			$this->setFontSubBuffer($fontkey, 'diff', $d);
 		}
-
-		/**
-		 * Embedd the attached files.
-		 * @since 4.4.000 (2008-12-07)
-		 * @access protected
-		 * @see Annotation()
-		 */
-		protected function _putEmbeddedFiles() {
-			reset($this->embeddedfiles);
-			foreach ($this->embeddedfiles as $filename => $filedata) {
-				$data = file_get_contents($filedata['file']);
-				$filter = '';
-				if ($this->compress) {
-					$data = gzcompress($data);
-					$filter = ' /Filter /FlateDecode';
+		if (!$this->empty_string($file)) {
+			if (!isset($this->FontFiles[$file])) {
+				if ((strcasecmp($type,'TrueType') == 0) OR (strcasecmp($type, 'TrueTypeUnicode') == 0)) {
+					$this->FontFiles[$file] = array('length1' => $originalsize, 'fontdir' => $fontdir, 'subset' => $subset, 'fontkeys' => array($fontkey));
+				} elseif ($type != 'core') {
+					$this->FontFiles[$file] = array('length1' => $size1, 'length2' => $size2, 'fontdir' => $fontdir, 'subset' => $subset, 'fontkeys' => array($fontkey));
+				}
+			} else {
+				// update fontkeys that are sharing this font file
+				$this->FontFiles[$file]['subset'] = ($this->FontFiles[$file]['subset'] AND $subset);
+				if (!in_array($fontkey, $this->FontFiles[$file]['fontkeys'])) {
+					$this->FontFiles[$file]['fontkeys'][] = $fontkey;
 				}
-				$this->offsets[$filedata['n']] = $this->bufferlen;
-				$out = $filedata['n'].' 0 obj'."\n";
-				$stream = $this->_getrawstream($data, $filedata['n']);
-				$out .= '<< /Type /EmbeddedFile'.$filter.' /Length '.strlen($stream).' >>';
-				$out .= ' stream'."\n".$stream."\n".'endstream';
-				$out .= "\n".'endobj';
-				$this->_out($out);
 			}
 		}
+		return $fontdata;
+	}
 
-		/**
-		 * Prints a text cell at the specified position.
-		 * The origin is on the left of the first charcter, on the baseline.
-		 * This method allows to place a string precisely on the page.
-		 * @param float $x Abscissa of the cell origin
-		 * @param float $y Ordinate of the cell origin
-		 * @param string $txt String to print
-		 * @param int $fstroke outline size in user units (false = disable)
-		 * @param boolean $fclip if true activate clipping mode (you must call StartTransform() before this function and StopTransform() to stop the clipping tranformation).
-		 * @param boolean $ffill if true fills the text
-		 * @param mixed $border Indicates if borders must be drawn around the cell. The value can be either a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul>or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul>
-		 * @param int $ln Indicates where the current position should go after the call. Possible values are:<ul><li>0: to the right (or left for RTL languages)</li><li>1: to the beginning of the next line</li><li>2: below</li></ul>Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
-		 * @param string $align Allows to center or align the text. Possible values are:<ul><li>L or empty string: left align (default value)</li><li>C: center</li><li>R: right align</li><li>J: justify</li></ul>
-		 * @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0.
-		 * @param mixed $link URL or identifier returned by AddLink().
-		 * @param int $stretch stretch carachter mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if necessary</li><li>2 = forced horizontal scaling</li><li>3 = character spacing only if necessary</li><li>4 = forced character spacing</li></ul>
-		 * @param boolean $ignore_min_height if true ignore automatic minimum height value.
-		 * @param string $calign cell vertical alignment relative to the specified Y value. Possible values are:<ul><li>T : cell top</li><li>A : font top</li><li>L : font baseline</li><li>D : font bottom</li><li>B : cell bottom</li></ul>
-		 * @param string $valign text vertical alignment inside the cell. Possible values are:<ul><li>T : top</li><li>C : center</li><li>B : bottom</li></ul>
-		 * @param boolean $rtloff if true uses the page top-left corner as origin of axis for $x and $y initial position.
-		 * @access public
-		 * @since 1.0
-		 * @see Cell(), Write(), MultiCell(), WriteHTML(), WriteHTMLCell()
-		 */
-		public function Text($x, $y, $txt, $fstroke=false, $fclip=false, $ffill=true, $border=0, $ln=0, $align='', $fill=0, $link='', $stretch=0, $ignore_min_height=false, $calign='T', $valign='M', $rtloff=false) {
-			$textrendermode = $this->textrendermode;
-			$textstrokewidth = $this->textstrokewidth;
-			$this->setTextRenderingMode($fstroke, $ffill, $fclip);
-			$this->SetXY($x, $y, $rtloff);
-			$this->Cell(0, 0, $txt, $border, $ln, $align, $fill, $link, $stretch, $ignore_min_height, $calign, $valign);
-			// restore previous rendering mode
-			$this->textrendermode = $textrendermode;
-			$this->textstrokewidth = $textstrokewidth;
-		}
-
-		/**
-		 * Whenever a page break condition is met, the method is called, and the break is issued or not depending on the returned value.
-		 * The default implementation returns a value according to the mode selected by SetAutoPageBreak().<br />
-		 * This method is called automatically and should not be called directly by the application.
-		 * @return boolean
-		 * @access public
-		 * @since 1.4
-		 * @see SetAutoPageBreak()
-		 */
-		public function AcceptPageBreak() {
-			if ($this->num_columns > 1) {
-				// multi column mode
-				if($this->current_column < ($this->num_columns - 1)) {
-					// go to next column
-					$this->selectColumn($this->current_column + 1);
-				} else {
-					// add a new page
-					$this->AddPage();
-					// set first column
-					$this->selectColumn(0);
-				}
-				// avoid page breaking from checkPageBreak()
-				return false;
-			}
-			return $this->AutoPageBreak;
+	/**
+	 * Sets the font used to print character strings.
+	 * The font can be either a standard one or a font added via the AddFont() method. Standard fonts use Windows encoding cp1252 (Western Europe).
+	 * The method can be called before the first page is created and the font is retained from page to page.
+	 * If you just wish to change the current font size, it is simpler to call SetFontSize().
+	 * Note: for the standard fonts, the font metric files must be accessible. There are three possibilities for this:<ul><li>They are in the current directory (the one where the running script lies)</li><li>They are in one of the directories defined by the include_path parameter</li><li>They are in the directory defined by the K_PATH_FONTS constant</li></ul><br />
+	 * @param $family (string) Family font. It can be either a name defined by AddFont() or one of the standard Type1 families (case insensitive):<ul><li>times (Times-Roman)</li><li>timesb (Times-Bold)</li><li>timesi (Times-Italic)</li><li>timesbi (Times-BoldItalic)</li><li>helvetica (Helvetica)</li><li>helveticab (Helvetica-Bold)</li><li>helveticai (Helvetica-Oblique)</li><li>helveticabi (Helvetica-BoldOblique)</li><li>courier (Courier)</li><li>courierb (Courier-Bold)</li><li>courieri (Courier-Oblique)</li><li>courierbi (Courier-BoldOblique)</li><li>symbol (Symbol)</li><li>zapfdingbats (ZapfDingbats)</li></ul> It is also possible to pass an empty string. In that case, the current family is retained.
+	 * @param $style (string) Font style. Possible values are (case insensitive):<ul><li>empty string: regular</li><li>B: bold</li><li>I: italic</li><li>U: underline</li><li>D: line trough</li><li>O: overline</li></ul> or any combination. The default value is regular. Bold and italic styles do not apply to Symbol and ZapfDingbats basic fonts or other fonts when not defined.
+	 * @param $size (float) Font size in points. The default value is the current size. If no size has been specified since the beginning of the document, the value taken is 12
+	 * @param $fontfile (string) The font definition file. By default, the name is built from the family and style, in lower case with no spaces.
+	 * @param $subset (mixed) if true embedd only a subset of the font (stores only the information related to the used characters); if false embedd full font; if 'default' uses the default value set using setFontSubsetting(). This option is valid only for TrueTypeUnicode fonts. If you want to enable users to change the document, set this parameter to false. If you subset the font, the person who receives your PDF would need to have your same font in order to make changes to your PDF. The file size of the PDF would also be smaller because you are embedding only part of a font.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 1.0
+	 * @see AddFont(), SetFontSize()
+	 */
+	public function SetFont($family, $style='', $size=0, $fontfile='', $subset='default') {
+		//Select a font; size given in points
+		if ($size == 0) {
+			$size = $this->FontSizePt;
+		}
+		// try to add font (if not already added)
+		$fontdata = $this->AddFont($family, $style, $fontfile, $subset);
+		$this->FontFamily = $fontdata['family'];
+		$this->FontStyle = $fontdata['style'];
+		$this->CurrentFont = $this->getFontBuffer($fontdata['fontkey']);
+		$this->SetFontSize($size);
+	}
+
+	/**
+	 * Defines the size of the current font.
+	 * @param $size (float) The size (in points)
+	 * @param $out (boolean) if true output the font size command, otherwise only set the font properties.
+	 * @public
+	 * @since 1.0
+	 * @see SetFont()
+	 */
+	public function SetFontSize($size, $out=true) {
+		// font size in points
+		$this->FontSizePt = $size;
+		// font size in user units
+		$this->FontSize = $size / $this->k;
+		// calculate some font metrics
+		if (isset($this->CurrentFont['desc']['FontBBox'])) {
+			$bbox = explode(' ', substr($this->CurrentFont['desc']['FontBBox'], 1, -1));
+			$font_height = ((intval($bbox[3]) - intval($bbox[1])) * $size / 1000);
+		} else {
+			$font_height = $size * 1.219;
+		}
+		if (isset($this->CurrentFont['desc']['Ascent']) AND ($this->CurrentFont['desc']['Ascent'] > 0)) {
+			$font_ascent = ($this->CurrentFont['desc']['Ascent'] * $size / 1000);
+		}
+		if (isset($this->CurrentFont['desc']['Descent']) AND ($this->CurrentFont['desc']['Descent'] <= 0)) {
+			$font_descent = (- $this->CurrentFont['desc']['Descent'] * $size / 1000);
+		}
+		if (!isset($font_ascent) AND !isset($font_descent)) {
+			// core font
+			$font_ascent = 0.76 * $font_height;
+			$font_descent = $font_height - $font_ascent;
+		} elseif (!isset($font_descent)) {
+			$font_descent = $font_height - $font_ascent;
+		} elseif (!isset($font_ascent)) {
+			$font_ascent = $font_height - $font_descent;
+		}
+		$this->FontAscent = $font_ascent / $this->k;
+		$this->FontDescent = $font_descent / $this->k;
+		if ($out AND ($this->page > 0) AND (isset($this->CurrentFont['i']))) {
+			$this->_out(sprintf('BT /F%d %.2F Tf ET', $this->CurrentFont['i'], $this->FontSizePt));
+		}
+	}
+
+	/**
+	 * Return the font descent value
+	 * @param $font (string) font name
+	 * @param $style (string) font style
+	 * @param $size (float) The size (in points)
+	 * @return int font descent
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 4.9.003 (2010-03-30)
+	 */
+	public function getFontDescent($font, $style='', $size=0) {
+		$fontdata = $this->AddFont($font, $style);
+		$fontinfo = $this->getFontBuffer($fontdata['fontkey']);
+		if (isset($fontinfo['desc']['Descent']) AND ($fontinfo['desc']['Descent'] <= 0)) {
+			$descent = (- $fontinfo['desc']['Descent'] * $size / 1000);
+		} else {
+			$descent = 1.219 * 0.24 * $size;
 		}
+		return ($descent / $this->k);
+	}
 
-		/**
-		 * Add page if needed.
-		 * @param float $h Cell height. Default value: 0.
-		 * @param mixed $y starting y position, leave empty for current position.
-		 * @param boolean $addpage if true add a page, otherwise only return the true/false state
-		 * @return boolean true in case of page break, false otherwise.
-		 * @since 3.2.000 (2008-07-01)
-		 * @access protected
-		 */
-		protected function checkPageBreak($h=0, $y='', $addpage=true) {
-			if ($this->empty_string($y)) {
-				$y = $this->y;
-			}
-			$current_page = $this->page;
-			if ((($y + $h) > $this->PageBreakTrigger) AND (!$this->InFooter) AND ($this->AcceptPageBreak())) {
-				if ($addpage) {
-					//Automatic page break
-					$x = $this->x;
-					$this->AddPage($this->CurOrientation);
-					$this->y = $this->tMargin;
-					$oldpage = $this->page - 1;
-					if ($this->rtl) {
-						if ($this->pagedim[$this->page]['orm'] != $this->pagedim[$oldpage]['orm']) {
-							$this->x = $x - ($this->pagedim[$this->page]['orm'] - $this->pagedim[$oldpage]['orm']);
-						} else {
-							$this->x = $x;
-						}
-					} else {
-						if ($this->pagedim[$this->page]['olm'] != $this->pagedim[$oldpage]['olm']) {
-							$this->x = $x + ($this->pagedim[$this->page]['olm'] - $this->pagedim[$oldpage]['olm']);
-						} else {
-							$this->x = $x;
-						}
-					}
-				}
-				$this->newline = true;
-				return true;
-			}
-			if ($current_page != $this->page) {
-				// account for columns mode
-				$this->newline = true;
-				return true;
-			}
-			return false;
+	/**
+	 * Return the font ascent value
+	 * @param $font (string) font name
+	 * @param $style (string) font style
+	 * @param $size (float) The size (in points)
+	 * @return int font ascent
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 4.9.003 (2010-03-30)
+	 */
+	public function getFontAscent($font, $style='', $size=0) {
+		$fontdata = $this->AddFont($font, $style);
+		$fontinfo = $this->getFontBuffer($fontdata['fontkey']);
+		if (isset($fontinfo['desc']['Ascent']) AND ($fontinfo['desc']['Ascent'] > 0)) {
+			$ascent = ($fontinfo['desc']['Ascent'] * $size / 1000);
+		} else {
+			$ascent = 1.219 * 0.76 * $size;
 		}
+		return ($ascent / $this->k);
+	}
 
-		/**
-		 * Removes SHY characters from text.
-		 * Unicode Data:<ul>
-		 * <li>Name : SOFT HYPHEN, commonly abbreviated as SHY</li>
-		 * <li>HTML Entity (decimal): &amp;#173;</li>
-		 * <li>HTML Entity (hex): &amp;#xad;</li>
-		 * <li>HTML Entity (named): &amp;shy;</li>
-		 * <li>How to type in Microsoft Windows: [Alt +00AD] or [Alt 0173]</li>
-		 * <li>UTF-8 (hex): 0xC2 0xAD (c2ad)</li>
-		 * <li>UTF-8 character: chr(194).chr(173)</li>
-		 * </ul>
-		 * @param string $txt input string
-		 * @return string without SHY characters.
-		 * @access public
-		 * @since (4.5.019) 2009-02-28
-		 */
-		public function removeSHY($txt='') {
-			$txt = preg_replace('/([\\xc2]{1}[\\xad]{1})/', '', $txt);
-			if (!$this->isunicode) {
-				$txt = preg_replace('/([\\xad]{1})/', '', $txt);
-			}
-			return $txt;
-		}
-
-		/**
-		 * Prints a cell (rectangular area) with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.<br />
-		 * If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.
-		 * @param float $w Cell width. If 0, the cell extends up to the right margin.
-		 * @param float $h Cell height. Default value: 0.
-		 * @param string $txt String to print. Default value: empty string.
-		 * @param mixed $border Indicates if borders must be drawn around the cell. The value can be either a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul>or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul>
-		 * @param int $ln Indicates where the current position should go after the call. Possible values are:<ul><li>0: to the right (or left for RTL languages)</li><li>1: to the beginning of the next line</li><li>2: below</li></ul> Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
-		 * @param string $align Allows to center or align the text. Possible values are:<ul><li>L or empty string: left align (default value)</li><li>C: center</li><li>R: right align</li><li>J: justify</li></ul>
-		 * @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0.
-		 * @param mixed $link URL or identifier returned by AddLink().
-		 * @param int $stretch stretch carachter mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if necessary</li><li>2 = forced horizontal scaling</li><li>3 = character spacing only if necessary</li><li>4 = forced character spacing</li></ul>
-		 * @param boolean $ignore_min_height if true ignore automatic minimum height value.
-		 * @param string $calign cell vertical alignment relative to the specified Y value. Possible values are:<ul><li>T : cell top</li><li>C : center</li><li>B : cell bottom</li><li>A : font top</li><li>L : font baseline</li><li>D : font bottom</li></ul>
-		 * @param string $valign text vertical alignment inside the cell. Possible values are:<ul><li>T : top</li><li>C : center</li><li>B : bottom</li></ul>
-		 * @access public
-		 * @since 1.0
-		 * @see SetFont(), SetDrawColor(), SetFillColor(), SetTextColor(), SetLineWidth(), AddLink(), Ln(), MultiCell(), Write(), SetAutoPageBreak()
-		 */
-		public function Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=0, $link='', $stretch=0, $ignore_min_height=false, $calign='T', $valign='M') {
-			if (!$ignore_min_height) {
-				$min_cell_height = $this->FontSize * $this->cell_height_ratio;
-				if ($h < $min_cell_height) {
-					$h = $min_cell_height;
-				}
-			}
-			$this->checkPageBreak($h);
-			$this->_out($this->getCellCode($w, $h, $txt, $border, $ln, $align, $fill, $link, $stretch, $ignore_min_height, $calign, $valign));
-		}
-
-		/**
-		 * Returns the PDF string code to print a cell (rectangular area) with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.<br />
-		 * If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.
-		 * @param float $w Cell width. If 0, the cell extends up to the right margin.
-		 * @param float $h Cell height. Default value: 0.
-		 * @param string $txt String to print. Default value: empty string.
-		 * @param mixed $border Indicates if borders must be drawn around the cell. The value can be either a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul>or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul>
-		 * @param int $ln Indicates where the current position should go after the call. Possible values are:<ul><li>0: to the right (or left for RTL languages)</li><li>1: to the beginning of the next line</li><li>2: below</li></ul>Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
-		 * @param string $align Allows to center or align the text. Possible values are:<ul><li>L or empty string: left align (default value)</li><li>C: center</li><li>R: right align</li><li>J: justify</li></ul>
-		 * @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0.
-		 * @param mixed $link URL or identifier returned by AddLink().
-		 * @param int $stretch stretch carachter mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if necessary</li><li>2 = forced horizontal scaling</li><li>3 = character spacing only if necessary</li><li>4 = forced character spacing</li></ul>
-		 * @param boolean $ignore_min_height if true ignore automatic minimum height value.
-		 * @param string $calign cell vertical alignment relative to the specified Y value. Possible values are:<ul><li>T : cell top</li><li>C : center</li><li>B : cell bottom</li><li>A : font top</li><li>L : font baseline</li><li>D : font bottom</li></ul>
-		 * @param string $valign text vertical alignment inside the cell. Possible values are:<ul><li>T : top</li><li>C : center</li><li>B : bottom</li></ul>
-		 * @access protected
-		 * @since 1.0
-		 * @see Cell()
-		 */
-		protected function getCellCode($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=0, $link='', $stretch=0, $ignore_min_height=false, $calign='T', $valign='M') {
-			$txt = $this->removeSHY($txt);
-			$rs = ''; //string to be returned
-			if (!$ignore_min_height) {
-				$min_cell_height = $this->FontSize * $this->cell_height_ratio;
-				if ($h < $min_cell_height) {
-					$h = $min_cell_height;
-				}
-			}
-			$k = $this->k;
+	/**
+	 * Defines the default monospaced font.
+	 * @param $font (string) Font name.
+	 * @public
+	 * @since 4.5.025
+	 */
+	public function SetDefaultMonospacedFont($font) {
+		$this->default_monospaced_font = $font;
+	}
+
+	/**
+	 * Creates a new internal link and returns its identifier. An internal link is a clickable area which directs to another place within the document.<br />
+	 * The identifier can then be passed to Cell(), Write(), Image() or Link(). The destination is defined with SetLink().
+	 * @public
+	 * @since 1.5
+	 * @see Cell(), Write(), Image(), Link(), SetLink()
+	 */
+	public function AddLink() {
+		//Create a new internal link
+		$n = count($this->links) + 1;
+		$this->links[$n] = array(0, 0);
+		return $n;
+	}
+
+	/**
+	 * Defines the page and position a link points to.
+	 * @param $link (int) The link identifier returned by AddLink()
+	 * @param $y (float) Ordinate of target position; -1 indicates the current position. The default value is 0 (top of page)
+	 * @param $page (int) Number of target page; -1 indicates the current page. This is the default value
+	 * @public
+	 * @since 1.5
+	 * @see AddLink()
+	 */
+	public function SetLink($link, $y=0, $page=-1) {
+		if ($y == -1) {
+			$y = $this->y;
+		}
+		if ($page == -1) {
+			$page = $this->page;
+		}
+		$this->links[$link] = array($page, $y);
+	}
+
+	/**
+	 * Puts a link on a rectangular area of the page.
+	 * Text or image links are generally put via Cell(), Write() or Image(), but this method can be useful for instance to define a clickable area inside an image.
+	 * @param $x (float) Abscissa of the upper-left corner of the rectangle
+	 * @param $y (float) Ordinate of the upper-left corner of the rectangle
+	 * @param $w (float) Width of the rectangle
+	 * @param $h (float) Height of the rectangle
+	 * @param $link (mixed) URL or identifier returned by AddLink()
+	 * @param $spaces (int) number of spaces on the text to link
+	 * @public
+	 * @since 1.5
+	 * @see AddLink(), Annotation(), Cell(), Write(), Image()
+	 */
+	public function Link($x, $y, $w, $h, $link, $spaces=0) {
+		$this->Annotation($x, $y, $w, $h, $link, array('Subtype'=>'Link'), $spaces);
+	}
+
+	/**
+	 * Puts a markup annotation on a rectangular area of the page.
+	 * !!!!THE ANNOTATION SUPPORT IS NOT YET FULLY IMPLEMENTED !!!!
+	 * @param $x (float) Abscissa of the upper-left corner of the rectangle
+	 * @param $y (float) Ordinate of the upper-left corner of the rectangle
+	 * @param $w (float) Width of the rectangle
+	 * @param $h (float) Height of the rectangle
+	 * @param $text (string) annotation text or alternate content
+	 * @param $opt (array) array of options (see section 8.4 of PDF reference 1.7).
+	 * @param $spaces (int) number of spaces on the text to link
+	 * @public
+	 * @since 4.0.018 (2008-08-06)
+	 */
+	public function Annotation($x, $y, $w, $h, $text, $opt=array('Subtype'=>'Text'), $spaces=0) {
+		if ($this->inxobj) {
+			// store parameters for later use on template
+			$this->xobjects[$this->xobjid]['annotations'][] = array('x' => $x, 'y' => $y, 'w' => $w, 'h' => $h, 'text' => $text, 'opt' => $opt, 'spaces' => $spaces);
+			return;
+		}
+		if ($x === '') {
 			$x = $this->x;
+		}
+		if ($y === '') {
 			$y = $this->y;
-			// cell vertical alignment
-			switch ($calign) {
-				case 'A': {
-					// font top
-					switch ($valign) {
-						case 'T': {
-							// top
-							$y -= ($this->LineWidth / 2);
-							break;
-						}
-						case 'B': {
-							// bottom
-							$y -= ($h - $this->FontAscent - $this->FontDescent - ($this->LineWidth / 2));
-							break;
-						}
-						default:
-						case 'M': {
-							// center
-							$y -= (($h - $this->FontAscent - $this->FontDescent) / 2);
-							break;
-						}
-					}
-					break;
-				}
-				case 'L': {
-					// font baseline
-					switch ($valign) {
-						case 'T': {
-							// top
-							$y -= ($this->FontAscent + ($this->LineWidth / 2));
-							break;
-						}
-						case 'B': {
-							// bottom
-							$y -= ($h - $this->FontDescent - ($this->LineWidth / 2));
-							break;
-						}
-						default:
-						case 'M': {
-							// center
-							$y -= (($h + $this->FontAscent - $this->FontDescent) / 2);
-							break;
-						}
-					}
-					break;
-				}
-				case 'D': {
-					// font bottom
-					switch ($valign) {
-						case 'T': {
-							// top
-							$y -= ($this->FontAscent + $this->FontDescent + ($this->LineWidth / 2));
-							break;
-						}
-						case 'B': {
-							// bottom
-							$y -= ($h - ($this->LineWidth / 2));
-							break;
-						}
-						default:
-						case 'M': {
-							// center
-							$y -= (($h + $this->FontAscent + $this->FontDescent) / 2);
-							break;
-						}
-					}
-					break;
-				}
-				case 'B': {
-					// cell bottom
-					$y -= $h;
-					break;
-				}
-				case 'C': {
-					// cell center
-					$y -= ($h / 2);
-					break;
-				}
-				default:
-				case 'T': {
-					// cell top
-					break;
-				}
-			}
-			// text vertical alignment
-			switch ($valign) {
-				case 'T': {
-					// top
-					$basefonty = $y + $this->FontAscent + ($this->LineWidth / 2);
-					break;
-				}
-				case 'B': {
-					// bottom
-					$basefonty = $y + $h - $this->FontDescent - ($this->LineWidth / 2);
-					break;
-				}
-				default:
-				case 'M': {
-					// center
-					$basefonty = $y + (($h + $this->FontAscent - $this->FontDescent) / 2);
-					break;
-				}
+		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($h, $x, $y);
+		// recalculate coordinates to account for graphic transformations
+		if (isset($this->transfmatrix) AND !empty($this->transfmatrix)) {
+			for ($i=$this->transfmatrix_key; $i > 0; --$i) {
+				$maxid = count($this->transfmatrix[$i]) - 1;
+				for ($j=$maxid; $j >= 0; --$j) {
+					$ctm = $this->transfmatrix[$i][$j];
+					if (isset($ctm['a'])) {
+						$x = $x * $this->k;
+						$y = ($this->h - $y) * $this->k;
+						$w = $w * $this->k;
+						$h = $h * $this->k;
+						// top left
+						$xt = $x;
+						$yt = $y;
+						$x1 = ($ctm['a'] * $xt) + ($ctm['c'] * $yt) + $ctm['e'];
+						$y1 = ($ctm['b'] * $xt) + ($ctm['d'] * $yt) + $ctm['f'];
+						// top right
+						$xt = $x + $w;
+						$yt = $y;
+						$x2 = ($ctm['a'] * $xt) + ($ctm['c'] * $yt) + $ctm['e'];
+						$y2 = ($ctm['b'] * $xt) + ($ctm['d'] * $yt) + $ctm['f'];
+						// bottom left
+						$xt = $x;
+						$yt = $y - $h;
+						$x3 = ($ctm['a'] * $xt) + ($ctm['c'] * $yt) + $ctm['e'];
+						$y3 = ($ctm['b'] * $xt) + ($ctm['d'] * $yt) + $ctm['f'];
+						// bottom right
+						$xt = $x + $w;
+						$yt = $y - $h;
+						$x4 = ($ctm['a'] * $xt) + ($ctm['c'] * $yt) + $ctm['e'];
+						$y4 = ($ctm['b'] * $xt) + ($ctm['d'] * $yt) + $ctm['f'];
+						// new coordinates (rectangle area)
+						$x = min($x1, $x2, $x3, $x4);
+						$y = max($y1, $y2, $y3, $y4);
+						$w = (max($x1, $x2, $x3, $x4) - $x) / $this->k;
+						$h = ($y - min($y1, $y2, $y3, $y4)) / $this->k;
+						$x = $x / $this->k;
+						$y = $this->h - ($y / $this->k);
+					}
+				}
+			}
+		}
+		if ($this->page <= 0) {
+			$page = 1;
+		} else {
+			$page = $this->page;
+		}
+		if (!isset($this->PageAnnots[$page])) {
+			$this->PageAnnots[$page] = array();
+		}
+		++$this->n;
+		$this->PageAnnots[$page][] = array('n' => $this->n, 'x' => $x, 'y' => $y, 'w' => $w, 'h' => $h, 'txt' => $text, 'opt' => $opt, 'numspaces' => $spaces);
+		if ((($opt['Subtype'] == 'FileAttachment') OR ($opt['Subtype'] == 'Sound')) AND (!$this->empty_string($opt['FS'])) AND file_exists($opt['FS']) AND (!isset($this->embeddedfiles[basename($opt['FS'])]))) {
+			++$this->n;
+			$this->embeddedfiles[basename($opt['FS'])] = array('n' => $this->n, 'file' => $opt['FS']);
+		}
+		// Add widgets annotation's icons
+		if (isset($opt['mk']['i']) AND file_exists($opt['mk']['i'])) {
+			$this->Image($opt['mk']['i'], '', '', 10, 10, '', '', '', false, 300, '', false, false, 0, false, true);
+		}
+		if (isset($opt['mk']['ri']) AND file_exists($opt['mk']['ri'])) {
+			$this->Image($opt['mk']['ri'], '', '', 0, 0, '', '', '', false, 300, '', false, false, 0, false, true);
+		}
+		if (isset($opt['mk']['ix']) AND file_exists($opt['mk']['ix'])) {
+			$this->Image($opt['mk']['ix'], '', '', 0, 0, '', '', '', false, 300, '', false, false, 0, false, true);
+		}
+	}
+
+	/**
+	 * Embedd the attached files.
+	 * @since 4.4.000 (2008-12-07)
+	 * @protected
+	 * @see Annotation()
+	 */
+	protected function _putEmbeddedFiles() {
+		reset($this->embeddedfiles);
+		foreach ($this->embeddedfiles as $filename => $filedata) {
+			$data = file_get_contents($filedata['file']);
+			$filter = '';
+			if ($this->compress) {
+				$data = gzcompress($data);
+				$filter = ' /Filter /FlateDecode';
 			}
-			if ($this->empty_string($w) OR ($w <= 0)) {
-				if ($this->rtl) {
-					$w = $x - $this->lMargin;
-				} else {
-					$w = $this->w - $this->rMargin - $x;
-				}
+			$stream = $this->_getrawstream($data, $filedata['n']);
+			$out = $this->_getobj($filedata['n'])."\n";
+			$out .= '<< /Type /EmbeddedFile'.$filter.' /Length '.strlen($stream).' >>';
+			$out .= ' stream'."\n".$stream."\n".'endstream';
+			$out .= "\n".'endobj';
+			$this->_out($out);
+		}
+	}
+
+	/**
+	 * Prints a text cell at the specified position.
+	 * This method allows to place a string precisely on the page.
+	 * @param $x (float) Abscissa of the cell origin
+	 * @param $y (float) Ordinate of the cell origin
+	 * @param $txt (string) String to print
+	 * @param $fstroke (int) outline size in user units (false = disable)
+	 * @param $fclip (boolean) if true activate clipping mode (you must call StartTransform() before this function and StopTransform() to stop the clipping tranformation).
+	 * @param $ffill (boolean) if true fills the text
+	 * @param $border (mixed) Indicates if borders must be drawn around the cell. The value can be a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul> or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+	 * @param $ln (int) Indicates where the current position should go after the call. Possible values are:<ul><li>0: to the right (or left for RTL languages)</li><li>1: to the beginning of the next line</li><li>2: below</li></ul>Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
+	 * @param $align (string) Allows to center or align the text. Possible values are:<ul><li>L or empty string: left align (default value)</li><li>C: center</li><li>R: right align</li><li>J: justify</li></ul>
+	 * @param $fill (boolean) Indicates if the cell background must be painted (true) or transparent (false).
+	 * @param $link (mixed) URL or identifier returned by AddLink().
+	 * @param $stretch (int) font stretch mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if text is larger than cell width</li><li>2 = forced horizontal scaling to fit cell width</li><li>3 = character spacing only if text is larger than cell width</li><li>4 = forced character spacing to fit cell width</li></ul> General font stretching and scaling values will be preserved when possible.
+	 * @param $ignore_min_height (boolean) if true ignore automatic minimum height value.
+	 * @param $calign (string) cell vertical alignment relative to the specified Y value. Possible values are:<ul><li>T : cell top</li><li>A : font top</li><li>L : font baseline</li><li>D : font bottom</li><li>B : cell bottom</li></ul>
+	 * @param $valign (string) text vertical alignment inside the cell. Possible values are:<ul><li>T : top</li><li>C : center</li><li>B : bottom</li></ul>
+	 * @param $rtloff (boolean) if true uses the page top-left corner as origin of axis for $x and $y initial position.
+	 * @public
+	 * @since 1.0
+	 * @see Cell(), Write(), MultiCell(), WriteHTML(), WriteHTMLCell()
+	 */
+	public function Text($x, $y, $txt, $fstroke=false, $fclip=false, $ffill=true, $border=0, $ln=0, $align='', $fill=false, $link='', $stretch=0, $ignore_min_height=false, $calign='T', $valign='M', $rtloff=false) {
+		$textrendermode = $this->textrendermode;
+		$textstrokewidth = $this->textstrokewidth;
+		$this->setTextRenderingMode($fstroke, $ffill, $fclip);
+		$this->SetXY($x, $y, $rtloff);
+		$this->Cell(0, 0, $txt, $border, $ln, $align, $fill, $link, $stretch, $ignore_min_height, $calign, $valign);
+		// restore previous rendering mode
+		$this->textrendermode = $textrendermode;
+		$this->textstrokewidth = $textstrokewidth;
+	}
+
+	/**
+	 * Whenever a page break condition is met, the method is called, and the break is issued or not depending on the returned value.
+	 * The default implementation returns a value according to the mode selected by SetAutoPageBreak().<br />
+	 * This method is called automatically and should not be called directly by the application.
+	 * @return boolean
+	 * @public
+	 * @since 1.4
+	 * @see SetAutoPageBreak()
+	 */
+	public function AcceptPageBreak() {
+		if ($this->num_columns > 1) {
+			// multi column mode
+			if($this->current_column < ($this->num_columns - 1)) {
+				// go to next column
+				$this->selectColumn($this->current_column + 1);
+			} else {
+				// add a new page
+				$this->AddPage();
+				// set first column
+				$this->selectColumn(0);
 			}
-			$s = '';
-			// fill and borders
-			if (($fill == 1) OR ($border == 1)) {
-				if ($fill == 1) {
-					$op = ($border == 1) ? 'B' : 'f';
-				} else {
-					$op = 'S';
-				}
+			// avoid page breaking from checkPageBreak()
+			return false;
+		}
+		return $this->AutoPageBreak;
+	}
+
+	/**
+	 * Add page if needed.
+	 * @param $h (float) Cell height. Default value: 0.
+	 * @param $y (mixed) starting y position, leave empty for current position.
+	 * @param $addpage (boolean) if true add a page, otherwise only return the true/false state
+	 * @return boolean true in case of page break, false otherwise.
+	 * @since 3.2.000 (2008-07-01)
+	 * @protected
+	 */
+	protected function checkPageBreak($h=0, $y='', $addpage=true) {
+		if ($this->empty_string($y)) {
+			$y = $this->y;
+		}
+		$current_page = $this->page;
+		if ((($y + $h) > $this->PageBreakTrigger) AND (!$this->InFooter) AND ($this->AcceptPageBreak())) {
+			if ($addpage) {
+				//Automatic page break
+				$x = $this->x;
+				$this->AddPage($this->CurOrientation);
+				$this->y = $this->tMargin;
+				$oldpage = $this->page - 1;
 				if ($this->rtl) {
-					$xk = (($this->x  - $w) * $k);
-				} else {
-					$xk = ($this->x * $k);
-				}
-				$s .= sprintf('%.2F %.2F %.2F %.2F re %s ', $xk, (($this->h - $y) * $k), ($w * $k), (-$h * $k), $op);
-			}
-			if (is_string($border)) {
-				$lm = ($this->LineWidth / 2);
-				if (strpos($border,'L') !== false) {
-					if ($this->rtl) {
-						$xk = ($x - $w) * $k;
+					if ($this->pagedim[$this->page]['orm'] != $this->pagedim[$oldpage]['orm']) {
+						$this->x = $x - ($this->pagedim[$this->page]['orm'] - $this->pagedim[$oldpage]['orm']);
 					} else {
-						$xk = $x * $k;
+						$this->x = $x;
 					}
-					$s .= sprintf('%.2F %.2F m %.2F %.2F l S ', $xk, (($this->h - $y + $lm) * $k), $xk, (($this->h - ($y + $h + $lm)) * $k));
-				}
-				if (strpos($border,'T') !== false) {
-					if ($this->rtl) {
-						$xk = ($x - $w + $lm) * $k;
-						$xwk = ($x - $lm) * $k;
+				} else {
+					if ($this->pagedim[$this->page]['olm'] != $this->pagedim[$oldpage]['olm']) {
+						$this->x = $x + ($this->pagedim[$this->page]['olm'] - $this->pagedim[$oldpage]['olm']);
 					} else {
-						$xk = ($x - $lm) * $k;
-						$xwk = ($x + $w + $lm) * $k;
+						$this->x = $x;
 					}
-					$s .= sprintf('%.2F %.2F m %.2F %.2F l S ', $xk, (($this->h - $y) * $k), $xwk, (($this->h - $y) * $k));
 				}
-				if (strpos($border,'R') !== false) {
-					if ($this->rtl) {
-						$xk = $x * $k;
-					} else {
-						$xk = ($x + $w) * $k;
+			}
+			return true;
+		}
+		if ($current_page != $this->page) {
+			// account for columns mode
+			return true;
+		}
+		return false;
+	}
+
+	/**
+	 * Removes SHY characters from text.
+	 * Unicode Data:<ul>
+	 * <li>Name : SOFT HYPHEN, commonly abbreviated as SHY</li>
+	 * <li>HTML Entity (decimal): "&amp;#173;"</li>
+	 * <li>HTML Entity (hex): "&amp;#xad;"</li>
+	 * <li>HTML Entity (named): "&amp;shy;"</li>
+	 * <li>How to type in Microsoft Windows: [Alt +00AD] or [Alt 0173]</li>
+	 * <li>UTF-8 (hex): 0xC2 0xAD (c2ad)</li>
+	 * <li>UTF-8 character: chr(194).chr(173)</li>
+	 * </ul>
+	 * @param $txt (string) input string
+	 * @return string without SHY characters.
+	 * @public
+	 * @since (4.5.019) 2009-02-28
+	 */
+	public function removeSHY($txt='') {
+		$txt = preg_replace('/([\\xc2]{1}[\\xad]{1})/', '', $txt);
+		if (!$this->isunicode) {
+			$txt = preg_replace('/([\\xad]{1})/', '', $txt);
+		}
+		return $txt;
+	}
+
+	/**
+	 * Prints a cell (rectangular area) with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.<br />
+	 * If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.
+	 * @param $w (float) Cell width. If 0, the cell extends up to the right margin.
+	 * @param $h (float) Cell height. Default value: 0.
+	 * @param $txt (string) String to print. Default value: empty string.
+	 * @param $border (mixed) Indicates if borders must be drawn around the cell. The value can be a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul> or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+	 * @param $ln (int) Indicates where the current position should go after the call. Possible values are:<ul><li>0: to the right (or left for RTL languages)</li><li>1: to the beginning of the next line</li><li>2: below</li></ul> Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
+	 * @param $align (string) Allows to center or align the text. Possible values are:<ul><li>L or empty string: left align (default value)</li><li>C: center</li><li>R: right align</li><li>J: justify</li></ul>
+	 * @param $fill (boolean) Indicates if the cell background must be painted (true) or transparent (false).
+	 * @param $link (mixed) URL or identifier returned by AddLink().
+	 * @param $stretch (int) font stretch mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if text is larger than cell width</li><li>2 = forced horizontal scaling to fit cell width</li><li>3 = character spacing only if text is larger than cell width</li><li>4 = forced character spacing to fit cell width</li></ul> General font stretching and scaling values will be preserved when possible.
+	 * @param $ignore_min_height (boolean) if true ignore automatic minimum height value.
+	 * @param $calign (string) cell vertical alignment relative to the specified Y value. Possible values are:<ul><li>T : cell top</li><li>C : center</li><li>B : cell bottom</li><li>A : font top</li><li>L : font baseline</li><li>D : font bottom</li></ul>
+	 * @param $valign (string) text vertical alignment inside the cell. Possible values are:<ul><li>T : top</li><li>C : center</li><li>B : bottom</li></ul>
+	 * @public
+	 * @since 1.0
+	 * @see SetFont(), SetDrawColor(), SetFillColor(), SetTextColor(), SetLineWidth(), AddLink(), Ln(), MultiCell(), Write(), SetAutoPageBreak()
+	 */
+	public function Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=false, $link='', $stretch=0, $ignore_min_height=false, $calign='T', $valign='M') {
+		$prev_cell_margin = $this->cell_margin;
+		$prev_cell_padding = $this->cell_padding;
+		$this->adjustCellPadding($border);
+		if (!$ignore_min_height) {
+			$min_cell_height = ($this->FontSize * $this->cell_height_ratio) + $this->cell_padding['T'] + $this->cell_padding['B'];
+			if ($h < $min_cell_height) {
+				$h = $min_cell_height;
+			}
+		}
+		$this->checkPageBreak($h + $this->cell_margin['T'] + $this->cell_margin['B']);
+		$this->_out($this->getCellCode($w, $h, $txt, $border, $ln, $align, $fill, $link, $stretch, true, $calign, $valign));
+		$this->cell_padding = $prev_cell_padding;
+		$this->cell_margin = $prev_cell_margin;
+	}
+
+	/**
+	 * Returns the PDF string code to print a cell (rectangular area) with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.<br />
+	 * If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.
+	 * @param $w (float) Cell width. If 0, the cell extends up to the right margin.
+	 * @param $h (float) Cell height. Default value: 0.
+	 * @param $txt (string) String to print. Default value: empty string.
+	 * @param $border (mixed) Indicates if borders must be drawn around the cell. The value can be a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul> or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+	 * @param $ln (int) Indicates where the current position should go after the call. Possible values are:<ul><li>0: to the right (or left for RTL languages)</li><li>1: to the beginning of the next line</li><li>2: below</li></ul>Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
+	 * @param $align (string) Allows to center or align the text. Possible values are:<ul><li>L or empty string: left align (default value)</li><li>C: center</li><li>R: right align</li><li>J: justify</li></ul>
+	 * @param $fill (boolean) Indicates if the cell background must be painted (true) or transparent (false).
+	 * @param $link (mixed) URL or identifier returned by AddLink().
+	 * @param $stretch (int) font stretch mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if text is larger than cell width</li><li>2 = forced horizontal scaling to fit cell width</li><li>3 = character spacing only if text is larger than cell width</li><li>4 = forced character spacing to fit cell width</li></ul> General font stretching and scaling values will be preserved when possible.
+	 * @param $ignore_min_height (boolean) if true ignore automatic minimum height value.
+	 * @param $calign (string) cell vertical alignment relative to the specified Y value. Possible values are:<ul><li>T : cell top</li><li>C : center</li><li>B : cell bottom</li><li>A : font top</li><li>L : font baseline</li><li>D : font bottom</li></ul>
+	 * @param $valign (string) text vertical alignment inside the cell. Possible values are:<ul><li>T : top</li><li>M : middle</li><li>B : bottom</li></ul>
+	 * @return string containing cell code
+	 * @protected
+	 * @since 1.0
+	 * @see Cell()
+	 */
+	protected function getCellCode($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=false, $link='', $stretch=0, $ignore_min_height=false, $calign='T', $valign='M') {
+		$prev_cell_margin = $this->cell_margin;
+		$prev_cell_padding = $this->cell_padding;
+		$txt = $this->removeSHY($txt);
+		$rs = ''; //string to be returned
+		$this->adjustCellPadding($border);
+		if (!$ignore_min_height) {
+			$min_cell_height = ($this->FontSize * $this->cell_height_ratio) + $this->cell_padding['T'] + $this->cell_padding['B'];
+			if ($h < $min_cell_height) {
+				$h = $min_cell_height;
+			}
+		}
+		$k = $this->k;
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($h, $this->x, $this->y);
+		if ($this->rtl) {
+			$x = $this->x - $this->cell_margin['R'];
+		} else {
+			$x = $this->x + $this->cell_margin['L'];
+		}
+		$y = $this->y + $this->cell_margin['T'];
+		$prev_font_stretching = $this->font_stretching;
+		$prev_font_spacing = $this->font_spacing;
+		// cell vertical alignment
+		switch ($calign) {
+			case 'A': {
+				// font top
+				switch ($valign) {
+					case 'T': {
+						// top
+						$y -= $this->cell_padding['T'];
+						break;
 					}
-					$s .= sprintf('%.2F %.2F m %.2F %.2F l S ', $xk, (($this->h - $y + $lm) * $k), $xk, (($this->h - ($y + $h + $lm))* $k));
-				}
-				if (strpos($border,'B') !== false) {
-					if ($this->rtl) {
-						$xk = ($x - $w + $lm) * $k;
-						$xwk = ($x - $lm) * $k;
-					} else {
-						$xk = ($x - $lm) * $k;
-						$xwk = ($x + $w + $lm) * $k;
+					case 'B': {
+						// bottom
+						$y -= ($h - $this->cell_padding['B'] - $this->FontAscent - $this->FontDescent);
+						break;
 					}
-					$s .= sprintf('%.2F %.2F m %.2F %.2F l S ', $xk, (($this->h - ($y + $h)) * $k), $xwk, (($this->h - ($y + $h)) * $k));
-				}
-			}
-			if ($txt != '') {
-				$txt2 = $txt;
-				if ($this->isunicode) {
-					if (($this->CurrentFont['type'] == 'core') OR ($this->CurrentFont['type'] == 'TrueType') OR ($this->CurrentFont['type'] == 'Type1')) {
-						$txt2 = $this->UTF8ToLatin1($txt2);
-					} else {
-						$unicode = $this->UTF8StringToArray($txt); // array of UTF-8 unicode values
-						$unicode = $this->utf8Bidi($unicode, '', $this->tmprtl);
-						if (defined('K_THAI_TOPCHARS') AND (K_THAI_TOPCHARS == true)) {
-							// ---- Fix for bug #2977340 "Incorrect Thai characters position arrangement" ----
-							// NOTE: this doesn't work with HTML justification
-							// Symbols that could overlap on the font top (only works in LTR)
-							$topchar = array(3611, 3613, 3615, 3650, 3651, 3652); // chars that extends on top
-							$topsym = array(3633, 3636, 3637, 3638, 3639, 3655, 3656, 3657, 3658, 3659, 3660, 3661, 3662); // symbols with top position
-							$numchars = count($unicode); // number of chars
-							$unik = 0;
-							$uniblock = array();
-							$uniblock[$unik] = array();
-							$uniblock[$unik][] = $unicode[0];
-							// resolve overlapping conflicts by splitting the string in several parts
-							for ($i = 1; $i < $numchars; ++$i) {
-								// check if symbols overlaps at top
-								if (in_array($unicode[$i], $topsym) AND (in_array($unicode[($i - 1)], $topsym) OR in_array($unicode[($i - 1)], $topchar))) {
-									// move symbols to another array
-									++$unik;
-									$uniblock[$unik] = array();
-									$uniblock[$unik][] = $unicode[$i];
-									++$unik;
-									$uniblock[$unik] = array();
-									$unicode[$i] = 0x200b; // Unicode Character 'ZERO WIDTH SPACE' (DEC:8203, U+200B)
-								} else {
-									$uniblock[$unik][] = $unicode[$i];
-								}
-							}
-							// ---- END OF Fix for bug #2977340
-						}
-						$txt2 = $this->arrUTF8ToUTF16BE($unicode, false);
+					default:
+					case 'C':
+					case 'M': {
+						// center
+						$y -= (($h - $this->FontAscent - $this->FontDescent) / 2);
+						break;
 					}
 				}
-				$txt2 = $this->_escape($txt2);
-				// text length
-				$txwidth = $this->GetStringWidth($txt);
-				$width = $txwidth;
-				// ratio between cell length and text length
-				if ($width <= 0) {
-					$ratio = 1;
-				} else {
-					$ratio = ($w - (2 * $this->cMargin)) / $width;
-				}
-				// stretch text if required
-				if (($stretch > 0) AND (($ratio < 1) OR (($ratio > 1) AND (($stretch % 2) == 0)))) {
-					if ($stretch > 2) {
-						// spacing
-						//Calculate character spacing in points
-						$char_space = (($w - $width - (2 * $this->cMargin)) * $this->k) / max($this->GetNumChars($txt)-1,1);
-						//Set character spacing
-						$rs .= sprintf('BT %.2F Tc ET ', $char_space);
-					} else {
-						// scaling
-						//Calculate horizontal scaling
-						$horiz_scale = $ratio * 100.0;
-						//Set horizontal scaling
-						$rs .= sprintf('BT %.2F Tz ET ', $horiz_scale);
+				break;
+			}
+			case 'L': {
+				// font baseline
+				switch ($valign) {
+					case 'T': {
+						// top
+						$y -= ($this->cell_padding['T'] + $this->FontAscent);
+						break;
 					}
-					$align = '';
-					$width = $w - (2 * $this->cMargin);
-				} else {
-					$stretch == 0;
-				}
-				if ($this->ColorFlag) {
-					$s .= 'q '.$this->TextColor.' ';
-				}
-				// rendering mode
-				$s .= sprintf('BT %d Tr %.2F w ET ', $this->textrendermode, $this->textstrokewidth);
-				// count number of spaces
-				$ns = substr_count($txt, ' ');
-				// Justification
-				$spacewidth = 0;
-				if (($align == 'J') AND ($ns > 0)) {
-					if (($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) {
-							// get string width without spaces
-							$width = $this->GetStringWidth(str_replace(' ', '', $txt));
-							// calculate average space width
-							$spacewidth = -1000 * ($w - $width - (2 * $this->cMargin)) / ($ns?$ns:1) / $this->FontSize;
-							// set word position to be used with TJ operator
-							$txt2 = str_replace(chr(0).chr(32), ') '.sprintf('%.3F', $spacewidth).' (', $txt2);
-							$unicode_justification = true;
-					} else {
-						// get string width
-						$width = $txwidth;
-						$spacewidth = (($w - $width - (2 * $this->cMargin)) / ($ns?$ns:1)) * $this->k;
-						// set word spacing
-						$rs .= sprintf('BT %.3F Tw ET ', $spacewidth);
+					case 'B': {
+						// bottom
+						$y -= ($h - $this->cell_padding['B'] - $this->FontDescent);
+						break;
 					}
-					$width = $w - (2 * $this->cMargin);
-				}
-				// replace carriage return characters
-				$txt2 = str_replace("\r", ' ', $txt2);
-				switch ($align) {
-					case 'C': {
-						$dx = ($w - $width) / 2;
+					default:
+					case 'C':
+					case 'M': {
+						// center
+						$y -= (($h + $this->FontAscent - $this->FontDescent) / 2);
 						break;
 					}
-					case 'R': {
-						if ($this->rtl) {
-							$dx = $this->cMargin;
-						} else {
-							$dx = $w - $width - $this->cMargin;
-						}
+				}
+				break;
+			}
+			case 'D': {
+				// font bottom
+				switch ($valign) {
+					case 'T': {
+						// top
+						$y -= ($this->cell_padding['T'] + $this->FontAscent + $this->FontDescent);
 						break;
 					}
-					case 'L': {
-						if ($this->rtl) {
-							$dx = $w - $width - $this->cMargin;
-						} else {
-							$dx = $this->cMargin;
-						}
+					case 'B': {
+						// bottom
+						$y -= ($h - $this->cell_padding['B']);
 						break;
 					}
-					case 'J':
-					default: {
-						$dx = $this->cMargin;
+					default:
+					case 'C':
+					case 'M': {
+						// center
+						$y -= (($h + $this->FontAscent + $this->FontDescent) / 2);
 						break;
 					}
 				}
-				if ($this->rtl) {
-					$xdx = $this->x - $dx - $width;
+				break;
+			}
+			case 'B': {
+				// cell bottom
+				$y -= $h;
+				break;
+			}
+			case 'C':
+			case 'M': {
+				// cell center
+				$y -= ($h / 2);
+				break;
+			}
+			default:
+			case 'T': {
+				// cell top
+				break;
+			}
+		}
+		// text vertical alignment
+		switch ($valign) {
+			case 'T': {
+				// top
+				$yt = $y + $this->cell_padding['T'];
+				break;
+			}
+			case 'B': {
+				// bottom
+				$yt = $y + $h - $this->cell_padding['B'] - $this->FontAscent - $this->FontDescent;
+				break;
+			}
+			default:
+			case 'C':
+			case 'M': {
+				// center
+				$yt = $y + (($h - $this->FontAscent - $this->FontDescent) / 2);
+				break;
+			}
+		}
+		$basefonty = $yt + $this->FontAscent;
+		if ($this->empty_string($w) OR ($w <= 0)) {
+			if ($this->rtl) {
+				$w = $x - $this->lMargin;
+			} else {
+				$w = $this->w - $this->rMargin - $x;
+			}
+		}
+		$s = '';
+		// fill and borders
+		if (is_string($border) AND (strlen($border) == 4)) {
+			// full border
+			$border = 1;
+		}
+		if ($fill OR ($border == 1)) {
+			if ($fill) {
+				$op = ($border == 1) ? 'B' : 'f';
+			} else {
+				$op = 'S';
+			}
+			if ($this->rtl) {
+				$xk = (($x - $w) * $k);
+			} else {
+				$xk = ($x * $k);
+			}
+			$s .= sprintf('%.2F %.2F %.2F %.2F re %s ', $xk, (($this->h - $y) * $k), ($w * $k), (-$h * $k), $op);
+		}
+		// draw borders
+		$s .= $this->getCellBorder($x, $y, $w, $h, $border);
+		if ($txt != '') {
+			$txt2 = $txt;
+			if ($this->isunicode) {
+				if (($this->CurrentFont['type'] == 'core') OR ($this->CurrentFont['type'] == 'TrueType') OR ($this->CurrentFont['type'] == 'Type1')) {
+					$txt2 = $this->UTF8ToLatin1($txt2);
 				} else {
-					$xdx = $this->x + $dx;
-				}
-				$xdk = $xdx * $k;
-				// print text
-				$s .= sprintf('BT %.2F %.2F Td [(%s)] TJ ET', $xdk, (($this->h - $basefonty) * $k), $txt2);
-				if (isset($uniblock)) {
-					// print overlapping characters as separate string
-					$xshift = 0; // horizontal shift
-					$ty = (($this->h - $basefonty + (0.2 * $this->FontSize)) * $k);
-					$spw = (($w - $txwidth - (2 * $this->cMargin)) / ($ns?$ns:1));
-					foreach ($uniblock as $uk => $uniarr) {
-						if (($uk % 2) == 0) {
-							// x space to skip
-							if ($spacewidth != 0) {
-								// justification shift
-								$xshift += (count(array_keys($uniarr, 32)) * $spw);
+					$unicode = $this->UTF8StringToArray($txt); // array of UTF-8 unicode values
+					$unicode = $this->utf8Bidi($unicode, '', $this->tmprtl);
+					if (defined('K_THAI_TOPCHARS') AND (K_THAI_TOPCHARS == true)) {
+						// ---- Fix for bug #2977340 "Incorrect Thai characters position arrangement" ----
+						// NOTE: this doesn't work with HTML justification
+						// Symbols that could overlap on the font top (only works in LTR)
+						$topchar = array(3611, 3613, 3615, 3650, 3651, 3652); // chars that extends on top
+						$topsym = array(3633, 3636, 3637, 3638, 3639, 3655, 3656, 3657, 3658, 3659, 3660, 3661, 3662); // symbols with top position
+						$numchars = count($unicode); // number of chars
+						$unik = 0;
+						$uniblock = array();
+						$uniblock[$unik] = array();
+						$uniblock[$unik][] = $unicode[0];
+						// resolve overlapping conflicts by splitting the string in several parts
+						for ($i = 1; $i < $numchars; ++$i) {
+							// check if symbols overlaps at top
+							if (in_array($unicode[$i], $topsym) AND (in_array($unicode[($i - 1)], $topsym) OR in_array($unicode[($i - 1)], $topchar))) {
+								// move symbols to another array
+								++$unik;
+								$uniblock[$unik] = array();
+								$uniblock[$unik][] = $unicode[$i];
+								++$unik;
+								$uniblock[$unik] = array();
+								$unicode[$i] = 0x200b; // Unicode Character 'ZERO WIDTH SPACE' (DEC:8203, U+200B)
+							} else {
+								$uniblock[$unik][] = $unicode[$i];
 							}
-							$xshift += $this->GetArrStringWidth($uniarr); // + shift justification
-						} else {
-							// character to print
-							$topchr = $this->arrUTF8ToUTF16BE($uniarr, false);
-							$topchr = $this->_escape($topchr);
-							$s .= sprintf(' BT %.2F %.2F Td [(%s)] TJ ET', ($xdk + ($xshift * $k)), $ty, $topchr);
 						}
+						// ---- END OF Fix for bug #2977340
 					}
+					$txt2 = $this->arrUTF8ToUTF16BE($unicode, false);
 				}
-				if ($this->underline)  {
-					$s .= ' '.$this->_dounderlinew($xdx, $basefonty, $width);
+			}
+			$txt2 = $this->_escape($txt2);
+			// get current text width (considering general font stretching and spacing)
+			$txwidth = $this->GetStringWidth($txt);
+			$width = $txwidth;
+			// check for stretch mode
+			if ($stretch > 0) {
+				// calculate ratio between cell width and text width
+				if ($width <= 0) {
+					$ratio = 1;
+				} else {
+					$ratio = (($w - $this->cell_padding['L'] - $this->cell_padding['R']) / $width);
 				}
-				if ($this->linethrough) {
-					$s .= ' '.$this->_dolinethroughw($xdx, $basefonty, $width);
+				// check if stretching is required
+				if (($ratio < 1) OR (($ratio > 1) AND (($stretch % 2) == 0))) {
+					// the text will be stretched to fit cell width
+					if ($stretch > 2) {
+						// set new character spacing
+						$this->font_spacing += ($w - $this->cell_padding['L'] - $this->cell_padding['R'] - $width) / (max(($this->GetNumChars($txt) - 1), 1) * ($this->font_stretching / 100));
+					} else {
+						// set new horizontal stretching
+						$this->font_stretching *= $ratio;
+					}
+					// recalculate text width (the text fills the entire cell)
+					$width = $w - $this->cell_padding['L'] - $this->cell_padding['R'];
+					// reset alignment
+					$align = '';
 				}
-				if ($this->overline)  {
-					$s .= ' '.$this->_dooverlinew($xdx, $basefonty, $width);
+			}
+			if ($this->font_stretching != 100) {
+				// apply font stretching
+				$rs .= sprintf('BT %.2F Tz ET ', $this->font_stretching);
+			}
+			if ($this->font_spacing != 0) {
+				// increase/decrease font spacing
+				$rs .= sprintf('BT %.2F Tc ET ', ($this->font_spacing * $this->k));
+			}
+			if ($this->ColorFlag) {
+				$s .= 'q '.$this->TextColor.' ';
+			}
+			// rendering mode
+			$s .= sprintf('BT %d Tr %.2F w ET ', $this->textrendermode, $this->textstrokewidth);
+			// count number of spaces
+			$ns = substr_count($txt, chr(32));
+			// Justification
+			$spacewidth = 0;
+			if (($align == 'J') AND ($ns > 0)) {
+				if ($this->isUnicodeFont()) {
+					// get string width without spaces
+					$width = $this->GetStringWidth(str_replace(' ', '', $txt));
+					// calculate average space width
+					$spacewidth = -1000 * ($w - $width - $this->cell_padding['L'] - $this->cell_padding['R']) / ($ns?$ns:1) / $this->FontSize;
+					if ($this->font_stretching != 100) {
+						// word spacing is affected by stretching
+						$spacewidth /= ($this->font_stretching / 100);
+					}
+					// set word position to be used with TJ operator
+					$txt2 = str_replace(chr(0).chr(32), ') '.sprintf('%.3F', $spacewidth).' (', $txt2);
+					$unicode_justification = true;
+				} else {
+					// get string width
+					$width = $txwidth;
+					// new space width
+					$spacewidth = (($w - $width - $this->cell_padding['L'] - $this->cell_padding['R']) / ($ns?$ns:1)) * $this->k;
+					if ($this->font_stretching != 100) {
+						// word spacing (Tw) is affected by stretching
+						$spacewidth /= ($this->font_stretching / 100);
+					}
+					// set word spacing
+					$rs .= sprintf('BT %.3F Tw ET ', $spacewidth);
+				}
+				$width = $w - $this->cell_padding['L'] - $this->cell_padding['R'];
+			}
+			// replace carriage return characters
+			$txt2 = str_replace("\r", ' ', $txt2);
+			switch ($align) {
+				case 'C': {
+					$dx = ($w - $width) / 2;
+					break;
 				}
-				if ($this->ColorFlag) {
-					$s .= ' Q';
+				case 'R': {
+					if ($this->rtl) {
+						$dx = $this->cell_padding['R'];
+					} else {
+						$dx = $w - $width - $this->cell_padding['R'];
+					}
+					break;
 				}
-				if ($link) {
-					$this->Link($xdx, $y + (($h - $this->FontSize)/2), $width, $this->FontSize, $link, $ns);
+				case 'L': {
+					if ($this->rtl) {
+						$dx = $w - $width - $this->cell_padding['L'];
+					} else {
+						$dx = $this->cell_padding['L'];
+					}
+					break;
 				}
-			}
-			// output cell
-			if ($s) {
-				// output cell
-				$rs .= $s;
-				// reset text stretching
-				if ($stretch > 2) {
-					//Reset character horizontal spacing
-					$rs .= ' BT 0 Tc ET';
-				} elseif ($stretch > 0) {
-					//Reset character horizontal scaling
-					$rs .= ' BT 100 Tz ET';
-				}
-			}
-			// reset word spacing
-			if (!(($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) AND ($align == 'J')) {
-				$rs .= ' BT 0 Tw ET';
-			}
-			$this->lasth = $h;
-			if ($ln > 0) {
-				//Go to the beginning of the next line
-				$this->y = $y + $h;
-				if ($ln == 1) {
+				case 'J':
+				default: {
 					if ($this->rtl) {
-						$this->x = $this->w - $this->rMargin;
+						$dx = $this->cell_padding['R'];
 					} else {
-						$this->x = $this->lMargin;
+						$dx = $this->cell_padding['L'];
 					}
+					break;
 				}
+			}
+			if ($this->rtl) {
+				$xdx = $x - $dx - $width;
 			} else {
-				// go left or right by case
-				if ($this->rtl) {
-					$this->x -= $w;
-				} else {
-					$this->x += $w;
-				}
-			}
-			$gstyles = ''.$this->linestyleWidth.' '.$this->linestyleCap.' '.$this->linestyleJoin.' '.$this->linestyleDash.' '.$this->DrawColor.' '.$this->FillColor."\n";
-			$rs = $gstyles.$rs;
-			return $rs;
-		}
-
-		/**
-		 * This method allows printing text with line breaks.
-		 * They can be automatic (as soon as the text reaches the right border of the cell) or explicit (via the \n character). As many cells as necessary are output, one below the other.<br />
-		 * Text can be aligned, centered or justified. The cell block can be framed and the background painted.
-		 * @param float $w Width of cells. If 0, they extend up to the right margin of the page.
-		 * @param float $h Cell minimum height. The cell extends automatically if needed.
-		 * @param string $txt String to print
-		 * @param mixed $border Indicates if borders must be drawn around the cell block. The value can be either a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul>or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul>
-		 * @param string $align Allows to center or align the text. Possible values are:<ul><li>L or empty string: left align</li><li>C: center</li><li>R: right align</li><li>J: justification (default value when $ishtml=false)</li></ul>
-		 * @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0.
-		 * @param int $ln Indicates where the current position should go after the call. Possible values are:<ul><li>0: to the right</li><li>1: to the beginning of the next line [DEFAULT]</li><li>2: below</li></ul>
-		 * @param float $x x position in user units
-		 * @param float $y y position in user units
-		 * @param boolean $reseth if true reset the last cell height (default true).
-		 * @param int $stretch stretch carachter mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if necessary</li><li>2 = forced horizontal scaling</li><li>3 = character spacing only if necessary</li><li>4 = forced character spacing</li></ul>
-		 * @param boolean $ishtml set to true if $txt is HTML content (default = false).
-		 * @param boolean $autopadding if true, uses internal padding and automatically adjust it to account for line width.
-		 * @param float $maxh maximum height. It should be >= $h and less then remaining space to the bottom of the page, or 0 for disable this feature. This feature works only when $ishtml=false.
-		 * @param string $valign Vertical alignment of text (requires $maxh = $h > 0). Possible values are:<ul><li>T: TOP</li><li>M: middle</li><li>B: bottom</li></ul>. This feature works only when $ishtml=false.
-		 * @param boolean $fitcell if true attempt to fit all the text within the cell by reducing the font size.
-		 * @return int Return the number of cells or 1 for html mode.
-		 * @access public
-		 * @since 1.3
-		 * @see SetFont(), SetDrawColor(), SetFillColor(), SetTextColor(), SetLineWidth(), Cell(), Write(), SetAutoPageBreak()
-		 */
-		public function MultiCell($w, $h, $txt, $border=0, $align='J', $fill=0, $ln=1, $x='', $y='', $reseth=true, $stretch=0, $ishtml=false, $autopadding=true, $maxh=0, $valign='T', $fitcell=false) {
-			if ($this->empty_string($this->lasth) OR $reseth) {
-				//set row height
-				$this->lasth = $this->FontSize * $this->cell_height_ratio;
-			}
-			if (!$this->empty_string($y)) {
-				$this->SetY($y);
-			} else {
-				$y = $this->GetY();
+				$xdx = $x + $dx;
+			}
+			$xdk = $xdx * $k;
+			// print text
+			$s .= sprintf('BT %.2F %.2F Td [(%s)] TJ ET', $xdk, (($this->h - $basefonty) * $k), $txt2);
+			if (isset($uniblock)) {
+				// print overlapping characters as separate string
+				$xshift = 0; // horizontal shift
+				$ty = (($this->h - $basefonty + (0.2 * $this->FontSize)) * $k);
+				$spw = (($w - $txwidth - $this->cell_padding['L'] - $this->cell_padding['R']) / ($ns?$ns:1));
+				foreach ($uniblock as $uk => $uniarr) {
+					if (($uk % 2) == 0) {
+						// x space to skip
+						if ($spacewidth != 0) {
+							// justification shift
+							$xshift += (count(array_keys($uniarr, 32)) * $spw);
+						}
+						$xshift += $this->GetArrStringWidth($uniarr); // + shift justification
+					} else {
+						// character to print
+						$topchr = $this->arrUTF8ToUTF16BE($uniarr, false);
+						$topchr = $this->_escape($topchr);
+						$s .= sprintf(' BT %.2F %.2F Td [(%s)] TJ ET', ($xdk + ($xshift * $k)), $ty, $topchr);
+					}
+				}
 			}
-			$resth = 0;
-			if ((!$this->InFooter) AND (($y + $h) > $this->PageBreakTrigger)) {
-				// spit cell in two pages
-				$newh = $this->PageBreakTrigger - $y;
-				$resth = $h - $newh; // cell to be printed on the next page
-				$h = $newh;
+			if ($this->underline) {
+				$s .= ' '.$this->_dounderlinew($xdx, $basefonty, $width);
 			}
-			// get current page number
-			$startpage = $this->page;
-			if (!$this->empty_string($x)) {
-				$this->SetX($x);
-			} else {
-				$x = $this->GetX();
+			if ($this->linethrough) {
+				$s .= ' '.$this->_dolinethroughw($xdx, $basefonty, $width);
+			}
+			if ($this->overline) {
+				$s .= ' '.$this->_dooverlinew($xdx, $basefonty, $width);
+			}
+			if ($this->ColorFlag) {
+				$s .= ' Q';
+			}
+			if ($link) {
+				$this->Link($xdx, $yt, $width, ($this->FontAscent + $this->FontDescent), $link, $ns);
 			}
-			if ($this->empty_string($w) OR ($w <= 0)) {
+		}
+		// output cell
+		if ($s) {
+			// output cell
+			$rs .= $s;
+			if ($this->font_spacing != 0) {
+				// reset font spacing mode
+				$rs .= ' BT 0 Tc ET';
+			}
+			if ($this->font_stretching != 100) {
+				// reset font stretching mode
+				$rs .= ' BT 100 Tz ET';
+			}
+		}
+		// reset word spacing
+		if (!$this->isUnicodeFont() AND ($align == 'J')) {
+			$rs .= ' BT 0 Tw ET';
+		}
+		// reset stretching and spacing
+		$this->font_stretching = $prev_font_stretching;
+		$this->font_spacing = $prev_font_spacing;
+		$this->lasth = $h;
+		if ($ln > 0) {
+			//Go to the beginning of the next line
+			$this->y = $y + $h + $this->cell_margin['B'];
+			if ($ln == 1) {
 				if ($this->rtl) {
-					$w = $this->x - $this->lMargin;
+					$this->x = $this->w - $this->rMargin;
 				} else {
-					$w = $this->w - $this->rMargin - $this->x;
+					$this->x = $this->lMargin;
 				}
 			}
-			// store original margin values
-			$lMargin = $this->lMargin;
-			$rMargin = $this->rMargin;
+		} else {
+			// go left or right by case
 			if ($this->rtl) {
-				$this->SetRightMargin($this->w - $this->x);
-				$this->SetLeftMargin($this->x - $w);
+				$this->x = $x - $w - $this->cell_margin['L'];
 			} else {
-				$this->SetLeftMargin($this->x);
-				$this->SetRightMargin($this->w - $this->x - $w);
-			}
-			$starty = $this->y;
-			if ($autopadding) {
-				// Adjust internal padding
-				if ($this->cMargin < ($this->LineWidth / 2)) {
-					$this->cMargin = ($this->LineWidth / 2);
-				}
-				// Add top space if needed
-				if (($this->lasth - $this->FontSize) < $this->LineWidth) {
-					$this->y += $this->LineWidth / 2;
-				}
-				// add top padding
-				$this->y += $this->cMargin;
-			}
-			if ($ishtml) { // ******* Write HTML text
-				$this->writeHTML($txt, true, 0, $reseth, true, $align);
-				$nl = 1;
-			} else { // ******* Write simple text
-				// vertical alignment
-				if ($maxh > 0) {
-					// get text height
-					$text_height = $this->getStringHeight($w, $txt, $reseth, $autopadding, '', '');
-					if ($fitcell) {
-						$prev_FontSizePt = $this->FontSizePt;
-						// try to reduce font size to fit text on cell (use a quick search algorithm)
-						$fmin = 1;
-						$fmax = $this->FontSizePt;
-						$prev_text_height = $text_height;
-						$maxit = 100; // max number of iterations
-						while ($maxit > 0) {
-							$fmid = (($fmax + $fmin) / 2);
-							$this->SetFontSize($fmid, false);
-							$text_height = $this->getStringHeight($w, $txt, $reseth, $autopadding, '', '');
-							if (($text_height == $maxh) OR (($text_height < $maxh) AND ($fmin >= ($fmax - 0.01)))) {
-								break;
-							} elseif ($text_height < $maxh) {
-								$fmin = $fmid;
-							} else {
-								$fmax = $fmid;
-							}
-							--$maxit;
-						}
-						$this->SetFontSize($this->FontSizePt);
-					}
-					if ($text_height < $maxh) {
-						if ($valign == 'M') {
-							// text vertically aligned on middle
-							$this->y += (($maxh - $text_height) / 2);
-						} elseif ($valign == 'B') {
-							// text vertically aligned on bottom
-							$this->y += ($maxh - $text_height);
+				$this->x = $x + $w + $this->cell_margin['R'];
+			}
+		}
+		$gstyles = ''.$this->linestyleWidth.' '.$this->linestyleCap.' '.$this->linestyleJoin.' '.$this->linestyleDash.' '.$this->DrawColor.' '.$this->FillColor."\n";
+		$rs = $gstyles.$rs;
+		$this->cell_padding = $prev_cell_padding;
+		$this->cell_margin = $prev_cell_margin;
+		return $rs;
+	}
+
+	/**
+	 * Returns the code to draw the cell border
+	 * @param $x (float) X coordinate.
+	 * @param $y (float) Y coordinate.
+	 * @param $w (float) Cell width.
+	 * @param $h (float) Cell height.
+	 * @param $brd (mixed) Indicates if borders must be drawn around the cell. The value can be a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul> or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+	 * @return string containing cell border code
+	 * @protected
+	 * @see SetLineStyle()
+	 * @since 5.7.000 (2010-08-02)
+	 */
+	protected function getCellBorder($x, $y, $w, $h, $brd) {
+		$s = ''; // string to be returned
+		if (empty($brd)) {
+			return $s;
+		}
+		if ($brd == 1) {
+			$brd = array('LRTB' => true);
+		}
+		// calculate coordinates for border
+		$k = $this->k;
+		if ($this->rtl) {
+			$xeL = ($x - $w) * $k;
+			$xeR = $x * $k;
+		} else {
+			$xeL = $x * $k;
+			$xeR = ($x + $w) * $k;
+		}
+		$yeL = (($this->h - ($y + $h)) * $k);
+		$yeT = (($this->h - $y) * $k);
+		$xeT = $xeL;
+		$xeB = $xeR;
+		$yeR = $yeT;
+		$yeB = $yeL;
+		if (is_string($brd)) {
+			// convert string to array
+			$slen = strlen($brd);
+			$newbrd = array();
+			for ($i = 0; $i < $slen; ++$i) {
+				$newbrd[$brd{$i}] = array('cap' => 'square', 'join' => 'miter');
+			}
+			$brd = $newbrd;
+		}
+		if (isset($brd['mode'])) {
+			$mode = $brd['mode'];
+			unset($brd['mode']);
+		} else {
+			$mode = 'normal';
+		}
+		foreach ($brd as $border => $style) {
+			if (is_array($style) AND !empty($style)) {
+				// apply border style
+				$prev_style = $this->linestyleWidth.' '.$this->linestyleCap.' '.$this->linestyleJoin.' '.$this->linestyleDash.' '.$this->DrawColor.' ';
+				$s .= $this->SetLineStyle($style, true)."\n";
+			}
+			switch ($mode) {
+				case 'ext': {
+					$off = (($this->LineWidth / 2) * $k);
+					$xL = $xeL - $off;
+					$xR = $xeR + $off;
+					$yT = $yeT + $off;
+					$yL = $yeL - $off;
+					$xT = $xL;
+					$xB = $xR;
+					$yR = $yT;
+					$yB = $yL;
+					$w += $this->LineWidth;
+					$h += $this->LineWidth;
+					break;
+				}
+				case 'int': {
+					$off = ($this->LineWidth / 2) * $k;
+					$xL = $xeL + $off;
+					$xR = $xeR - $off;
+					$yT = $yeT - $off;
+					$yL = $yeL + $off;
+					$xT = $xL;
+					$xB = $xR;
+					$yR = $yT;
+					$yB = $yL;
+					$w -= $this->LineWidth;
+					$h -= $this->LineWidth;
+					break;
+				}
+				case 'normal':
+				default: {
+					$xL = $xeL;
+					$xT = $xeT;
+					$xB = $xeB;
+					$xR = $xeR;
+					$yL = $yeL;
+					$yT = $yeT;
+					$yB = $yeB;
+					$yR = $yeR;
+					break;
+				}
+			}
+			// draw borders by case
+			if (strlen($border) == 4) {
+				$s .= sprintf('%.2F %.2F %.2F %.2F re S ', $xT, $yT, ($w * $k), (-$h * $k));
+			} elseif (strlen($border) == 3) {
+				if (strpos($border,'B') === false) { // LTR
+					$s .= sprintf('%.2F %.2F m ', $xL, $yL);
+					$s .= sprintf('%.2F %.2F l ', $xT, $yT);
+					$s .= sprintf('%.2F %.2F l ', $xR, $yR);
+					$s .= sprintf('%.2F %.2F l ', $xB, $yB);
+					$s .= 'S ';
+				} elseif (strpos($border,'L') === false) { // TRB
+					$s .= sprintf('%.2F %.2F m ', $xT, $yT);
+					$s .= sprintf('%.2F %.2F l ', $xR, $yR);
+					$s .= sprintf('%.2F %.2F l ', $xB, $yB);
+					$s .= sprintf('%.2F %.2F l ', $xL, $yL);
+					$s .= 'S ';
+				} elseif (strpos($border,'T') === false) { // RBL
+					$s .= sprintf('%.2F %.2F m ', $xR, $yR);
+					$s .= sprintf('%.2F %.2F l ', $xB, $yB);
+					$s .= sprintf('%.2F %.2F l ', $xL, $yL);
+					$s .= sprintf('%.2F %.2F l ', $xT, $yT);
+					$s .= 'S ';
+				} elseif (strpos($border,'R') === false) { // BLT
+					$s .= sprintf('%.2F %.2F m ', $xB, $yB);
+					$s .= sprintf('%.2F %.2F l ', $xL, $yL);
+					$s .= sprintf('%.2F %.2F l ', $xT, $yT);
+					$s .= sprintf('%.2F %.2F l ', $xR, $yR);
+					$s .= 'S ';
+				}
+			} elseif (strlen($border) == 2) {
+				if ((strpos($border,'L') !== false) AND (strpos($border,'T') !== false)) { // LT
+					$s .= sprintf('%.2F %.2F m ', $xL, $yL);
+					$s .= sprintf('%.2F %.2F l ', $xT, $yT);
+					$s .= sprintf('%.2F %.2F l ', $xR, $yR);
+					$s .= 'S ';
+				} elseif ((strpos($border,'T') !== false) AND (strpos($border,'R') !== false)) { // TR
+					$s .= sprintf('%.2F %.2F m ', $xT, $yT);
+					$s .= sprintf('%.2F %.2F l ', $xR, $yR);
+					$s .= sprintf('%.2F %.2F l ', $xB, $yB);
+					$s .= 'S ';
+				} elseif ((strpos($border,'R') !== false) AND (strpos($border,'B') !== false)) { // RB
+					$s .= sprintf('%.2F %.2F m ', $xR, $yR);
+					$s .= sprintf('%.2F %.2F l ', $xB, $yB);
+					$s .= sprintf('%.2F %.2F l ', $xL, $yL);
+					$s .= 'S ';
+				} elseif ((strpos($border,'B') !== false) AND (strpos($border,'L') !== false)) { // BL
+					$s .= sprintf('%.2F %.2F m ', $xB, $yB);
+					$s .= sprintf('%.2F %.2F l ', $xL, $yL);
+					$s .= sprintf('%.2F %.2F l ', $xT, $yT);
+					$s .= 'S ';
+				} elseif ((strpos($border,'L') !== false) AND (strpos($border,'R') !== false)) { // LR
+					$s .= sprintf('%.2F %.2F m ', $xL, $yL);
+					$s .= sprintf('%.2F %.2F l ', $xT, $yT);
+					$s .= 'S ';
+					$s .= sprintf('%.2F %.2F m ', $xR, $yR);
+					$s .= sprintf('%.2F %.2F l ', $xB, $yB);
+					$s .= 'S ';
+				} elseif ((strpos($border,'T') !== false) AND (strpos($border,'B') !== false)) { // TB
+					$s .= sprintf('%.2F %.2F m ', $xT, $yT);
+					$s .= sprintf('%.2F %.2F l ', $xR, $yR);
+					$s .= 'S ';
+					$s .= sprintf('%.2F %.2F m ', $xB, $yB);
+					$s .= sprintf('%.2F %.2F l ', $xL, $yL);
+					$s .= 'S ';
+				}
+			} else { // strlen($border) == 1
+				if (strpos($border,'L') !== false) { // L
+					$s .= sprintf('%.2F %.2F m ', $xL, $yL);
+					$s .= sprintf('%.2F %.2F l ', $xT, $yT);
+					$s .= 'S ';
+				} elseif (strpos($border,'T') !== false) { // T
+					$s .= sprintf('%.2F %.2F m ', $xT, $yT);
+					$s .= sprintf('%.2F %.2F l ', $xR, $yR);
+					$s .= 'S ';
+				} elseif (strpos($border,'R') !== false) { // R
+					$s .= sprintf('%.2F %.2F m ', $xR, $yR);
+					$s .= sprintf('%.2F %.2F l ', $xB, $yB);
+					$s .= 'S ';
+				} elseif (strpos($border,'B') !== false) { // B
+					$s .= sprintf('%.2F %.2F m ', $xB, $yB);
+					$s .= sprintf('%.2F %.2F l ', $xL, $yL);
+					$s .= 'S ';
+				}
+			}
+			if (is_array($style) AND !empty($style)) {
+				// reset border style to previous value
+				$s .= "\n".$this->linestyleWidth.' '.$this->linestyleCap.' '.$this->linestyleJoin.' '.$this->linestyleDash.' '.$this->DrawColor."\n";
+			}
+		}
+		return $s;
+	}
+
+	/**
+	 * This method allows printing text with line breaks.
+	 * They can be automatic (as soon as the text reaches the right border of the cell) or explicit (via the \n character). As many cells as necessary are output, one below the other.<br />
+	 * Text can be aligned, centered or justified. The cell block can be framed and the background painted.
+	 * @param $w (float) Width of cells. If 0, they extend up to the right margin of the page.
+	 * @param $h (float) Cell minimum height. The cell extends automatically if needed.
+	 * @param $txt (string) String to print
+	 * @param $border (mixed) Indicates if borders must be drawn around the cell. The value can be a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul> or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+	 * @param $align (string) Allows to center or align the text. Possible values are:<ul><li>L or empty string: left align</li><li>C: center</li><li>R: right align</li><li>J: justification (default value when $ishtml=false)</li></ul>
+	 * @param $fill (boolean) Indicates if the cell background must be painted (true) or transparent (false).
+	 * @param $ln (int) Indicates where the current position should go after the call. Possible values are:<ul><li>0: to the right</li><li>1: to the beginning of the next line [DEFAULT]</li><li>2: below</li></ul>
+	 * @param $x (float) x position in user units
+	 * @param $y (float) y position in user units
+	 * @param $reseth (boolean) if true reset the last cell height (default true).
+	 * @param $stretch (int) font stretch mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if text is larger than cell width</li><li>2 = forced horizontal scaling to fit cell width</li><li>3 = character spacing only if text is larger than cell width</li><li>4 = forced character spacing to fit cell width</li></ul> General font stretching and scaling values will be preserved when possible.
+	 * @param $ishtml (boolean) set to true if $txt is HTML content (default = false).
+	 * @param $autopadding (boolean) if true, uses internal padding and automatically adjust it to account for line width.
+	 * @param $maxh (float) maximum height. It should be >= $h and less then remaining space to the bottom of the page, or 0 for disable this feature. This feature works only when $ishtml=false.
+	 * @param $valign (string) Vertical alignment of text (requires $maxh = $h > 0). Possible values are:<ul><li>T: TOP</li><li>M: middle</li><li>B: bottom</li></ul>. This feature works only when $ishtml=false.
+	 * @param $fitcell (boolean) if true attempt to fit all the text within the cell by reducing the font size.
+	 * @return int Return the number of cells or 1 for html mode.
+	 * @public
+	 * @since 1.3
+	 * @see SetFont(), SetDrawColor(), SetFillColor(), SetTextColor(), SetLineWidth(), Cell(), Write(), SetAutoPageBreak()
+	 */
+	public function MultiCell($w, $h, $txt, $border=0, $align='J', $fill=false, $ln=1, $x='', $y='', $reseth=true, $stretch=0, $ishtml=false, $autopadding=true, $maxh=0, $valign='T', $fitcell=false) {
+		$prev_cell_margin = $this->cell_margin;
+		$prev_cell_padding = $this->cell_padding;
+		// adjust internal padding
+		$this->adjustCellPadding($border);
+		$mc_padding = $this->cell_padding;
+		$mc_margin = $this->cell_margin;
+		$this->cell_padding['T'] = 0;
+		$this->cell_padding['B'] = 0;
+		$this->setCellMargins(0, 0, 0, 0);
+		if ($this->empty_string($this->lasth) OR $reseth) {
+			// reset row height
+			$this->resetLastH();
+		}
+		if (!$this->empty_string($y)) {
+			$this->SetY($y);
+		} else {
+			$y = $this->GetY();
+		}
+		$resth = 0;
+		if ((!$this->InFooter) AND (($y + $h + $mc_margin['T'] + $mc_margin['B']) > $this->PageBreakTrigger)) {
+			// spit cell in more pages/columns
+			$newh = $this->PageBreakTrigger - $y;
+			$resth = $h - $newh; // cell to be printed on the next page/column
+			$h = $newh;
+		}
+		// get current page number
+		$startpage = $this->page;
+		// get current column
+		$startcolumn = $this->current_column;
+		if (!$this->empty_string($x)) {
+			$this->SetX($x);
+		} else {
+			$x = $this->GetX();
+		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions(0, $x, $y);
+		// apply margins
+		$oy = $y + $mc_margin['T'];
+		if ($this->rtl) {
+			$ox = $this->w - $x - $mc_margin['R'];
+		} else {
+			$ox = $x + $mc_margin['L'];
+		}
+		$this->x = $ox;
+		$this->y = $oy;
+		// set width
+		if ($this->empty_string($w) OR ($w <= 0)) {
+			if ($this->rtl) {
+				$w = $this->x - $this->lMargin - $mc_margin['L'];
+			} else {
+				$w = $this->w - $this->x - $this->rMargin - $mc_margin['R'];
+			}
+		}
+		// store original margin values
+		$lMargin = $this->lMargin;
+		$rMargin = $this->rMargin;
+		if ($this->rtl) {
+			$this->rMargin = $this->w - $this->x;
+			$this->lMargin = $this->x - $w;
+		} else {
+			$this->lMargin = $this->x;
+			$this->rMargin = $this->w - $this->x - $w;
+		}
+		if ($autopadding) {
+			// add top padding
+			$this->y += $mc_padding['T'];
+		}
+		if ($ishtml) { // ******* Write HTML text
+			$this->writeHTML($txt, true, 0, $reseth, true, $align);
+			$nl = 1;
+		} else { // ******* Write simple text
+			// vertical alignment
+			if ($maxh > 0) {
+				// get text height
+				$text_height = $this->getStringHeight($w, $txt, $reseth, $autopadding, $mc_padding, $border);
+				if ($fitcell) {
+					$prev_FontSizePt = $this->FontSizePt;
+					// try to reduce font size to fit text on cell (use a quick search algorithm)
+					$fmin = 1;
+					$fmax = $this->FontSizePt;
+					$prev_text_height = $text_height;
+					$maxit = 100; // max number of iterations
+					while ($maxit > 0) {
+						$fmid = (($fmax + $fmin) / 2);
+						$this->SetFontSize($fmid, false);
+						$this->resetLastH();
+						$text_height = $this->getStringHeight($w, $txt, $reseth, $autopadding, $mc_padding, $border);
+						if (($text_height == $maxh) OR (($text_height < $maxh) AND ($fmin >= ($fmax - 0.01)))) {
+							break;
+						} elseif ($text_height < $maxh) {
+							$fmin = $fmid;
+						} else {
+							$fmax = $fmid;
 						}
+						--$maxit;
 					}
+					$this->SetFontSize($this->FontSizePt);
 				}
-				$nl = $this->Write($this->lasth, $txt, '', 0, $align, true, $stretch, false, true, $maxh);
-				if ($fitcell) {
-					// restore font size
-					$this->SetFontSize($prev_FontSizePt);
+				if ($text_height < $maxh) {
+					if ($valign == 'M') {
+						// text vertically centered
+						$this->y += (($maxh - $text_height) / 2);
+					} elseif ($valign == 'B') {
+						// text vertically aligned on bottom
+						$this->y += ($maxh - $text_height);
+					}
 				}
 			}
-			if ($autopadding) {
-				// add bottom padding
-				$this->y += $this->cMargin;
-				// Add bottom space if needed
-				if (($this->lasth - $this->FontSize) < $this->LineWidth) {
-					$this->y += $this->LineWidth / 2;
+			$nl = $this->Write($this->lasth, $txt, '', 0, $align, true, $stretch, false, true, $maxh, 0, $mc_margin);
+			if ($fitcell) {
+				// restore font size
+				$this->SetFontSize($prev_FontSizePt);
+			}
+		}
+		if ($autopadding) {
+			// add bottom padding
+			$this->y += $mc_padding['B'];
+		}
+		// Get end-of-text Y position
+		$currentY = $this->y;
+		// get latest page number
+		$endpage = $this->page;
+		if ($resth > 0) {
+			$skip = ($endpage - $startpage);
+			$tmpresth = $resth;
+			while ($tmpresth > 0) {
+				if ($skip <= 0) {
+					// add a page (or trig AcceptPageBreak() for multicolumn mode)
+					$this->checkPageBreak($this->PageBreakTrigger + 1);
+				}
+				if ($this->num_columns > 1) {
+					$tmpresth -= ($this->h - $this->y - $this->bMargin);
+				} else {
+					$tmpresth -= ($this->h - $this->tMargin - $this->bMargin);
 				}
+				--$skip;
 			}
-			// Get end-of-text Y position
 			$currentY = $this->y;
-			// get latest page number
 			$endpage = $this->page;
-			if ($resth > 0) {
-				$skip = ($endpage - $startpage);
-				$tmpresth = $resth;
-				while ($tmpresth > 0) {
-					if ($skip <= 0) {
-						// add a page (or trig AcceptPageBreak() for multicolumn mode)
-						$this->checkPageBreak($this->PageBreakTrigger + 1);
-					}
-					$tmpresth -= ($this->h - $this->tMargin - $this->bMargin);
-					--$skip;
-				}
-				$currentY = $this->y;
-				$endpage = $this->page;
-			}
-			// check if a new page has been created
-			if ($endpage > $startpage) {
-				// design borders around HTML cells.
-				for ($page=$startpage; $page <= $endpage; ++$page) {
-					$this->setPage($page);
-					if ($page == $startpage) {
-						// first page
-						$this->y = $starty; // put cursor at the beginning of cell on the first page
-						$h = $this->h - $starty - $this->bMargin;
-						$cborder = $this->getBorderMode($border, $position='start');
-					} elseif ($page == $endpage) {
-						// last page
-						$this->y = $this->tMargin; // put cursor at the beginning of last page
-						$h = $currentY - $this->tMargin;
+		}
+		// get latest column
+		$endcolumn = $this->current_column;
+		if ($this->num_columns == 0) {
+			$this->num_columns = 1;
+		}
+		// get border modes
+		$border_start = $this->getBorderMode($border, $position='start');
+		$border_end = $this->getBorderMode($border, $position='end');
+		$border_middle = $this->getBorderMode($border, $position='middle');
+		// design borders around HTML cells.
+		for ($page = $startpage; $page <= $endpage; ++$page) { // for each page
+			$ccode = '';
+			$this->setPage($page);
+			if ($this->num_columns < 2) {
+				// single-column mode
+				$this->SetX($x);
+				$this->y = $this->tMargin;
+			}
+			// account for margin changes
+			if ($page > $startpage) {
+				if (($this->rtl) AND ($this->pagedim[$page]['orm'] != $this->pagedim[$startpage]['orm'])) {
+					$this->x -= ($this->pagedim[$page]['orm'] - $this->pagedim[$startpage]['orm']);
+				} elseif ((!$this->rtl) AND ($this->pagedim[$page]['olm'] != $this->pagedim[$startpage]['olm'])) {
+					$this->x += ($this->pagedim[$page]['olm'] - $this->pagedim[$startpage]['olm']);
+				}
+			}
+			if ($startpage == $endpage) {
+				// single page
+				for ($column = $startcolumn; $column <= $endcolumn; ++$column) { // for each column
+					$this->selectColumn($column);
+					if ($this->rtl) {
+						$this->x -= $mc_margin['R'];
+					} else {
+						$this->x += $mc_margin['L'];
+					}
+					if ($startcolumn == $endcolumn) { // single column
+						$cborder = $border;
+						$h = max($h, ($currentY - $oy));
+						$this->y = $oy;
+					} elseif ($column == $startcolumn) { // first column
+						$cborder = $border_start;
+						$this->y = $oy;
+						$h = $this->h - $this->y - $this->bMargin;
+					} elseif ($column == $endcolumn) { // end column
+						$cborder = $border_end;
+						$h = $currentY - $this->y;
 						if ($resth > $h) {
 							$h = $resth;
 						}
-						$cborder = $this->getBorderMode($border, $position='end');
+					} else { // middle column
+						$cborder = $border_middle;
+						$h = $this->h - $this->y - $this->bMargin;
+						$resth -= $h;
+					}
+					$ccode .= $this->getCellCode($w, $h, '', $cborder, 1, '', $fill, '', 0, true)."\n";
+				} // end for each column
+			} elseif ($page == $startpage) { // first page
+				for ($column = $startcolumn; $column < $this->num_columns; ++$column) { // for each column
+					$this->selectColumn($column);
+					if ($this->rtl) {
+						$this->x -= $mc_margin['R'];
 					} else {
-						$this->y = $this->tMargin; // put cursor at the beginning of the current page
-						$h = $this->h - $this->tMargin - $this->bMargin;
+						$this->x += $mc_margin['L'];
+					}
+					if ($column == $startcolumn) { // first column
+						$cborder = $border_start;
+						$this->y = $oy;
+						$h = $this->h - $this->y - $this->bMargin;
+					} else { // middle column
+						$cborder = $border_middle;
+						$h = $this->h - $this->y - $this->bMargin;
 						$resth -= $h;
-						$cborder = $this->getBorderMode($border, $position='middle');
 					}
-					$nx = $x;
-					// account for margin changes
-					if ($page > $startpage) {
-						if (($this->rtl) AND ($this->pagedim[$page]['orm'] != $this->pagedim[$startpage]['orm'])) {
-							$nx = $x + ($this->pagedim[$page]['orm'] - $this->pagedim[$startpage]['orm']);
-						} elseif ((!$this->rtl) AND ($this->pagedim[$page]['olm'] != $this->pagedim[$startpage]['olm'])) {
-							$nx = $x + ($this->pagedim[$page]['olm'] - $this->pagedim[$startpage]['olm']);
+					$ccode .= $this->getCellCode($w, $h, '', $cborder, 1, '', $fill, '', 0, true)."\n";
+				} // end for each column
+			} elseif ($page == $endpage) { // last page
+				for ($column = 0; $column <= $endcolumn; ++$column) { // for each column
+					$this->selectColumn($column);
+					if ($this->rtl) {
+						$this->x -= $mc_margin['R'];
+					} else {
+						$this->x += $mc_margin['L'];
+					}
+					if ($column == $endcolumn) {
+						// end column
+						$cborder = $border_end;
+						$h = $currentY - $this->y;
+						if ($resth > $h) {
+							$h = $resth;
 						}
+					} else {
+						// middle column
+						$cborder = $border_middle;
+						$h = $this->h - $this->y - $this->bMargin;
+						$resth -= $h;
 					}
-					$this->SetX($nx);
-					$ccode = $this->getCellCode($w, $h, '', $cborder, 1, '', $fill, '', 0, false);
-					if ($cborder OR $fill) {
-						$pagebuff = $this->getPageBuffer($this->page);
-						$pstart = substr($pagebuff, 0, $this->intmrk[$this->page]);
-						$pend = substr($pagebuff, $this->intmrk[$this->page]);
-						$this->setPageBuffer($this->page, $pstart.$ccode."\n".$pend);
-						$this->intmrk[$this->page] += strlen($ccode."\n");
+					$ccode .= $this->getCellCode($w, $h, '', $cborder, 1, '', $fill, '', 0, true)."\n";
+				} // end for each column
+			} else { // middle page
+				for ($column = 0; $column < $this->num_columns; ++$column) { // for each column
+					$this->selectColumn($column);
+					if ($this->rtl) {
+						$this->x -= $mc_margin['R'];
+					} else {
+						$this->x += $mc_margin['L'];
+					}
+					$cborder = $border_middle;
+					$h = $this->h - $this->y - $this->bMargin;
+					$resth -= $h;
+					$ccode .= $this->getCellCode($w, $h, '', $cborder, 1, '', $fill, '', 0, true)."\n";
+				} // end for each column
+			}
+			if ($cborder OR $fill) {
+				// draw border and fill
+				if ($this->inxobj) {
+					// we are inside an XObject template
+					if (end($this->xobjects[$this->xobjid]['transfmrk']) !== false) {
+						$pagemarkkey = key($this->xobjects[$this->xobjid]['transfmrk']);
+						$pagemark = &$this->xobjects[$this->xobjid]['transfmrk'][$pagemarkkey];
+					} else {
+						$pagemark = &$this->xobjects[$this->xobjid]['intmrk'];
 					}
-				}
-			} else {
-				$h = max($h, ($currentY - $y));
-				// put cursor at the beginning of text
-				$this->SetY($y);
-				$this->SetX($x);
-				// design a cell around the text
-				$ccode = $this->getCellCode($w, $h, '', $border, 1, '', $fill, '', 0, true);
-				if ($border OR $fill) {
+					$pagebuff = $this->xobjects[$this->xobjid]['outdata'];
+					$pstart = substr($pagebuff, 0, $pagemark);
+					$pend = substr($pagebuff, $pagemark);
+					$this->xobjects[$this->xobjid]['outdata'] = $pstart.$ccode.$pend;
+					$pagemark += strlen($ccode);
+				} else {
 					if (end($this->transfmrk[$this->page]) !== false) {
 						$pagemarkkey = key($this->transfmrk[$this->page]);
 						$pagemark = &$this->transfmrk[$this->page][$pagemarkkey];
@@ -5574,1331 +6282,1489 @@ if (!class_exists('TCPDF', false)) {
 					$pagebuff = $this->getPageBuffer($this->page);
 					$pstart = substr($pagebuff, 0, $pagemark);
 					$pend = substr($pagebuff, $pagemark);
-					$this->setPageBuffer($this->page, $pstart.$ccode."\n".$pend);
-					$pagemark += strlen($ccode."\n");
-				}
-			}
-			// Get end-of-cell Y position
-			$currentY = $this->GetY();
-			// restore original margin values
-			$this->SetLeftMargin($lMargin);
-			$this->SetRightMargin($rMargin);
-			if ($ln > 0) {
-				//Go to the beginning of the next line
-				$this->SetY($currentY);
-				if ($ln == 2) {
-					$this->SetX($x + $w);
-				}
-			} else {
-				// go left or right by case
-				$this->setPage($startpage);
-				$this->y = $y;
-				$this->SetX($x + $w);
-			}
-			$this->setContentMark();
-			return $nl;
-		}
+					$this->setPageBuffer($this->page, $pstart.$ccode.$pend);
+					$pagemark += strlen($ccode);
+				}
+			}
+		} // end for each page
+		// Get end-of-cell Y position
+		$currentY = $this->GetY();
+		// restore original margin values
+		$this->SetLeftMargin($lMargin);
+		$this->SetRightMargin($rMargin);
+		if ($ln > 0) {
+			//Go to the beginning of the next line
+			$this->SetY($currentY + $mc_margin['B']);
+			if ($ln == 2) {
+				$this->SetX($x + $w + $mc_margin['L'] + $mc_margin['R']);
+			}
+		} else {
+			// go left or right by case
+			$this->setPage($startpage);
+			$this->y = $y;
+			$this->SetX($x + $w + $mc_margin['L'] + $mc_margin['R']);
+		}
+		$this->setContentMark();
+		$this->cell_padding = $prev_cell_padding;
+		$this->cell_margin = $prev_cell_margin;
+		return $nl;
+	}
 
-		/**
-		 * Get the border mode accounting for multicell position (opens bottom side of multicell crossing pages)
-		 * @param mixed $border Indicates if borders must be drawn around the cell block. The value can be either a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul>or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul>
-		 * @param string multicell position: 'start', 'middle', 'end'
-		 * @return border mode
-		 * @access protected
-		 * @since 4.4.002 (2008-12-09)
-		 */
-		protected function getBorderMode($border, $position='start') {
-			if ((!$this->opencell) AND ($border == 1)) {
-				return 1;
+	/**
+	 * Get the border mode accounting for multicell position (opens bottom side of multicell crossing pages)
+	 * @param $brd (mixed) Indicates if borders must be drawn around the cell block. The value can be a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul>or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> or an array of line styles for each border group: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+	 * @param $position (string) multicell position: 'start', 'middle', 'end'
+	 * @return border mode array
+	 * @protected
+	 * @since 4.4.002 (2008-12-09)
+	 */
+	protected function getBorderMode($brd, $position='start') {
+		if ((!$this->opencell) OR empty($brd)) {
+			return $brd;
+		}
+		if ($brd == 1) {
+			$brd = 'LTRB';
+		}
+		if (is_string($brd)) {
+			// convert string to array
+			$slen = strlen($brd);
+			$newbrd = array();
+			for ($i = 0; $i < $slen; ++$i) {
+				$newbrd[$brd{$i}] = array('cap' => 'square', 'join' => 'miter');
 			}
-			$cborder = '';
+			$brd = $newbrd;
+		}
+		foreach ($brd as $border => $style) {
 			switch ($position) {
 				case 'start': {
-					if ($border == 1) {
-						$cborder = 'LTR';
-					} else {
-						if (!(false === strpos($border, 'L'))) {
-							$cborder .= 'L';
-						}
-						if (!(false === strpos($border, 'T'))) {
-							$cborder .= 'T';
-						}
-						if (!(false === strpos($border, 'R'))) {
-							$cborder .= 'R';
-						}
-						if ((!$this->opencell) AND (!(false === strpos($border, 'B')))) {
-							$cborder .= 'B';
+					if (strpos($border, 'B') !== false) {
+						// remove bottom line
+						$newkey = str_replace('B', '', $border);
+						if (strlen($newkey) > 0) {
+							$brd[$newkey] = $style;
 						}
+						unset($brd[$border]);
 					}
 					break;
 				}
 				case 'middle': {
-					if ($border == 1) {
-						$cborder = 'LR';
-					} else {
-						if (!(false === strpos($border, 'L'))) {
-							$cborder .= 'L';
-						}
-						if ((!$this->opencell) AND (!(false === strpos($border, 'T')))) {
-							$cborder .= 'T';
+					if (strpos($border, 'B') !== false) {
+						// remove bottom line
+						$newkey = str_replace('B', '', $border);
+						if (strlen($newkey) > 0) {
+							$brd[$newkey] = $style;
 						}
-						if (!(false === strpos($border, 'R'))) {
-							$cborder .= 'R';
-						}
-						if ((!$this->opencell) AND (!(false === strpos($border, 'B')))) {
-							$cborder .= 'B';
+						unset($brd[$border]);
+						$border = $newkey;
+					}
+					if (strpos($border, 'T') !== false) {
+						// remove bottom line
+						$newkey = str_replace('T', '', $border);
+						if (strlen($newkey) > 0) {
+							$brd[$newkey] = $style;
 						}
+						unset($brd[$border]);
 					}
 					break;
 				}
 				case 'end': {
-					if ($border == 1) {
-						$cborder = 'LRB';
-					} else {
-						if (!(false === strpos($border, 'L'))) {
-							$cborder .= 'L';
-						}
-						if ((!$this->opencell) AND (!(false === strpos($border, 'T')))) {
-							$cborder .= 'T';
-						}
-						if (!(false === strpos($border, 'R'))) {
-							$cborder .= 'R';
-						}
-						if (!(false === strpos($border, 'B'))) {
-							$cborder .= 'B';
+					if (strpos($border, 'T') !== false) {
+						// remove bottom line
+						$newkey = str_replace('T', '', $border);
+						if (strlen($newkey) > 0) {
+							$brd[$newkey] = $style;
 						}
+						unset($brd[$border]);
 					}
 					break;
 				}
-				default: {
-					$cborder = $border;
-					break;
-				}
-			}
-			return $cborder;
-		}
-
-		/**
-		 * This method return the estimated number of lines for print a simple text string in Multicell() method.
-		 * @param string $txt String for calculating his height
-		 * @param float $w Width of cells. If 0, they extend up to the right margin of the page.
-		 * @param boolean $reseth if true reset the last cell height (default false).
-		 * @param boolean $autopadding if true, uses internal padding and automatically adjust it to account for line width (default true).
-		 * @param float $cellMargin Internal cell margin, if empty or <= 0, extended up to current pdf cell margin (default '').
-		 * @param float $lineWidth Line width, if empty or <= 0, extended up to current pdf line width (default '').
-		 * @return float Return the minimal height needed for multicell method for printing the $txt param.
-		 * @author Alexander Escalona Fern�ndez, Nicola Asuni
-		 * @access public
-		 * @since 4.5.011
-		 */
-		public function getNumLines($txt, $w=0, $reseth=false, $autopadding=true, $cellMargin='', $lineWidth='') {
-			if ($this->empty_string($w) OR ($w <= 0)) {
-				if ($this->rtl) {
-					$w = $this->x - $this->lMargin;
-				} else {
-					$w = $this->w - $this->rMargin - $this->x;
-				}
-			}
-			if ($this->empty_string($cellMargin) OR ($cellMargin <= 0)) {
-				$cellMargin = $this->cMargin;
-			}
-			if ($this->empty_string($lineWidth) OR ($lineWidth <= 0)) {
-				$lineWidth = $this->LineWidth;
-			}
-			if ($autopadding) {
-				// adjust internal padding
-				if ($cellMargin < ($lineWidth/2)) {
-					$cellMargin = ($lineWidth/2);
-				}
-			}
-			$wmax = $w - (2 * $cellMargin);
-			if ($reseth) {
-				$this->lasth = $this->FontSize * $this->cell_height_ratio;
-			}
-			$lines = 1;
-			$sum = 0;
-			$chars = $this->utf8Bidi($this->UTF8StringToArray($txt), $txt, $this->tmprtl);
-			$charsWidth = $this->GetArrStringWidth($chars, '', '', 0, true);
-			$length = count($chars);
-			$lastSeparator = -1;
-			for ($i = 0; $i < $length; ++$i) {
-				$charWidth = $charsWidth[$i];
-				if (preg_match($this->re_spaces, $this->unichr($chars[$i]))) {
-					$lastSeparator = $i;
-				}
-				if ((($sum + $charWidth) > $wmax) OR ($chars[$i] == 10)) {
-					++$lines;
-					if ($lastSeparator != -1) {
-						$i = $lastSeparator;
-						$lastSeparator = -1;
-						$sum = 0;
-					} else {
-						$sum = $charWidth;
-					}
-				} else {
-					$sum += $charWidth;
-				}
-			}
-			if ($chars[($length - 1)] == 10) {
-				--$lines;
-			}
-			return $lines;
-		}
-
-		/**
-		 * This method return the estimated needed height for print a simple text string in Multicell() method.
-		 * Generally, if you want to know the exact height for a block of content you can use the following alternative technique:
-		 * <pre>
-		 *  // store current object
-		 *  $pdf->startTransaction();
-		 *  // store starting values
-		 *  $start_y = $pdf->GetY();
-		 *  $start_page = $pdf->getPage();
-		 *  // call your printing functions with your parameters
-		 *  // - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-		 *  $pdf->MultiCell($w=0, $h=0, $txt, $border=1, $align='L', $fill=0, $ln=1, $x='', $y='', $reseth=true, $stretch=0, $ishtml=false, $autopadding=true, $maxh=0);
-		 *  // - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-		 *  // get the new Y
-		 *  $end_y = $pdf->GetY();
-		 *  $end_page = $pdf->getPage();
-		 *  // calculate height
-		 *  $height = 0;
-		 *  if ($end_page == $start_page) {
-		 *  	$height = $end_y - $start_y;
-		 *  } else {
-		 *  	for ($page=$start_page; $page <= $end_page; ++$page) {
-		 *  		$this->setPage($page);
-		 *  		if ($page == $start_page) {
-		 *  			// first page
-		 *  			$height = $this->h - $start_y - $this->bMargin;
-		 *  		} elseif ($page == $end_page) {
-		 *  			// last page
-		 *  			$height = $end_y - $this->tMargin;
-		 *  		} else {
-		 *  			$height = $this->h - $this->tMargin - $this->bMargin;
-		 *  		}
-		 *  	}
-		 *  }
-		 *  // restore previous object
-		 *  $pdf = $pdf->rollbackTransaction();
-		 * </pre>
-		 * @param float $w Width of cells. If 0, they extend up to the right margin of the page.
-		 * @param string $txt String for calculating his height
-		 * @param boolean $reseth if true reset the last cell height (default false).
-		 * @param boolean $autopadding if true, uses internal padding and automatically adjust it to account for line width (default true).
-		 * @param float $cellMargin Internal cell margin, if empty or <= 0, extended up to current pdf cell margin (default '').
-		 * @param float $lineWidth Line width, if empty or <= 0, extended up to current pdf line width (default '').
-		 * @return float Return the minimal height needed for multicell method for printing the $txt param.
-		 * @author Nicola Asuni, Alexander Escalona Fern�ndez
-		 * @access public
-		 */
-		public function getStringHeight($w, $txt, $reseth=false, $autopadding=true, $cellMargin='', $lineWidth='') {
-			$lines = $this->getNumLines($txt, $w, $reseth, $autopadding, $cellMargin, $lineWidth);
-			$height = $lines * ($this->FontSize * $this->cell_height_ratio);
-			if ($autopadding) {
-				if ($this->empty_string($cellMargin) OR ($cellMargin <= 0)) {
-					$cellMargin = $this->cMargin;
-				}
-				if ($this->empty_string($lineWidth) OR ($lineWidth <= 0)) {
-					$lineWidth = $this->LineWidth;
-				}
-				// adjust internal padding
-				if ($cellMargin < ($lineWidth/2)) {
-					$cellMargin = ($lineWidth/2);
-				}
-				// add top and bottom space if needed
-				if (($this->lasth - $this->FontSize) < $lineWidth) {
-					$height += $lineWidth;
-				}
-				// add top and bottom padding
-				$height += (2 * $cellMargin);
-			}
-			return $height;
-		}
-
-		/**
-		 * This method prints text from the current position.<br />
-		 * @param float $h Line height
-		 * @param string $txt String to print
-		 * @param mixed $link URL or identifier returned by AddLink()
-		 * @param int $fill Indicates if the background must be painted (1) or transparent (0). Default value: 0.
-		 * @param string $align Allows to center or align the text. Possible values are:<ul><li>L or empty string: left align (default value)</li><li>C: center</li><li>R: right align</li><li>J: justify</li></ul>
-		 * @param boolean $ln if true set cursor at the bottom of the line, otherwise set cursor at the top of the line.
-		 * @param int $stretch stretch carachter mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if necessary</li><li>2 = forced horizontal scaling</li><li>3 = character spacing only if necessary</li><li>4 = forced character spacing</li></ul>
-		 * @param boolean $firstline if true prints only the first line and return the remaining string.
-		 * @param boolean $firstblock if true the string is the starting of a line.
-		 * @param float $maxh maximum height. The remaining unprinted text will be returned. It should be >= $h and less then remaining space to the bottom of the page, or 0 for disable this feature.
-		 * @return mixed Return the number of cells or the remaining string if $firstline = true.
-		 * @access public
-		 * @since 1.5
-		 */
-		public function Write($h, $txt, $link='', $fill=0, $align='', $ln=false, $stretch=0, $firstline=false, $firstblock=false, $maxh=0) {
-			if (strlen($txt) == 0) {
-				$txt = ' ';
-			}
-			// remove carriage returns
-			$s = str_replace("\r", '', $txt);
-			// check if string contains arabic text
-			if (preg_match(K_RE_PATTERN_ARABIC, $s)) {
-				$arabic = true;
-			} else {
-				$arabic = false;
 			}
-			// check if string contains RTL text
-			if ($arabic OR ($this->tmprtl == 'R') OR preg_match(K_RE_PATTERN_RTL, $txt)) {
-				$rtlmode = true;
-			} else {
-				$rtlmode = false;
-			}
-			// get a char width
-			$chrwidth = $this->GetCharWidth('.');
-			// get array of unicode values
-			$chars = $this->UTF8StringToArray($s);
-			// get array of chars
-			$uchars = $this->UTF8ArrayToUniArray($chars);
-			// get the number of characters
-			$nb = count($chars);
-			// replacement for SHY character (minus symbol)
-			$shy_replacement = 45;
-			$shy_replacement_char = $this->unichr($shy_replacement);
-			// widht for SHY replacement
-			$shy_replacement_width = $this->GetCharWidth($shy_replacement);
-			// store current position
-			//$prevx = $this->x;
-			//$prevy = $this->y;
-			// max Y
-			$maxy = $this->y + $maxh - $h - (2 * $this->cMargin);
-			// calculate remaining line width ($w)
+		}
+		return $brd;
+	}
+
+	/**
+	 * This method return the estimated number of lines for print a simple text string using Multicell() method.
+	 * @param $txt (string) String for calculating his height
+	 * @param $w (float) Width of cells. If 0, they extend up to the right margin of the page.
+	 * @param $reseth (boolean) if true reset the last cell height (default false).
+	 * @param $autopadding (boolean) if true, uses internal padding and automatically adjust it to account for line width (default true).
+	 * @param $cellpadding (float) Internal cell padding, if empty uses default cell padding.
+	 * @param $border (mixed) Indicates if borders must be drawn around the cell. The value can be a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul> or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+	 * @return float Return the minimal height needed for multicell method for printing the $txt param.
+	 * @author Alexander Escalona Fernández, Nicola Asuni
+	 * @public
+	 * @since 4.5.011
+	 */
+	public function getNumLines($txt, $w=0, $reseth=false, $autopadding=true, $cellpadding='', $border=0) {
+		if ($txt === '') {
+			// empty string
+			return 1;
+		}
+		// adjust internal padding
+		$prev_cell_padding = $this->cell_padding;
+		$prev_lasth = $this->lasth;
+		if (is_array($cellpadding)) {
+			$this->cell_padding = $cellpadding;
+		}
+		$this->adjustCellPadding($border);
+		if ($this->empty_string($w) OR ($w <= 0)) {
 			if ($this->rtl) {
 				$w = $this->x - $this->lMargin;
 			} else {
 				$w = $this->w - $this->rMargin - $this->x;
 			}
-			// max column width
-			$wmax = $w - (2 * $this->cMargin);
-			if ((!$firstline) AND (($chrwidth > $wmax) OR ($this->GetCharWidth($chars[0]) > $wmax))) {
-				// a single character do not fit on column
-				return '';
-			}
-			// minimum row height
-			$row_height = max($h, $this->FontSize * $this->cell_height_ratio);
-			$start_page = $this->page;
-			$i = 0; // character position
-			$j = 0; // current starting position
-			$sep = -1; // position of the last blank space
-			$shy = false; // true if the last blank is a soft hypen (SHY)
-			$l = 0; // current string length
-			$nl = 0; //number of lines
-			$linebreak = false;
-			$pc = 0; // previous character
-			// for each character
-			while ($i < $nb) {
-				if (($maxh > 0) AND ($this->y >= $maxy) ) {
-					break;
+		}
+		$wmax = $w - $this->cell_padding['L'] - $this->cell_padding['R'];
+		if ($reseth) {
+			// reset row height
+			$this->resetLastH();
+		}
+		$lines = 1;
+		$sum = 0;
+		$chars = $this->utf8Bidi($this->UTF8StringToArray($txt), $txt, $this->tmprtl);
+		$charsWidth = $this->GetArrStringWidth($chars, '', '', 0, true);
+		$length = count($chars);
+		$lastSeparator = -1;
+		for ($i = 0; $i < $length; ++$i) {
+			$charWidth = $charsWidth[$i];
+			if (preg_match($this->re_spaces, $this->unichr($chars[$i]))) {
+				$lastSeparator = $i;
+			}
+			if ((($sum + $charWidth) > $wmax) OR ($chars[$i] == 10)) {
+				++$lines;
+				if ($lastSeparator != -1) {
+					$i = $lastSeparator;
+					$lastSeparator = -1;
+					$sum = 0;
+				} else {
+					$sum = $charWidth;
 				}
-				//Get the current character
-				$c = $chars[$i];
-				if ($c == 10) { // 10 = "\n" = new line
-					//Explicit line break
-					if ($align == 'J') {
-						if ($this->rtl) {
-							$talign = 'R';
-						} else {
-							$talign = 'L';
-						}
+			} else {
+				$sum += $charWidth;
+			}
+		}
+		if ($chars[($length - 1)] == 10) {
+			--$lines;
+		}
+		$this->cell_padding = $prev_cell_padding;
+		$this->lasth = $prev_lasth;
+		return $lines;
+	}
+
+	/**
+	 * This method return the estimated needed height for print a simple text string in Multicell() method.
+	 * Generally, if you want to know the exact height for a block of content you can use the following alternative technique:
+	 * @pre
+	 *  // store current object
+	 *  $pdf->startTransaction();
+	 *  // store starting values
+	 *  $start_y = $pdf->GetY();
+	 *  $start_page = $pdf->getPage();
+	 *  // call your printing functions with your parameters
+	 *  // - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+	 *  $pdf->MultiCell($w=0, $h=0, $txt, $border=1, $align='L', $fill=false, $ln=1, $x='', $y='', $reseth=true, $stretch=0, $ishtml=false, $autopadding=true, $maxh=0);
+	 *  // - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+	 *  // get the new Y
+	 *  $end_y = $pdf->GetY();
+	 *  $end_page = $pdf->getPage();
+	 *  // calculate height
+	 *  $height = 0;
+	 *  if ($end_page == $start_page) {
+	 *  	$height = $end_y - $start_y;
+	 *  } else {
+	 *  	for ($page=$start_page; $page <= $end_page; ++$page) {
+	 *  		$this->setPage($page);
+	 *  		if ($page == $start_page) {
+	 *  			// first page
+	 *  			$height = $this->h - $start_y - $this->bMargin;
+	 *  		} elseif ($page == $end_page) {
+	 *  			// last page
+	 *  			$height = $end_y - $this->tMargin;
+	 *  		} else {
+	 *  			$height = $this->h - $this->tMargin - $this->bMargin;
+	 *  		}
+	 *  	}
+	 *  }
+	 *  // restore previous object
+	 *  $pdf = $pdf->rollbackTransaction();
+	 *
+	 * @param $w (float) Width of cells. If 0, they extend up to the right margin of the page.
+	 * @param $txt (string) String for calculating his height
+	 * @param $reseth (boolean) if true reset the last cell height (default false).
+	 * @param $autopadding (boolean) if true, uses internal padding and automatically adjust it to account for line width (default true).
+	 * @param $cellpadding (float) Internal cell padding, if empty uses default cell padding.
+	 * @param $border (mixed) Indicates if borders must be drawn around the cell. The value can be a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul> or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+	 * @return float Return the minimal height needed for multicell method for printing the $txt param.
+	 * @author Nicola Asuni, Alexander Escalona Fernández
+	 * @public
+	 */
+	public function getStringHeight($w, $txt, $reseth=false, $autopadding=true, $cellpadding='', $border=0) {
+		// adjust internal padding
+		$prev_cell_padding = $this->cell_padding;
+		$prev_lasth = $this->lasth;
+		if (is_array($cellpadding)) {
+			$this->cell_padding = $cellpadding;
+		}
+		$this->adjustCellPadding($border);
+		$lines = $this->getNumLines($txt, $w, $reseth, $autopadding, $cellpadding, $border);
+		$height = $lines * ($this->FontSize * $this->cell_height_ratio);
+		if ($autopadding) {
+			// add top and bottom padding
+			$height += ($this->cell_padding['T'] + $this->cell_padding['B']);
+		}
+		$this->cell_padding = $prev_cell_padding;
+		$this->lasth = $prev_lasth;
+		return $height;
+	}
+
+	/**
+	 * This method prints text from the current position.<br />
+	 * @param $h (float) Line height
+	 * @param $txt (string) String to print
+	 * @param $link (mixed) URL or identifier returned by AddLink()
+	 * @param $fill (boolean) Indicates if the cell background must be painted (true) or transparent (false).
+	 * @param $align (string) Allows to center or align the text. Possible values are:<ul><li>L or empty string: left align (default value)</li><li>C: center</li><li>R: right align</li><li>J: justify</li></ul>
+	 * @param $ln (boolean) if true set cursor at the bottom of the line, otherwise set cursor at the top of the line.
+	 * @param $stretch (int) font stretch mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if text is larger than cell width</li><li>2 = forced horizontal scaling to fit cell width</li><li>3 = character spacing only if text is larger than cell width</li><li>4 = forced character spacing to fit cell width</li></ul> General font stretching and scaling values will be preserved when possible.
+	 * @param $firstline (boolean) if true prints only the first line and return the remaining string.
+	 * @param $firstblock (boolean) if true the string is the starting of a line.
+	 * @param $maxh (float) maximum height. The remaining unprinted text will be returned. It should be >= $h and less then remaining space to the bottom of the page, or 0 for disable this feature.
+	 * @param $wadj (float) first line width will be reduced by this amount (used in HTML mode).
+	 * @param $margin (array) margin array of the parent container
+	 * @return mixed Return the number of cells or the remaining string if $firstline = true.
+	 * @public
+	 * @since 1.5
+	 */
+	public function Write($h, $txt, $link='', $fill=false, $align='', $ln=false, $stretch=0, $firstline=false, $firstblock=false, $maxh=0, $wadj=0, $margin='') {
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($h, $this->x, $this->y);
+		if (strlen($txt) == 0) {
+			// fix empty text
+			$txt = ' ';
+		}
+		if ($margin === '') {
+			// set default margins
+			$margin = $this->cell_margin;
+		}
+		// remove carriage returns
+		$s = str_replace("\r", '', $txt);
+		// check if string contains arabic text
+		if (preg_match($this->unicode->uni_RE_PATTERN_ARABIC, $s)) {
+			$arabic = true;
+		} else {
+			$arabic = false;
+		}
+		// check if string contains RTL text
+		if ($arabic OR ($this->tmprtl == 'R') OR preg_match($this->unicode->uni_RE_PATTERN_RTL, $s)) {
+			$rtlmode = true;
+		} else {
+			$rtlmode = false;
+		}
+		// get a char width
+		$chrwidth = $this->GetCharWidth('.');
+		// get array of unicode values
+		$chars = $this->UTF8StringToArray($s);
+		// get array of chars
+		$uchars = $this->UTF8ArrayToUniArray($chars);
+		// get the number of characters
+		$nb = count($chars);
+		// replacement for SHY character (minus symbol)
+		$shy_replacement = 45;
+		$shy_replacement_char = $this->unichr($shy_replacement);
+		// widht for SHY replacement
+		$shy_replacement_width = $this->GetCharWidth($shy_replacement);
+		// max Y
+		$maxy = $this->y + $maxh - $h - $this->cell_padding['T'] - $this->cell_padding['B'];
+		// calculate remaining line width ($w)
+		if ($this->rtl) {
+			$w = $this->x - $this->lMargin;
+		} else {
+			$w = $this->w - $this->rMargin - $this->x;
+		}
+		// max column width
+		$wmax = $w - $wadj;
+		if (!$firstline) {
+			$wmax -= ($this->cell_padding['L'] + $this->cell_padding['R']);
+		}
+		if ((!$firstline) AND (($chrwidth > $wmax) OR ($this->GetCharWidth($chars[0]) > $wmax))) {
+			// a single character do not fit on column
+			return '';
+		}
+		// minimum row height
+		$row_height = max($h, $this->FontSize * $this->cell_height_ratio);
+		$start_page = $this->page;
+		$i = 0; // character position
+		$j = 0; // current starting position
+		$sep = -1; // position of the last blank space
+		$shy = false; // true if the last blank is a soft hypen (SHY)
+		$l = 0; // current string length
+		$nl = 0; //number of lines
+		$linebreak = false;
+		$pc = 0; // previous character
+		// for each character
+		while ($i < $nb) {
+			if (($maxh > 0) AND ($this->y >= $maxy) ) {
+				break;
+			}
+			//Get the current character
+			$c = $chars[$i];
+			if ($c == 10) { // 10 = "\n" = new line
+				//Explicit line break
+				if ($align == 'J') {
+					if ($this->rtl) {
+						$talign = 'R';
 					} else {
-						$talign = $align;
-					}
-					$tmpstr = $this->UniArrSubString($uchars, $j, $i);
-					if ($firstline) {
-						$startx = $this->x;
-						$tmparr = array_slice($chars, $j, ($i - $j));
-						if ($rtlmode) {
-							$tmparr = $this->utf8Bidi($tmparr, $tmpstr, $this->tmprtl);
-						}
-						$linew = $this->GetArrStringWidth($tmparr);
-						unset($tmparr);
-						if ($this->rtl) {
-							$this->endlinex = $startx - $linew;
-						} else {
-							$this->endlinex = $startx + $linew;
-						}
-						$w = $linew;
-						$tmpcmargin = $this->cMargin;
-						if ($maxh == 0) {
-							$this->cMargin = 0;
-						}
+						$talign = 'L';
 					}
-					if ($firstblock AND $this->isRTLTextDir()) {
-						$tmpstr = rtrim($tmpstr);
+				} else {
+					$talign = $align;
+				}
+				$tmpstr = $this->UniArrSubString($uchars, $j, $i);
+				if ($firstline) {
+					$startx = $this->x;
+					$tmparr = array_slice($chars, $j, ($i - $j));
+					if ($rtlmode) {
+						$tmparr = $this->utf8Bidi($tmparr, $tmpstr, $this->tmprtl);
 					}
-					// Skip newlines at the begining of a page or column
-					if (!empty($tmpstr) OR ($this->y < ($this->PageBreakTrigger - $row_height))) {
-						$this->Cell($w, $h, $tmpstr, 0, 1, $talign, $fill, $link, $stretch);
+					$linew = $this->GetArrStringWidth($tmparr);
+					unset($tmparr);
+					if ($this->rtl) {
+						$this->endlinex = $startx - $linew;
+					} else {
+						$this->endlinex = $startx + $linew;
 					}
-					unset($tmpstr);
-					if ($firstline) {
-						$this->cMargin = $tmpcmargin;
-						return ($this->UniArrSubString($uchars, $i));
+					$w = $linew;
+					$tmpcellpadding = $this->cell_padding;
+					if ($maxh == 0) {
+						$this->SetCellPadding(0);
 					}
-					++$nl;
-					$j = $i + 1;
-					$l = 0;
-					$sep = -1;
-					$shy = false;
-					// account for margin changes
-					if ((($this->y + $this->lasth) > $this->PageBreakTrigger) AND (!$this->InFooter)) {
-						$this->AcceptPageBreak();
+				}
+				if ($firstblock AND $this->isRTLTextDir()) {
+					$tmpstr = $this->stringRightTrim($tmpstr);
+				}
+				// Skip newlines at the begining of a page or column
+				if (!empty($tmpstr) OR ($this->y < ($this->PageBreakTrigger - $row_height))) {
+					$this->Cell($w, $h, $tmpstr, 0, 1, $talign, $fill, $link, $stretch);
+				}
+				unset($tmpstr);
+				if ($firstline) {
+					$this->cell_padding = $tmpcellpadding;
+					return ($this->UniArrSubString($uchars, $i));
+				}
+				++$nl;
+				$j = $i + 1;
+				$l = 0;
+				$sep = -1;
+				$shy = false;
+				// account for margin changes
+				if ((($this->y + $this->lasth) > $this->PageBreakTrigger) AND (!$this->InFooter)) {
+					$this->AcceptPageBreak();
+					if ($this->rtl) {
+						$this->x -= $margin['R'];
+					} else {
+						$this->x += $margin['L'];
 					}
-					$w = $this->getRemainingWidth();
-					$wmax = $w - (2 * $this->cMargin);
-				} else {
-					// 160 is the non-breaking space.
-					// 173 is SHY (Soft Hypen).
-					// \p{Z} or \p{Separator}: any kind of Unicode whitespace or invisible separator.
-					// \p{Lo} or \p{Other_Letter}: a Unicode letter or ideograph that does not have lowercase and uppercase variants.
-					// \p{Lo} is needed because Chinese characters are packed next to each other without spaces in between.
-					if (($c != 160) AND (($c == 173) OR preg_match($this->re_spaces, $this->unichr($c)))) {
-						// update last blank space position
-						$sep = $i;
-						// check if is a SHY
-						if ($c == 173) {
-							$shy = true;
-							if ($pc == 45) {
-								$tmp_shy_replacement_width = 0;
-								$tmp_shy_replacement_char = '';
-							} else {
-								$tmp_shy_replacement_width = $shy_replacement_width;
-								$tmp_shy_replacement_char = $shy_replacement_char;
-							}
+					$this->lMargin += $margin['L'];
+					$this->rMargin += $margin['R'];
+				}
+				$w = $this->getRemainingWidth();
+				$wmax = $w - $this->cell_padding['L'] - $this->cell_padding['R'];
+			} else {
+				// 160 is the non-breaking space.
+				// 173 is SHY (Soft Hypen).
+				// \p{Z} or \p{Separator}: any kind of Unicode whitespace or invisible separator.
+				// \p{Lo} or \p{Other_Letter}: a Unicode letter or ideograph that does not have lowercase and uppercase variants.
+				// \p{Lo} is needed because Chinese characters are packed next to each other without spaces in between.
+				if (($c != 160) AND (($c == 173) OR preg_match($this->re_spaces, $this->unichr($c)))) {
+					// update last blank space position
+					$sep = $i;
+					// check if is a SHY
+					if ($c == 173) {
+						$shy = true;
+						if ($pc == 45) {
+							$tmp_shy_replacement_width = 0;
+							$tmp_shy_replacement_char = '';
 						} else {
-							$shy = false;
+							$tmp_shy_replacement_width = $shy_replacement_width;
+							$tmp_shy_replacement_char = $shy_replacement_char;
 						}
-					}
-					// update string length
-					if ((($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) AND ($arabic)) {
-						// with bidirectional algorithm some chars may be changed affecting the line length
-						// *** very slow ***
-						$l = $this->GetArrStringWidth($this->utf8Bidi(array_slice($chars, $j, ($i - $j)), '', $this->tmprtl));
 					} else {
-						$l += $this->GetCharWidth($c);
-					}
-					if (($l > $wmax) OR (($c == 173) AND (($l + $tmp_shy_replacement_width) > $wmax)) ) {
-						// we have reached the end of column
-						if ($sep == -1) {
-							// check if the line was already started
-							if (($this->rtl AND ($this->x <= ($this->w - $this->rMargin - $chrwidth)))
-								OR ((!$this->rtl) AND ($this->x >= ($this->lMargin + $chrwidth)))) {
-								// print a void cell and go to next line
-								$this->Cell($w, $h, '', 0, 1);
-								$linebreak = true;
-								if ($firstline) {
-									return ($this->UniArrSubString($uchars, $j));
-								}
-							} else {
-								// truncate the word because do not fit on column
-								$tmpstr = $this->UniArrSubString($uchars, $j, $i);
-								if ($firstline) {
-									$startx = $this->x;
-									$tmparr = array_slice($chars, $j, ($i - $j));
-									if ($rtlmode) {
-										$tmparr = $this->utf8Bidi($tmparr, $tmpstr, $this->tmprtl);
-									}
-									$linew = $this->GetArrStringWidth($tmparr);
-									unset($tmparr);
-									if ($this->rtl) {
-										$this->endlinex = $startx - $linew;
-									} else {
-										$this->endlinex = $startx + $linew;
-									}
-									$w = $linew;
-									$tmpcmargin = $this->cMargin;
-									if ($maxh == 0) {
-										$this->cMargin = 0;
-									}
-								}
-								if ($firstblock AND $this->isRTLTextDir()) {
-									$tmpstr = rtrim($tmpstr);
-								}
-								$this->Cell($w, $h, $tmpstr, 0, 1, $align, $fill, $link, $stretch);
-								unset($tmpstr);
-								if ($firstline) {
-									$this->cMargin = $tmpcmargin;
-									return ($this->UniArrSubString($uchars, $i));
-								}
-								$j = $i;
-								--$i;
+						$shy = false;
+					}
+				}
+				// update string length
+				if ($this->isUnicodeFont() AND ($arabic)) {
+					// with bidirectional algorithm some chars may be changed affecting the line length
+					// *** very slow ***
+					$l = $this->GetArrStringWidth($this->utf8Bidi(array_slice($chars, $j, ($i - $j)), '', $this->tmprtl));
+				} else {
+					$l += $this->GetCharWidth($c);
+				}
+				if (($l > $wmax) OR (($c == 173) AND (($l + $tmp_shy_replacement_width) > $wmax)) ) {
+					// we have reached the end of column
+					if ($sep == -1) {
+						// check if the line was already started
+						if (($this->rtl AND ($this->x <= ($this->w - $this->rMargin - $chrwidth)))
+							OR ((!$this->rtl) AND ($this->x >= ($this->lMargin + $chrwidth)))) {
+							// print a void cell and go to next line
+							$this->Cell($w, $h, '', 0, 1);
+							$linebreak = true;
+							if ($firstline) {
+								return ($this->UniArrSubString($uchars, $j));
 							}
 						} else {
-							// word wrapping
-							if ($this->rtl AND (!$firstblock)) {
-								$endspace = 1;
-							} else {
-								$endspace = 0;
-							}
-							if ($shy) {
-								// add hypen (minus symbol) at the end of the line
-								$shy_width = $tmp_shy_replacement_width;
-								if ($this->rtl) {
-									$shy_char_left = $tmp_shy_replacement_char;
-									$shy_char_right = '';
-								} else {
-									$shy_char_left = '';
-									$shy_char_right = $tmp_shy_replacement_char;
-								}
-							} else {
-								$shy_width = 0;
-								$shy_char_left = '';
-								$shy_char_right = '';
-							}
-							$tmpstr = $this->UniArrSubString($uchars, $j, ($sep + $endspace));
+							// truncate the word because do not fit on column
+							$tmpstr = $this->UniArrSubString($uchars, $j, $i);
 							if ($firstline) {
 								$startx = $this->x;
-								$tmparr = array_slice($chars, $j, (($sep + $endspace) - $j));
+								$tmparr = array_slice($chars, $j, ($i - $j));
 								if ($rtlmode) {
 									$tmparr = $this->utf8Bidi($tmparr, $tmpstr, $this->tmprtl);
 								}
 								$linew = $this->GetArrStringWidth($tmparr);
 								unset($tmparr);
 								if ($this->rtl) {
-									$this->endlinex = $startx - $linew - $shy_width;
+									$this->endlinex = $startx - $linew;
 								} else {
-									$this->endlinex = $startx + $linew + $shy_width;
+									$this->endlinex = $startx + $linew;
 								}
 								$w = $linew;
-								$tmpcmargin = $this->cMargin;
+								$tmpcellpadding = $this->cell_padding;
 								if ($maxh == 0) {
-									$this->cMargin = 0;
+									$this->SetCellPadding(0);
 								}
 							}
-							// print the line
 							if ($firstblock AND $this->isRTLTextDir()) {
-								$tmpstr = rtrim($tmpstr);
+								$tmpstr = $this->stringRightTrim($tmpstr);
 							}
-							$this->Cell($w, $h, $shy_char_left.$tmpstr.$shy_char_right, 0, 1, $align, $fill, $link, $stretch);
+							$this->Cell($w, $h, $tmpstr, 0, 1, $align, $fill, $link, $stretch);
 							unset($tmpstr);
 							if ($firstline) {
-								// return the remaining text
-								$this->cMargin = $tmpcmargin;
-								return ($this->UniArrSubString($uchars, ($sep + $endspace)));
+								$this->cell_padding = $tmpcellpadding;
+								return ($this->UniArrSubString($uchars, $i));
 							}
-							$i = $sep;
-							$sep = -1;
-							$shy = false;
-							$j = ($i+1);
-						}
-						// account for margin changes
-						if ((($this->y + $this->lasth) > $this->PageBreakTrigger) AND (!$this->InFooter)) {
-							$this->AcceptPageBreak();
-						}
-						$w = $this->getRemainingWidth();
-						$wmax = $w - (2 * $this->cMargin);
-						if ($linebreak) {
-							$linebreak = false;
+							$j = $i;
+							--$i;
+						}
+					} else {
+						// word wrapping
+						if ($this->rtl AND (!$firstblock) AND ($sep < $i)) {
+							$endspace = 1;
 						} else {
-							++$nl;
-							$l = 0;
+							$endspace = 0;
 						}
-					}
-				}
-				// save last character
-				$pc = $c;
-				++$i;
-			} // end while i < nb
-			// print last substring (if any)
-			if ($l > 0) {
-				switch ($align) {
-					case 'J':
-					case 'C': {
-						$w = $w;
-						break;
-					}
-					case 'L': {
-						if ($this->rtl) {
-							$w = $w;
+						if ($shy) {
+							// add hypen (minus symbol) at the end of the line
+							$shy_width = $tmp_shy_replacement_width;
+							if ($this->rtl) {
+								$shy_char_left = $tmp_shy_replacement_char;
+								$shy_char_right = '';
+							} else {
+								$shy_char_left = '';
+								$shy_char_right = $tmp_shy_replacement_char;
+							}
 						} else {
-							$w = $l;
+							$shy_width = 0;
+							$shy_char_left = '';
+							$shy_char_right = '';
+						}
+						$tmpstr = $this->UniArrSubString($uchars, $j, ($sep + $endspace));
+						if ($firstline) {
+							$startx = $this->x;
+							$tmparr = array_slice($chars, $j, (($sep + $endspace) - $j));
+							if ($rtlmode) {
+								$tmparr = $this->utf8Bidi($tmparr, $tmpstr, $this->tmprtl);
+							}
+							$linew = $this->GetArrStringWidth($tmparr);
+							unset($tmparr);
+							if ($this->rtl) {
+								$this->endlinex = $startx - $linew - $shy_width;
+							} else {
+								$this->endlinex = $startx + $linew + $shy_width;
+							}
+							$w = $linew;
+							$tmpcellpadding = $this->cell_padding;
+							if ($maxh == 0) {
+								$this->SetCellPadding(0);
+							}
 						}
-						break;
+						// print the line
+						if ($firstblock AND $this->isRTLTextDir()) {
+							$tmpstr = $this->stringRightTrim($tmpstr);
+						}
+						$this->Cell($w, $h, $shy_char_left.$tmpstr.$shy_char_right, 0, 1, $align, $fill, $link, $stretch);
+						unset($tmpstr);
+						if ($firstline) {
+							// return the remaining text
+							$this->cell_padding = $tmpcellpadding;
+							return ($this->UniArrSubString($uchars, ($sep + $endspace)));
+						}
+						$i = $sep;
+						$sep = -1;
+						$shy = false;
+						$j = ($i+1);
 					}
-					case 'R': {
+					// account for margin changes
+					if ((($this->y + $this->lasth) > $this->PageBreakTrigger) AND (!$this->InFooter)) {
+						$this->AcceptPageBreak();
 						if ($this->rtl) {
-							$w = $l;
+							$this->x -= $margin['R'];
 						} else {
-							$w = $w;
+							$this->x += $margin['L'];
 						}
-						break;
+						$this->lMargin += $margin['L'];
+						$this->rMargin += $margin['R'];
 					}
-					default: {
-						$w = $l;
-						break;
+					$w = $this->getRemainingWidth();
+					$wmax = $w - $this->cell_padding['L'] - $this->cell_padding['R'];
+					if ($linebreak) {
+						$linebreak = false;
+					} else {
+						++$nl;
+						$l = 0;
 					}
 				}
-				$tmpstr = $this->UniArrSubString($uchars, $j, $nb);
-				if ($firstline) {
-					$startx = $this->x;
-					$tmparr = array_slice($chars, $j, ($nb - $j));
-					if ($rtlmode) {
-						$tmparr = $this->utf8Bidi($tmparr, $tmpstr, $this->tmprtl);
-					}
-					$linew = $this->GetArrStringWidth($tmparr);
-					unset($tmparr);
+			}
+			// save last character
+			$pc = $c;
+			++$i;
+		} // end while i < nb
+		// print last substring (if any)
+		if ($l > 0) {
+			switch ($align) {
+				case 'J':
+				case 'C': {
+					$w = $w;
+					break;
+				}
+				case 'L': {
 					if ($this->rtl) {
-						$this->endlinex = $startx - $linew;
+						$w = $w;
 					} else {
-						$this->endlinex = $startx + $linew;
+						$w = $l;
 					}
-					$w = $linew;
-					$tmpcmargin = $this->cMargin;
-					if ($maxh == 0) {
-						$this->cMargin = 0;
+					break;
+				}
+				case 'R': {
+					if ($this->rtl) {
+						$w = $l;
+					} else {
+						$w = $w;
 					}
+					break;
 				}
-				if ($firstblock AND $this->isRTLTextDir()) {
-					$tmpstr = rtrim($tmpstr);
+				default: {
+					$w = $l;
+					break;
 				}
-				$this->Cell($w, $h, $tmpstr, 0, $ln, $align, $fill, $link, $stretch);
-				unset($tmpstr);
-				if ($firstline) {
-					$this->cMargin = $tmpcmargin;
-					return ($this->UniArrSubString($uchars, $nb));
+			}
+			$tmpstr = $this->UniArrSubString($uchars, $j, $nb);
+			if ($firstline) {
+				$startx = $this->x;
+				$tmparr = array_slice($chars, $j, ($nb - $j));
+				if ($rtlmode) {
+					$tmparr = $this->utf8Bidi($tmparr, $tmpstr, $this->tmprtl);
+				}
+				$linew = $this->GetArrStringWidth($tmparr);
+				unset($tmparr);
+				if ($this->rtl) {
+					$this->endlinex = $startx - $linew;
+				} else {
+					$this->endlinex = $startx + $linew;
+				}
+				$w = $linew;
+				$tmpcellpadding = $this->cell_padding;
+				if ($maxh == 0) {
+					$this->SetCellPadding(0);
 				}
-				++$nl;
 			}
+			if ($firstblock AND $this->isRTLTextDir()) {
+				$tmpstr = $this->stringRightTrim($tmpstr);
+			}
+			$this->Cell($w, $h, $tmpstr, 0, $ln, $align, $fill, $link, $stretch);
+			unset($tmpstr);
 			if ($firstline) {
-				return '';
+				$this->cell_padding = $tmpcellpadding;
+				return ($this->UniArrSubString($uchars, $nb));
 			}
-			return $nl;
+			++$nl;
+		}
+		if ($firstline) {
+			return '';
 		}
+		return $nl;
+	}
 
-		/**
-		 * Returns the remaining width between the current position and margins.
-		 * @return int Return the remaining width
-		 * @access protected
-		 */
-		protected function getRemainingWidth() {
-			if ($this->rtl) {
-				return ($this->x - $this->lMargin);
-			} else {
-				return ($this->w - $this->rMargin - $this->x);
-			}
-		}
-
-	 	/**
-		 * Extract a slice of the $strarr array and return it as string.
-		 * @param string $strarr The input array of characters.
-		 * @param int $start the starting element of $strarr.
-		 * @param int $end first element that will not be returned.
-		 * @return Return part of a string
-		 * @access public
-		 */
-		public function UTF8ArrSubString($strarr, $start='', $end='') {
-			if (strlen($start) == 0) {
-				$start = 0;
-			}
-			if (strlen($end) == 0) {
-				$end = count($strarr);
-			}
-			$string = '';
-			for ($i=$start; $i < $end; ++$i) {
-				$string .= $this->unichr($strarr[$i]);
-			}
-			return $string;
-		}
-
-	 	/**
-		 * Extract a slice of the $uniarr array and return it as string.
-		 * @param string $uniarr The input array of characters.
-		 * @param int $start the starting element of $strarr.
-		 * @param int $end first element that will not be returned.
-		 * @return Return part of a string
-		 * @access public
-		 * @since 4.5.037 (2009-04-07)
-		 */
-		public function UniArrSubString($uniarr, $start='', $end='') {
-			if (strlen($start) == 0) {
-				$start = 0;
-			}
-			if (strlen($end) == 0) {
-				$end = count($uniarr);
-			}
-			$string = '';
-			for ($i=$start; $i < $end; ++$i) {
-				$string .= $uniarr[$i];
-			}
-			return $string;
-		}
-
-	 	/**
-		 * Convert an array of UTF8 values to array of unicode characters
-		 * @param string $ta The input array of UTF8 values.
-		 * @return Return array of unicode characters
-		 * @access public
-		 * @since 4.5.037 (2009-04-07)
-		 */
-		public function UTF8ArrayToUniArray($ta) {
-			return array_map(array($this, 'unichr'), $ta);
-		}
-
-		/**
-		 * Returns the unicode caracter specified by UTF-8 value
-		 * @param int $c UTF-8 value
-		 * @return Returns the specified character.
-		 * @author Miguel Perez, Nicola Asuni
-		 * @access public
-		 * @since 2.3.000 (2008-03-05)
-		 */
-		public function unichr($c) {
-			if (!$this->isunicode) {
-				return chr($c);
-			} elseif ($c <= 0x7F) {
-				// one byte
-				return chr($c);
-			} elseif ($c <= 0x7FF) {
-				// two bytes
-				return chr(0xC0 | $c >> 6).chr(0x80 | $c & 0x3F);
-			} elseif ($c <= 0xFFFF) {
-				// three bytes
-				return chr(0xE0 | $c >> 12).chr(0x80 | $c >> 6 & 0x3F).chr(0x80 | $c & 0x3F);
-			} elseif ($c <= 0x10FFFF) {
-				// four bytes
-				return chr(0xF0 | $c >> 18).chr(0x80 | $c >> 12 & 0x3F).chr(0x80 | $c >> 6 & 0x3F).chr(0x80 | $c & 0x3F);
-			} else {
-				return '';
-			}
+	/**
+	 * Returns the remaining width between the current position and margins.
+	 * @return int Return the remaining width
+	 * @protected
+	 */
+	protected function getRemainingWidth() {
+		$this->checkPageRegions(0, $this->x, $this->y);
+		if ($this->rtl) {
+			return ($this->x - $this->lMargin);
+		} else {
+			return ($this->w - $this->rMargin - $this->x);
 		}
+	}
 
-		/**
-		 * Return the image type given the file name or array returned by getimagesize() function.
-		 * @param string $imgfile image file name
-		 * @param array $iminfo array of image information returned by getimagesize() function.
-		 * @return string image type
-		 * @since 4.8.017 (2009-11-27)
-		 */
-		public function getImageFileType($imgfile, $iminfo=array()) {
-			$type = '';
-			if (isset($iminfo['mime']) AND !empty($iminfo['mime'])) {
-				$mime = explode('/', $iminfo['mime']);
-				if ((count($mime) > 1) AND ($mime[0] == 'image') AND (!empty($mime[1]))) {
-					$type = trim($mime[1]);
-				}
-			}
-			if (empty($type)) {
-				$fileinfo = pathinfo($imgfile);
-				if (isset($fileinfo['extension']) AND (!$this->empty_string($fileinfo['extension']))) {
-					$type = strtolower(trim($fileinfo['extension']));
-				}
-			}
-			if ($type == 'jpg') {
-				$type = 'jpeg';
+	/**
+	 * Extract a slice of the $strarr array and return it as string.
+	 * @param $strarr (string) The input array of characters.
+	 * @param $start (int) the starting element of $strarr.
+	 * @param $end (int) first element that will not be returned.
+	 * @return Return part of a string
+	 * @public
+	 */
+	public function UTF8ArrSubString($strarr, $start='', $end='') {
+		if (strlen($start) == 0) {
+			$start = 0;
+		}
+		if (strlen($end) == 0) {
+			$end = count($strarr);
+		}
+		$string = '';
+		for ($i=$start; $i < $end; ++$i) {
+			$string .= $this->unichr($strarr[$i]);
+		}
+		return $string;
+	}
+
+	/**
+	 * Extract a slice of the $uniarr array and return it as string.
+	 * @param $uniarr (string) The input array of characters.
+	 * @param $start (int) the starting element of $strarr.
+	 * @param $end (int) first element that will not be returned.
+	 * @return Return part of a string
+	 * @public
+	 * @since 4.5.037 (2009-04-07)
+	 */
+	public function UniArrSubString($uniarr, $start='', $end='') {
+		if (strlen($start) == 0) {
+			$start = 0;
+		}
+		if (strlen($end) == 0) {
+			$end = count($uniarr);
+		}
+		$string = '';
+		for ($i=$start; $i < $end; ++$i) {
+			$string .= $uniarr[$i];
+		}
+		return $string;
+	}
+
+	/**
+	 * Convert an array of UTF8 values to array of unicode characters
+	 * @param $ta (string) The input array of UTF8 values.
+	 * @return Return array of unicode characters
+	 * @public
+	 * @since 4.5.037 (2009-04-07)
+	 */
+	public function UTF8ArrayToUniArray($ta) {
+		return array_map(array($this, 'unichr'), $ta);
+	}
+
+	/**
+	 * Returns the unicode caracter specified by UTF-8 value
+	 * @param $c (int) UTF-8 value
+	 * @return Returns the specified character.
+	 * @author Miguel Perez, Nicola Asuni
+	 * @public
+	 * @since 2.3.000 (2008-03-05)
+	 */
+	public function unichr($c) {
+		if (!$this->isunicode) {
+			return chr($c);
+		} elseif ($c <= 0x7F) {
+			// one byte
+			return chr($c);
+		} elseif ($c <= 0x7FF) {
+			// two bytes
+			return chr(0xC0 | $c >> 6).chr(0x80 | $c & 0x3F);
+		} elseif ($c <= 0xFFFF) {
+			// three bytes
+			return chr(0xE0 | $c >> 12).chr(0x80 | $c >> 6 & 0x3F).chr(0x80 | $c & 0x3F);
+		} elseif ($c <= 0x10FFFF) {
+			// four bytes
+			return chr(0xF0 | $c >> 18).chr(0x80 | $c >> 12 & 0x3F).chr(0x80 | $c >> 6 & 0x3F).chr(0x80 | $c & 0x3F);
+		} else {
+			return '';
+		}
+	}
+
+	/**
+	 * Return the image type given the file name or array returned by getimagesize() function.
+	 * @param $imgfile (string) image file name
+	 * @param $iminfo (array) array of image information returned by getimagesize() function.
+	 * @return string image type
+	 * @since 4.8.017 (2009-11-27)
+	 */
+	public function getImageFileType($imgfile, $iminfo=array()) {
+		$type = '';
+		if (isset($iminfo['mime']) AND !empty($iminfo['mime'])) {
+			$mime = explode('/', $iminfo['mime']);
+			if ((count($mime) > 1) AND ($mime[0] == 'image') AND (!empty($mime[1]))) {
+				$type = strtolower(trim($mime[1]));
 			}
-			return $type;
-		}
-
-		/**
-		 * Set the block dimensions accounting for page breaks and page/column fitting
-		 * @param float $w width
-		 * @param float $h height
-		 * @param float $x X coordinate
-		 * @param float $y Y coodiante
-		 * @param boolean $fitonpage if true the block is resized to not exceed page dimensions.
-		 * @access protected
-		 * @since 5.5.009 (2010-07-05)
-		 */
-		protected function fitBlock(&$w, &$h, &$x, &$y, $fitonpage=false) {
-			// resize the block to be vertically contained on a single page or single column
-			if ($fitonpage OR $this->AutoPageBreak) {
-				$ratio_wh = ($w / $h);
-				if ($h > ($this->PageBreakTrigger - $this->tMargin)) {
-					$h = $this->PageBreakTrigger - $this->tMargin;
-					$w = ($h * $ratio_wh);
-				}
-				// resize the block to be horizontally contained on a single page or single column
-				if ($fitonpage) {
-					$maxw = ($this->w - $this->lMargin - $this->rMargin);
-					if ($w > $maxw) {
-						$w = $maxw;
-						$h = ($w / $ratio_wh);
-					}
-				}
-			}
-			// Check whether we need a new page or new column first as this does not fit
-			$prev_x = $this->x;
-			$prev_y = $this->y;
-			if ($this->checkPageBreak($h, $y) OR ($this->y < $prev_y)) {
-				$y = $this->y;
-				if ($this->rtl) {
-					$x += ($prev_x - $this->x);
-				} else {
-					$x += ($this->x - $prev_x);
-				}
+		}
+		if (empty($type)) {
+			$fileinfo = pathinfo($imgfile);
+			if (isset($fileinfo['extension']) AND (!$this->empty_string($fileinfo['extension']))) {
+				$type = strtolower(trim($fileinfo['extension']));
 			}
-			// resize the block to be contained on the remaining available page or column space
+		}
+		if ($type == 'jpg') {
+			$type = 'jpeg';
+		}
+		return $type;
+	}
+
+	/**
+	 * Set the block dimensions accounting for page breaks and page/column fitting
+	 * @param $w (float) width
+	 * @param $h (float) height
+	 * @param $x (float) X coordinate
+	 * @param $y (float) Y coodiante
+	 * @param $fitonpage (boolean) if true the block is resized to not exceed page dimensions.
+	 * @protected
+	 * @since 5.5.009 (2010-07-05)
+	 */
+	protected function fitBlock(&$w, &$h, &$x, &$y, $fitonpage=false) {
+		if ($w <= 0) {
+			// set maximum width
+			$w = ($this->w - $this->lMargin - $this->rMargin);
+		}
+		if ($h <= 0) {
+			// set maximum height
+			$h = ($this->PageBreakTrigger - $this->tMargin);
+		}
+		// resize the block to be vertically contained on a single page or single column
+		if ($fitonpage OR $this->AutoPageBreak) {
+			$ratio_wh = ($w / $h);
+			if ($h > ($this->PageBreakTrigger - $this->tMargin)) {
+				$h = $this->PageBreakTrigger - $this->tMargin;
+				$w = ($h * $ratio_wh);
+			}
+			// resize the block to be horizontally contained on a single page or single column
 			if ($fitonpage) {
-				$ratio_wh = ($w / $h);
-				if (($y + $h) > $this->PageBreakTrigger) {
-					$h = $this->PageBreakTrigger - $y;
-					$w = ($h * $ratio_wh);
-				}
-				if ((!$this->rtl) AND (($x + $w) > ($this->w - $this->rMargin))) {
-					$w = $this->w - $this->rMargin - $x;
-					$h = ($w / $ratio_wh);
-				} elseif (($this->rtl) AND (($x - $w) < ($this->lMargin))) {
-					$w = $x - $this->lMargin;
+				$maxw = ($this->w - $this->lMargin - $this->rMargin);
+				if ($w > $maxw) {
+					$w = $maxw;
 					$h = ($w / $ratio_wh);
 				}
 			}
 		}
+		// Check whether we need a new page or new column first as this does not fit
+		$prev_x = $this->x;
+		$prev_y = $this->y;
+		if ($this->checkPageBreak($h, $y) OR ($this->y < $prev_y)) {
+			$y = $this->y;
+			if ($this->rtl) {
+				$x += ($prev_x - $this->x);
+			} else {
+				$x += ($this->x - $prev_x);
+			}
+		}
+		// resize the block to be contained on the remaining available page or column space
+		if ($fitonpage) {
+			$ratio_wh = ($w / $h);
+			if (($y + $h) > $this->PageBreakTrigger) {
+				$h = $this->PageBreakTrigger - $y;
+				$w = ($h * $ratio_wh);
+			}
+			if ((!$this->rtl) AND (($x + $w) > ($this->w - $this->rMargin))) {
+				$w = $this->w - $this->rMargin - $x;
+				$h = ($w / $ratio_wh);
+			} elseif (($this->rtl) AND (($x - $w) < ($this->lMargin))) {
+				$w = $x - $this->lMargin;
+				$h = ($w / $ratio_wh);
+			}
+		}
+	}
 
-		/**
-		 * Puts an image in the page.
-		 * The upper-left corner must be given.
-		 * The dimensions can be specified in different ways:<ul>
-		 * <li>explicit width and height (expressed in user unit)</li>
-		 * <li>one explicit dimension, the other being calculated automatically in order to keep the original proportions</li>
-		 * <li>no explicit dimension, in which case the image is put at 72 dpi</li></ul>
-		 * Supported formats are JPEG and PNG images whitout GD library and all images supported by GD: GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM;
-		 * The format can be specified explicitly or inferred from the file extension.<br />
-		 * It is possible to put a link on the image.<br />
-		 * Remark: if an image is used several times, only one copy will be embedded in the file.<br />
-		 * @param string $file Name of the file containing the image.
-		 * @param float $x Abscissa of the upper-left corner.
-		 * @param float $y Ordinate of the upper-left corner.
-		 * @param float $w Width of the image in the page. If not specified or equal to zero, it is automatically calculated.
-		 * @param float $h Height of the image in the page. If not specified or equal to zero, it is automatically calculated.
-		 * @param string $type Image format. Possible values are (case insensitive): JPEG and PNG (whitout GD library) and all images supported by GD: GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM;. If not specified, the type is inferred from the file extension.
-		 * @param mixed $link URL or identifier returned by AddLink().
-		 * @param string $align Indicates the alignment of the pointer next to image insertion relative to image height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul>
-		 * @param mixed $resize If true resize (reduce) the image to fit $w and $h (requires GD or ImageMagick library); if false do not resize; if 2 force resize in all cases (upscaling and downscaling).
-		 * @param int $dpi dot-per-inch resolution used on resize
-		 * @param string $palign Allows to center or align the image on the current line. Possible values are:<ul><li>L : left align</li><li>C : center</li><li>R : right align</li><li>'' : empty string : left for LTR or right for RTL</li></ul>
-		 * @param boolean $ismask true if this image is a mask, false otherwise
-		 * @param mixed $imgmask image object returned by this function or false
-		 * @param mixed $border Indicates if borders must be drawn around the image. The value can be either a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul>or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul>
-		 * @param boolean $fitbox If true scale image dimensions proportionally to fit within the ($w, $h) box.
-		 * @param boolean $hidden if true do not display the image.
-		 * @param boolean $fitonpage if true the image is resized to not exceed page dimensions.
-		 * @return image information
-		 * @access public
-		 * @since 1.1
-		 */
-		public function Image($file, $x='', $y='', $w=0, $h=0, $type='', $link='', $align='', $resize=false, $dpi=300, $palign='', $ismask=false, $imgmask=false, $border=0, $fitbox=false, $hidden=false, $fitonpage=false) {
-			if ($x === '') {
-				$x = $this->x;
+	/**
+	 * Puts an image in the page.
+	 * The upper-left corner must be given.
+	 * The dimensions can be specified in different ways:<ul>
+	 * <li>explicit width and height (expressed in user unit)</li>
+	 * <li>one explicit dimension, the other being calculated automatically in order to keep the original proportions</li>
+	 * <li>no explicit dimension, in which case the image is put at 72 dpi</li></ul>
+	 * Supported formats are JPEG and PNG images whitout GD library and all images supported by GD: GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM;
+	 * The format can be specified explicitly or inferred from the file extension.<br />
+	 * It is possible to put a link on the image.<br />
+	 * Remark: if an image is used several times, only one copy will be embedded in the file.<br />
+	 * @param $file (string) Name of the file containing the image or a '@' character followed by the image data string.
+	 * @param $x (float) Abscissa of the upper-left corner (LTR) or upper-right corner (RTL).
+	 * @param $y (float) Ordinate of the upper-left corner (LTR) or upper-right corner (RTL).
+	 * @param $w (float) Width of the image in the page. If not specified or equal to zero, it is automatically calculated.
+	 * @param $h (float) Height of the image in the page. If not specified or equal to zero, it is automatically calculated.
+	 * @param $type (string) Image format. Possible values are (case insensitive): JPEG and PNG (whitout GD library) and all images supported by GD: GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM;. If not specified, the type is inferred from the file extension.
+	 * @param $link (mixed) URL or identifier returned by AddLink().
+	 * @param $align (string) Indicates the alignment of the pointer next to image insertion relative to image height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul>
+	 * @param $resize (mixed) If true resize (reduce) the image to fit $w and $h (requires GD or ImageMagick library); if false do not resize; if 2 force resize in all cases (upscaling and downscaling).
+	 * @param $dpi (int) dot-per-inch resolution used on resize
+	 * @param $palign (string) Allows to center or align the image on the current line. Possible values are:<ul><li>L : left align</li><li>C : center</li><li>R : right align</li><li>'' : empty string : left for LTR or right for RTL</li></ul>
+	 * @param $ismask (boolean) true if this image is a mask, false otherwise
+	 * @param $imgmask (mixed) image object returned by this function or false
+	 * @param $border (mixed) Indicates if borders must be drawn around the cell. The value can be a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul> or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+	 * @param $fitbox (mixed) If not false scale image dimensions proportionally to fit within the ($w, $h) box. $fitbox can be true or a 2 characters string indicating the image alignment inside the box. The first character indicate the horizontal alignment (L = left, C = center, R = right) the second character indicate the vertical algnment (T = top, M = middle, B = bottom).
+	 * @param $hidden (boolean) if true do not display the image.
+	 * @param $fitonpage (boolean) if true the image is resized to not exceed page dimensions.
+	 * @return image information
+	 * @public
+	 * @since 1.1
+	 */
+	public function Image($file, $x='', $y='', $w=0, $h=0, $type='', $link='', $align='', $resize=false, $dpi=300, $palign='', $ismask=false, $imgmask=false, $border=0, $fitbox=false, $hidden=false, $fitonpage=false) {
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($h, $x, $y);
+		$cached_file = false; // true when the file is cached
+		// check if we are passing an image as file or string
+		if ($file{0} === '@') { // image from string
+			$imgdata = substr($file, 1);
+			$file = tempnam(K_PATH_CACHE, 'img_');
+			$fp = fopen($file, 'w');
+			fwrite($fp, $imgdata);
+			fclose($fp);
+			unset($imgdata);
+			$cached_file = true;
+			$imsize = @getimagesize($file);
+			if ($imsize === FALSE) {
+				unlink($file);
+				$cached_file = false;
 			}
-			if ($y === '') {
-				$y = $this->y;
+		} else { // image file
+			// check if is local file
+			if (!@file_exists($file)) {
+				// encode spaces on filename (file is probably an URL)
+				$file = str_replace(' ', '%20', $file);
 			}
 			// get image dimensions
 			$imsize = @getimagesize($file);
 			if ($imsize === FALSE) {
-				// encode spaces on filename
-				$file = str_replace(' ', '%20', $file);
-				$imsize = @getimagesize($file);
-				if ($imsize === FALSE) {
-					if (($w > 0) AND ($h > 0)) {
-						$pw = $this->getHTMLUnitToUnits($w, 0, $this->pdfunit, true) * $this->imgscale * $this->k;
-						$ph = $this->getHTMLUnitToUnits($h, 0, $this->pdfunit, true) * $this->imgscale * $this->k;
-						$imsize = array($pw, $ph);
-					} else {
-						$this->Error('[Image] Unable to get image width and height: '.$file);
+				if (function_exists('curl_init')) {
+					// try to get remote file data using cURL
+					$cs = curl_init(); // curl session
+					curl_setopt($cs, CURLOPT_URL, $file);
+					curl_setopt($cs, CURLOPT_BINARYTRANSFER, true);
+					curl_setopt($cs, CURLOPT_FAILONERROR, true);
+					curl_setopt($cs, CURLOPT_RETURNTRANSFER, true);
+					curl_setopt($cs, CURLOPT_CONNECTTIMEOUT, 5);
+					curl_setopt($cs, CURLOPT_TIMEOUT, 30);
+					$imgdata = curl_exec($cs);
+					curl_close($cs);
+					if($imgdata !== FALSE) {
+						// copy image to cache
+						$file = tempnam(K_PATH_CACHE, 'img_');
+						$fp = fopen($file, 'w');
+						fwrite($fp, $imgdata);
+						fclose($fp);
+						unset($imgdata);
+						$cached_file = true;
+						$imsize = @getimagesize($file);
+						if ($imsize === FALSE) {
+							unlink($file);
+							$cached_file = false;
+						}
+					}
+				} elseif (($w > 0) AND ($h > 0)) {
+					// get measures from specified data
+					$pw = $this->getHTMLUnitToUnits($w, 0, $this->pdfunit, true) * $this->imgscale * $this->k;
+					$ph = $this->getHTMLUnitToUnits($h, 0, $this->pdfunit, true) * $this->imgscale * $this->k;
+					$imsize = array($pw, $ph);
+				}
+			}
+		}
+		if ($imsize === FALSE) {
+			$this->Error('[Image] Unable to get image: '.$file);
+		}
+		// get original image width and height in pixels
+		list($pixw, $pixh) = $imsize;
+		// calculate image width and height on document
+		if (($w <= 0) AND ($h <= 0)) {
+			// convert image size to document unit
+			$w = $this->pixelsToUnits($pixw);
+			$h = $this->pixelsToUnits($pixh);
+		} elseif ($w <= 0) {
+			$w = $h * $pixw / $pixh;
+		} elseif ($h <= 0) {
+			$h = $w * $pixh / $pixw;
+		} elseif (($fitbox !== false) AND ($w > 0) AND ($h > 0)) {
+			if (strlen($fitbox) !== 2) {
+				// set default alignment
+				$fitbox = '--';
+			}
+			// scale image dimensions proportionally to fit within the ($w, $h) box
+			if ((($w * $pixh) / ($h * $pixw)) < 1) {
+				// store current height
+				$oldh = $h;
+				// calculate new height
+				$h = $w * $pixh / $pixw;
+				// height difference
+				$hdiff = ($oldh - $h);
+				// vertical alignment
+				switch (strtoupper($fitbox{1})) {
+					case 'T': {
+						break;
+					}
+					case 'M': {
+						$y += ($hdiff / 2);
+						break;
+					}
+					case 'B': {
+						$y += $hdiff;
+						break;
 					}
 				}
-			}
-			// get original image width and height in pixels
-			list($pixw, $pixh) = $imsize;
-			// calculate image width and height on document
-			if (($w <= 0) AND ($h <= 0)) {
-				// convert image size to document unit
-				$w = $this->pixelsToUnits($pixw);
-				$h = $this->pixelsToUnits($pixh);
-			} elseif ($w <= 0) {
+			} else {
+				// store current width
+				$oldw = $w;
+				// calculate new width
 				$w = $h * $pixw / $pixh;
-			} elseif ($h <= 0) {
-				$h = $w * $pixh / $pixw;
-			} elseif ($fitbox AND ($w > 0) AND ($h > 0)) {
-				// scale image dimensions proportionally to fit within the ($w, $h) box
-				if ((($w * $pixh) / ($h * $pixw)) < 1) {
-					$h = $w * $pixh / $pixw;
-				} else {
-					$w = $h * $pixw / $pixh;
-				}
-			}
-			// fit the image on available space
-			$this->fitBlock($w, $h, $x, $y, $fitonpage);
-			// calculate new minimum dimensions in pixels
-			$neww = round($w * $this->k * $dpi / $this->dpi);
-			$newh = round($h * $this->k * $dpi / $this->dpi);
-			// check if resize is necessary (resize is used only to reduce the image)
-			$newsize = ($neww * $newh);
-			$pixsize = ($pixw * $pixh);
-			if (intval($resize) == 2) {
-				$resize = true;
-			} elseif ($newsize >= $pixsize) {
-				$resize = false;
-			}
-			// check if image has been already added on document
-			$newimage = true;
-			if (in_array($file, $this->imagekeys)) {
-				$newimage = false;
-				// get existing image data
-				$info = $this->getImageBuffer($file);
-				// check if the newer image is larger
-				$oldsize = ($info['w'] * $info['h']);
-				if ((($oldsize < $newsize) AND ($resize)) OR (($oldsize < $pixsize) AND (!$resize))) {
-					$newimage = true;
-				}
-			}
-			if ($newimage) {
-				//First use of image, get info
-				if ($type == '') {
-					$type = $this->getImageFileType($file, $imsize);
-				}
-				$mqr = $this->get_mqr();
-				$this->set_mqr(false);
-				// Specific image handlers
-				$mtd = '_parse'.$type;
-				// GD image handler function
-				$gdfunction = 'imagecreatefrom'.$type;
-				$info = false;
-				if ((method_exists($this, $mtd)) AND (!($resize AND function_exists($gdfunction)))) {
-					// TCPDF image functions
-					$info = $this->$mtd($file);
-					if ($info == 'pngalpha') {
-						return $this->ImagePngAlpha($file, $x, $y, $w, $h, 'PNG', $link, $align, $resize, $dpi, $palign);
-					}
-				}
-				if (!$info) {
-					if (function_exists($gdfunction)) {
-						// GD library
-						$img = $gdfunction($file);
-						if ($resize) {
-							$imgr = imagecreatetruecolor($neww, $newh);
-							if (($type == 'gif') OR ($type == 'png')) {
-								$imgr = $this->_setGDImageTransparency($imgr, $img);
-							}
-							imagecopyresampled($imgr, $img, 0, 0, 0, 0, $neww, $newh, $pixw, $pixh);
-							if (($type == 'gif') OR ($type == 'png')) {
-								$info = $this->_toPNG($imgr);
+				// width difference
+				$wdiff = ($oldw - $w);
+				// horizontal alignment
+				switch (strtoupper($fitbox{0})) {
+					case 'L': {
+						if ($this->rtl) {
+							$x -= $wdiff;
+						}
+						break;
+					}
+					case 'C': {
+						if ($this->rtl) {
+							$x -= ($wdiff / 2);
+						} else {
+							$x += ($wdiff / 2);
+						}
+						break;
+					}
+					case 'R': {
+						if (!$this->rtl) {
+							$x += $wdiff;
+						}
+						break;
+					}
+				}
+			}
+		}
+		// fit the image on available space
+		$this->fitBlock($w, $h, $x, $y, $fitonpage);
+		// calculate new minimum dimensions in pixels
+		$neww = round($w * $this->k * $dpi / $this->dpi);
+		$newh = round($h * $this->k * $dpi / $this->dpi);
+		// check if resize is necessary (resize is used only to reduce the image)
+		$newsize = ($neww * $newh);
+		$pixsize = ($pixw * $pixh);
+		if (intval($resize) == 2) {
+			$resize = true;
+		} elseif ($newsize >= $pixsize) {
+			$resize = false;
+		}
+		// check if image has been already added on document
+		$newimage = true;
+		if (in_array($file, $this->imagekeys)) {
+			$newimage = false;
+			// get existing image data
+			$info = $this->getImageBuffer($file);
+			// check if the newer image is larger
+			$oldsize = ($info['w'] * $info['h']);
+			if ((($oldsize < $newsize) AND ($resize)) OR (($oldsize < $pixsize) AND (!$resize))) {
+				$newimage = true;
+			}
+		}
+		if ($newimage) {
+			//First use of image, get info
+			$type = strtolower($type);
+			if ($type == '') {
+				$type = $this->getImageFileType($file, $imsize);
+			} elseif ($type == 'jpg') {
+				$type = 'jpeg';
+			}
+			$mqr = $this->get_mqr();
+			$this->set_mqr(false);
+			// Specific image handlers
+			$mtd = '_parse'.$type;
+			// GD image handler function
+			$gdfunction = 'imagecreatefrom'.$type;
+			$info = false;
+			if ((method_exists($this, $mtd)) AND (!($resize AND function_exists($gdfunction)))) {
+				// TCPDF image functions
+				$info = $this->$mtd($file);
+				if ($info == 'pngalpha') {
+					return $this->ImagePngAlpha($file, $x, $y, $pixw, $pixh, $w, $h, 'PNG', $link, $align, $resize, $dpi, $palign);
+				}
+			}
+			if (!$info) {
+				if (function_exists($gdfunction)) {
+					// GD library
+					$img = $gdfunction($file);
+					if ($resize) {
+						$imgr = imagecreatetruecolor($neww, $newh);
+						if (($type == 'gif') OR ($type == 'png')) {
+							$imgr = $this->_setGDImageTransparency($imgr, $img);
+						}
+						imagecopyresampled($imgr, $img, 0, 0, 0, 0, $neww, $newh, $pixw, $pixh);
+						if (($type == 'gif') OR ($type == 'png')) {
+							$info = $this->_toPNG($imgr);
+						} else {
+							$info = $this->_toJPEG($imgr);
+						}
+					} else {
+						if (($type == 'gif') OR ($type == 'png')) {
+							$info = $this->_toPNG($img);
+						} else {
+							$info = $this->_toJPEG($img);
+						}
+					}
+				} elseif (extension_loaded('imagick')) {
+					// ImageMagick library
+					$img = new Imagick();
+					if ($type == 'SVG') {
+						// get SVG file content
+						$svgimg = file_get_contents($file);
+						// get width and height
+						$regs = array();
+						if (preg_match('/<svg([^\>]*)>/si', $svgimg, $regs)) {
+							$svgtag = $regs[1];
+							$tmp = array();
+							if (preg_match('/[\s]+width[\s]*=[\s]*"([^"]*)"/si', $svgtag, $tmp)) {
+								$ow = $this->getHTMLUnitToUnits($tmp[1], 1, $this->svgunit, false);
+								$owu = sprintf('%.3F', ($ow * $dpi / 72)).$this->pdfunit;
+								$svgtag = preg_replace('/[\s]+width[\s]*=[\s]*"[^"]*"/si', ' width="'.$owu.'"', $svgtag, 1);
 							} else {
-								$info = $this->_toJPEG($imgr);
+								$ow = $w;
 							}
-						} else {
-							if (($type == 'gif') OR ($type == 'png')) {
-								$info = $this->_toPNG($img);
+							$tmp = array();
+							if (preg_match('/[\s]+height[\s]*=[\s]*"([^"]*)"/si', $svgtag, $tmp)) {
+								$oh = $this->getHTMLUnitToUnits($tmp[1], 1, $this->svgunit, false);
+								$ohu = sprintf('%.3F', ($oh * $dpi / 72)).$this->pdfunit;
+								$svgtag = preg_replace('/[\s]+height[\s]*=[\s]*"[^"]*"/si', ' height="'.$ohu.'"', $svgtag, 1);
 							} else {
-								$info = $this->_toJPEG($img);
+								$oh = $h;
 							}
-						}
-					} elseif (extension_loaded('imagick')) {
-						// ImageMagick library
-						$img = new Imagick();
-						if ($type == 'SVG') {
-							// get SVG file content
-							$svgimg = file_get_contents($file);
-							// get width and height
-							$regs = array();
-							if (preg_match('/<svg([^\>]*)>/si', $svgimg, $regs)) {
-								$svgtag = $regs[1];
-								$tmp = array();
-								if (preg_match('/[\s]+width[\s]*=[\s]*"([^"]*)"/si', $svgtag, $tmp)) {
-									$ow = $this->getHTMLUnitToUnits($tmp[1], 1, $this->svgunit, false);
-									$owu = sprintf('%.3F', ($ow * $dpi / 72)).$this->pdfunit;
-									$svgtag = preg_replace('/[\s]+width[\s]*=[\s]*"[^"]*"/si', ' width="'.$owu.'"', $svgtag, 1);
-								} else {
-									$ow = $w;
-								}
-								$tmp = array();
-								if (preg_match('/[\s]+height[\s]*=[\s]*"([^"]*)"/si', $svgtag, $tmp)) {
-									$oh = $this->getHTMLUnitToUnits($tmp[1], 1, $this->svgunit, false);
-									$ohu = sprintf('%.3F', ($oh * $dpi / 72)).$this->pdfunit;
-									$svgtag = preg_replace('/[\s]+height[\s]*=[\s]*"[^"]*"/si', ' height="'.$ohu.'"', $svgtag, 1);
-								} else {
-									$oh = $h;
-								}
-								$tmp = array();
-								if (!preg_match('/[\s]+viewBox[\s]*=[\s]*"[\s]*([0-9\.]+)[\s]+([0-9\.]+)[\s]+([0-9\.]+)[\s]+([0-9\.]+)[\s]*"/si', $svgtag, $tmp)) {
-									$vbw = ($ow * $this->imgscale * $this->k);
-									$vbh = ($oh * $this->imgscale * $this->k);
-									$vbox = sprintf(' viewBox="0 0 %.3F %.3F" ', $vbw, $vbh);
-									$svgtag = $vbox.$svgtag;
-								}
-								$svgimg = preg_replace('/<svg([^\>]*)>/si', '<svg'.$svgtag.'>', $svgimg, 1);
+							$tmp = array();
+							if (!preg_match('/[\s]+viewBox[\s]*=[\s]*"[\s]*([0-9\.]+)[\s]+([0-9\.]+)[\s]+([0-9\.]+)[\s]+([0-9\.]+)[\s]*"/si', $svgtag, $tmp)) {
+								$vbw = ($ow * $this->imgscale * $this->k);
+								$vbh = ($oh * $this->imgscale * $this->k);
+								$vbox = sprintf(' viewBox="0 0 %.3F %.3F" ', $vbw, $vbh);
+								$svgtag = $vbox.$svgtag;
 							}
-							$img->readImageBlob($svgimg);
-						} else {
-							$img->readImage($file);
-						}
-						if ($resize) {
-							$img->resizeImage($neww, $newh, 10, 1, false);
-						}
-						$img->setCompressionQuality($this->jpeg_quality);
-						$img->setImageFormat('jpeg');
-						$tempname = tempnam(K_PATH_CACHE, 'jpg_');
-						$img->writeImage($tempname);
-						$info = $this->_parsejpeg($tempname);
-						unlink($tempname);
-						$img->destroy();
+							$svgimg = preg_replace('/<svg([^\>]*)>/si', '<svg'.$svgtag.'>', $svgimg, 1);
+						}
+						$img->readImageBlob($svgimg);
 					} else {
-						return;
-					}
-				}
-				if ($info === false) {
-					//If false, we cannot process image
-					return;
-				}
-				$this->set_mqr($mqr);
-				if ($ismask) {
-					// force grayscale
-					$info['cs'] = 'DeviceGray';
-				}
-				$info['i'] = $this->numimages;
-				if (!in_array($file, $this->imagekeys)) {
-					++$info['i'];
-				}
-				if ($imgmask !== false) {
-					$info['masked'] = $imgmask;
-				}
-				// add image to document
-				$this->setImageBuffer($file, $info);
-			}
-			// set alignment
-			$this->img_rb_y = $y + $h;
-			// set alignment
-			if ($this->rtl) {
-				if ($palign == 'L') {
-					$ximg = $this->lMargin;
-				} elseif ($palign == 'C') {
-					$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
-				} elseif ($palign == 'R') {
-					$ximg = $this->w - $this->rMargin - $w;
-				} else {
-					$ximg = $x - $w;
-				}
-				$this->img_rb_x = $ximg;
-			} else {
-				if ($palign == 'L') {
-					$ximg = $this->lMargin;
-				} elseif ($palign == 'C') {
-					$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
-				} elseif ($palign == 'R') {
-					$ximg = $this->w - $this->rMargin - $w;
+						$img->readImage($file);
+					}
+					if ($resize) {
+						$img->resizeImage($neww, $newh, 10, 1, false);
+					}
+					$img->setCompressionQuality($this->jpeg_quality);
+					$img->setImageFormat('jpeg');
+					$tempname = tempnam(K_PATH_CACHE, 'jpg_');
+					$img->writeImage($tempname);
+					$info = $this->_parsejpeg($tempname);
+					unlink($tempname);
+					$img->destroy();
 				} else {
-					$ximg = $x;
-				}
-				$this->img_rb_x = $ximg + $w;
-			}
-			if ($ismask OR $hidden) {
-				// image is not displayed
-				return $info['i'];
-			}
-			$xkimg = $ximg * $this->k;
-			$this->_out(sprintf('q %.2F 0 0 %.2F %.2F %.2F cm /I%d Do Q', ($w * $this->k), ($h * $this->k), $xkimg, (($this->h - ($y + $h)) * $this->k), $info['i']));
-			if (!empty($border)) {
-				$bx = $x;
-				$by = $y;
-				$this->x = $ximg;
-				if ($this->rtl) {
-					$this->x += $w;
+					return;
 				}
-				$this->y = $y;
-				$this->Cell($w, $h, '', $border, 0, '', 0, '', 0, true);
-				$this->x = $bx;
-				$this->y = $by;
 			}
-			if ($link) {
-				$this->Link($ximg, $y, $w, $h, $link, 0);
+			if ($info === false) {
+				//If false, we cannot process image
+				return;
 			}
-			// set pointer to align the successive text/objects
-			switch($align) {
-				case 'T': {
-					$this->y = $y;
-					$this->x = $this->img_rb_x;
-					break;
-				}
-				case 'M': {
-					$this->y = $y + round($h/2);
-					$this->x = $this->img_rb_x;
-					break;
-				}
-				case 'B': {
-					$this->y = $this->img_rb_y;
-					$this->x = $this->img_rb_x;
-					break;
-				}
-				case 'N': {
-					$this->SetY($this->img_rb_y);
-					break;
-				}
-				default:{
-					break;
-				}
+			$this->set_mqr($mqr);
+			if ($ismask) {
+				// force grayscale
+				$info['cs'] = 'DeviceGray';
+			}
+			$info['i'] = $this->numimages;
+			if (!in_array($file, $this->imagekeys)) {
+				++$info['i'];
+			}
+			if ($imgmask !== false) {
+				$info['masked'] = $imgmask;
+			}
+			// add image to document
+			$this->setImageBuffer($file, $info);
+		}
+		if ($cached_file) {
+			// remove cached file
+			unlink($file);
+		}
+		// set alignment
+		$this->img_rb_y = $y + $h;
+		// set alignment
+		if ($this->rtl) {
+			if ($palign == 'L') {
+				$ximg = $this->lMargin;
+			} elseif ($palign == 'C') {
+				$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
+			} elseif ($palign == 'R') {
+				$ximg = $this->w - $this->rMargin - $w;
+			} else {
+				$ximg = $x - $w;
+			}
+			$this->img_rb_x = $ximg;
+		} else {
+			if ($palign == 'L') {
+				$ximg = $this->lMargin;
+			} elseif ($palign == 'C') {
+				$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
+			} elseif ($palign == 'R') {
+				$ximg = $this->w - $this->rMargin - $w;
+			} else {
+				$ximg = $x;
 			}
-			$this->endlinex = $this->img_rb_x;
+			$this->img_rb_x = $ximg + $w;
+		}
+		if ($ismask OR $hidden) {
+			// image is not displayed
 			return $info['i'];
 		}
-
-		/**
-		 * Sets the current active configuration setting of magic_quotes_runtime (if the set_magic_quotes_runtime function exist)
-		 * @param boolean $mqr FALSE for off, TRUE for on.
-		 * @since 4.6.025 (2009-08-17)
-		 */
-		public function set_mqr($mqr) {
-			if(!defined('PHP_VERSION_ID')) {
-				$version = PHP_VERSION;
-				define('PHP_VERSION_ID', (($version{0} * 10000) + ($version{2} * 100) + $version{4}));
-			}
-			if (PHP_VERSION_ID < 50300) {
-				@set_magic_quotes_runtime($mqr);
-			}
-		}
-
-		/**
-		 * Gets the current active configuration setting of magic_quotes_runtime (if the get_magic_quotes_runtime function exist)
-		 * @return Returns 0 if magic quotes runtime is off or get_magic_quotes_runtime doesn't exist, 1 otherwise.
-		 * @since 4.6.025 (2009-08-17)
-		 */
-		public function get_mqr() {
-			if(!defined('PHP_VERSION_ID')) {
-				$version = PHP_VERSION;
-				define('PHP_VERSION_ID', (($version{0} * 10000) + ($version{2} * 100) + $version{4}));
-			}
-			if (PHP_VERSION_ID < 50300) {
-				return @get_magic_quotes_runtime();
-			}
-			return 0;
-		}
-
-		/**
-		 * Convert the loaded image to a JPEG and then return a structure for the PDF creator.
-		 * This function requires GD library and write access to the directory defined on K_PATH_CACHE constant.
-		 * @param string $file Image file name.
-		 * @param image $image Image object.
-		 * return image JPEG image object.
-		 * @access protected
-		 */
-		protected function _toJPEG($image) {
-			$tempname = tempnam(K_PATH_CACHE, 'jpg_');
-			imagejpeg($image, $tempname, $this->jpeg_quality);
-			imagedestroy($image);
-			$retvars = $this->_parsejpeg($tempname);
-			// tidy up by removing temporary image
-			unlink($tempname);
-			return $retvars;
-		}
-
-		/**
-		 * Convert the loaded image to a PNG and then return a structure for the PDF creator.
-		 * This function requires GD library and write access to the directory defined on K_PATH_CACHE constant.
-		 * @param string $file Image file name.
-		 * @param image $image Image object.
-		 * return image PNG image object.
-		 * @access protected
-		 * @since 4.9.016 (2010-04-20)
-		 */
-		protected function _toPNG($image) {
-			$tempname = tempnam(K_PATH_CACHE, 'jpg_');
-			imagepng($image, $tempname);
-			imagedestroy($image);
-			$retvars = $this->_parsepng($tempname);
-			// tidy up by removing temporary image
-			unlink($tempname);
-			return $retvars;
-		}
-
-		/**
-		 * Set the transparency for the given GD image.
-		 * @param image $new_image GD image object
-		 * @param image $image GD image object.
-		 * return GD image object.
-		 * @access protected
-		 * @since 4.9.016 (2010-04-20)
-		 */
-		protected function _setGDImageTransparency($new_image, $image) {
-			// transparency index
-			$tid = imagecolortransparent($image);
-			// default transparency color
-			$tcol = array('red' => 255, 'green' => 255, 'blue' => 255);
-			if ($tid >= 0) {
-				// get the colors for the transparency index
-				$tcol = imagecolorsforindex($image, $tid);
-			}
-			$tid = imagecolorallocate($new_image, $tcol['red'], $tcol['green'], $tcol['blue']);
-			imagefill($new_image, 0, 0, $tid);
-			imagecolortransparent($new_image, $tid);
-			return $new_image;
-		}
-
-		/**
-		 * Extract info from a JPEG file without using the GD library.
-		 * @param string $file image file to parse
-		 * @return array structure containing the image data
-		 * @access protected
-		 */
-		protected function _parsejpeg($file) {
-			$a = getimagesize($file);
-			if (empty($a)) {
-				$this->Error('Missing or incorrect image file: '.$file);
-			}
-			if ($a[2] != 2) {
-				$this->Error('Not a JPEG file: '.$file);
-			}
-			if ((!isset($a['channels'])) OR ($a['channels'] == 3)) {
-				$colspace = 'DeviceRGB';
-			} elseif ($a['channels'] == 4) {
-				$colspace = 'DeviceCMYK';
-			} else {
-				$colspace = 'DeviceGray';
+		$xkimg = $ximg * $this->k;
+		$this->_out(sprintf('q %.2F 0 0 %.2F %.2F %.2F cm /I%u Do Q', ($w * $this->k), ($h * $this->k), $xkimg, (($this->h - ($y + $h)) * $this->k), $info['i']));
+		if (!empty($border)) {
+			$bx = $this->x;
+			$by = $this->y;
+			$this->x = $ximg;
+			if ($this->rtl) {
+				$this->x += $w;
 			}
-			$bpc = isset($a['bits']) ? $a['bits'] : 8;
-			$data = file_get_contents($file);
-			return array('w' => $a[0], 'h' => $a[1], 'cs' => $colspace, 'bpc' => $bpc, 'f' => 'DCTDecode', 'data' => $data);
-		}
-
-		/**
-		 * Extract info from a PNG file without using the GD library.
-		 * @param string $file image file to parse
-		 * @return array structure containing the image data
-		 * @access protected
-		 */
-		protected function _parsepng($file) {
-			$f = fopen($file, 'rb');
-			if ($f === false) {
-				$this->Error('Can\'t open image file: '.$file);
-			}
-			//Check signature
-			if (fread($f, 8) != chr(137).'PNG'.chr(13).chr(10).chr(26).chr(10)) {
-				$this->Error('Not a PNG file: '.$file);
-			}
-			//Read header chunk
-			fread($f, 4);
-			if (fread($f, 4) != 'IHDR') {
-				$this->Error('Incorrect PNG file: '.$file);
-			}
-			$w = $this->_freadint($f);
-			$h = $this->_freadint($f);
-			$bpc = ord(fread($f, 1));
-			if ($bpc > 8) {
-				//$this->Error('16-bit depth not supported: '.$file);
-				fclose($f);
-				return false;
+			$this->y = $y;
+			$this->Cell($w, $h, '', $border, 0, '', 0, '', 0, true);
+			$this->x = $bx;
+			$this->y = $by;
+		}
+		if ($link) {
+			$this->Link($ximg, $y, $w, $h, $link, 0);
+		}
+		// set pointer to align the next text/objects
+		switch($align) {
+			case 'T': {
+				$this->y = $y;
+				$this->x = $this->img_rb_x;
+				break;
 			}
-			$ct = ord(fread($f, 1));
-			if ($ct == 0) {
-				$colspace = 'DeviceGray';
-			} elseif ($ct == 2) {
-				$colspace = 'DeviceRGB';
-			} elseif ($ct == 3) {
-				$colspace = 'Indexed';
-			} else {
-				// alpha channel
-				fclose($f);
-				return 'pngalpha';
+			case 'M': {
+				$this->y = $y + round($h/2);
+				$this->x = $this->img_rb_x;
+				break;
 			}
-			if (ord(fread($f, 1)) != 0) {
-				//$this->Error('Unknown compression method: '.$file);
-				fclose($f);
-				return false;
+			case 'B': {
+				$this->y = $this->img_rb_y;
+				$this->x = $this->img_rb_x;
+				break;
 			}
-			if (ord(fread($f, 1)) != 0) {
-				//$this->Error('Unknown filter method: '.$file);
-				fclose($f);
-				return false;
+			case 'N': {
+				$this->SetY($this->img_rb_y);
+				break;
 			}
-			if (ord(fread($f, 1)) != 0) {
-				//$this->Error('Interlacing not supported: '.$file);
-				fclose($f);
-				return false;
+			default:{
+				break;
 			}
-			fread($f, 4);
-			$parms = '/DecodeParms << /Predictor 15 /Colors '.($ct == 2 ? 3 : 1).' /BitsPerComponent '.$bpc.' /Columns '.$w.' >>';
-			//Scan chunks looking for palette, transparency and image data
-			$pal = '';
-			$trns = '';
-			$data = '';
-			do {
-				$n = $this->_freadint($f);
-				$type = fread($f, 4);
-				if ($type == 'PLTE') {
-					//Read palette
-					$pal = $this->rfread($f, $n);
-					fread($f, 4);
-				} elseif ($type == 'tRNS') {
-					//Read transparency info
-					$t = $this->rfread($f, $n);
-					if ($ct == 0) {
-						$trns = array(ord(substr($t, 1, 1)));
-					} elseif ($ct == 2) {
-						$trns = array(ord(substr($t, 1, 1)), ord(substr($t, 3, 1)), ord(substr($t, 5, 1)));
-					} else {
-						$pos = strpos($t, chr(0));
-						if ($pos !== false) {
-							$trns = array($pos);
-						}
-					}
-					fread($f, 4);
-				} elseif ($type == 'IDAT') {
-					//Read image data block
-					$data .= $this->rfread($f, $n);
-					fread($f, 4);
-				} elseif ($type == 'IEND') {
-					break;
+		}
+		$this->endlinex = $this->img_rb_x;
+		if ($this->inxobj) {
+			// we are inside an XObject template
+			$this->xobjects[$this->xobjid]['images'][] = $info['i'];
+		}
+		return $info['i'];
+	}
+
+	/**
+	 * Sets the current active configuration setting of magic_quotes_runtime (if the set_magic_quotes_runtime function exist)
+	 * @param $mqr (boolean) FALSE for off, TRUE for on.
+	 * @since 4.6.025 (2009-08-17)
+	 */
+	public function set_mqr($mqr) {
+		if(!defined('PHP_VERSION_ID')) {
+			$version = PHP_VERSION;
+			define('PHP_VERSION_ID', (($version{0} * 10000) + ($version{2} * 100) + $version{4}));
+		}
+		if (PHP_VERSION_ID < 50300) {
+			@set_magic_quotes_runtime($mqr);
+		}
+	}
+
+	/**
+	 * Gets the current active configuration setting of magic_quotes_runtime (if the get_magic_quotes_runtime function exist)
+	 * @return Returns 0 if magic quotes runtime is off or get_magic_quotes_runtime doesn't exist, 1 otherwise.
+	 * @since 4.6.025 (2009-08-17)
+	 */
+	public function get_mqr() {
+		if(!defined('PHP_VERSION_ID')) {
+			$version = PHP_VERSION;
+			define('PHP_VERSION_ID', (($version{0} * 10000) + ($version{2} * 100) + $version{4}));
+		}
+		if (PHP_VERSION_ID < 50300) {
+			return @get_magic_quotes_runtime();
+		}
+		return 0;
+	}
+
+	/**
+	 * Convert the loaded image to a JPEG and then return a structure for the PDF creator.
+	 * This function requires GD library and write access to the directory defined on K_PATH_CACHE constant.
+	 * @param $image (image) Image object.
+	 * return image JPEG image object.
+	 * @protected
+	 */
+	protected function _toJPEG($image) {
+		$tempname = tempnam(K_PATH_CACHE, 'jpg_');
+		imagejpeg($image, $tempname, $this->jpeg_quality);
+		imagedestroy($image);
+		$retvars = $this->_parsejpeg($tempname);
+		// tidy up by removing temporary image
+		unlink($tempname);
+		return $retvars;
+	}
+
+	/**
+	 * Convert the loaded image to a PNG and then return a structure for the PDF creator.
+	 * This function requires GD library and write access to the directory defined on K_PATH_CACHE constant.
+	 * @param $image (image) Image object.
+	 * return image PNG image object.
+	 * @protected
+	 * @since 4.9.016 (2010-04-20)
+	 */
+	protected function _toPNG($image) {
+		// set temporary image file name
+		$tempname = tempnam(K_PATH_CACHE, 'jpg_');
+		// turn off interlaced mode
+		imageinterlace($image, 0);
+		// create temporary PNG image
+		imagepng($image, $tempname);
+		// remove image from memory
+		imagedestroy($image);
+		// get PNG image data
+		$retvars = $this->_parsepng($tempname);
+		// tidy up by removing temporary image
+		unlink($tempname);
+		return $retvars;
+	}
+
+	/**
+	 * Set the transparency for the given GD image.
+	 * @param $new_image (image) GD image object
+	 * @param $image (image) GD image object.
+	 * return GD image object.
+	 * @protected
+	 * @since 4.9.016 (2010-04-20)
+	 */
+	protected function _setGDImageTransparency($new_image, $image) {
+		// transparency index
+		$tid = imagecolortransparent($image);
+		// default transparency color
+		$tcol = array('red' => 255, 'green' => 255, 'blue' => 255);
+		if ($tid >= 0) {
+			// get the colors for the transparency index
+			$tcol = imagecolorsforindex($image, $tid);
+		}
+		$tid = imagecolorallocate($new_image, $tcol['red'], $tcol['green'], $tcol['blue']);
+		imagefill($new_image, 0, 0, $tid);
+		imagecolortransparent($new_image, $tid);
+		return $new_image;
+	}
+
+	/**
+	 * Extract info from a JPEG file without using the GD library.
+	 * @param $file (string) image file to parse
+	 * @return array structure containing the image data
+	 * @protected
+	 */
+	protected function _parsejpeg($file) {
+		$a = getimagesize($file);
+		if (empty($a)) {
+			$this->Error('Missing or incorrect image file: '.$file);
+		}
+		if ($a[2] != 2) {
+			$this->Error('Not a JPEG file: '.$file);
+		}
+		if ((!isset($a['channels'])) OR ($a['channels'] == 3)) {
+			$colspace = 'DeviceRGB';
+		} elseif ($a['channels'] == 4) {
+			$colspace = 'DeviceCMYK';
+		} else {
+			$colspace = 'DeviceGray';
+		}
+		$bpc = isset($a['bits']) ? $a['bits'] : 8;
+		$data = file_get_contents($file);
+		return array('w' => $a[0], 'h' => $a[1], 'cs' => $colspace, 'bpc' => $bpc, 'f' => 'DCTDecode', 'data' => $data);
+	}
+
+	/**
+	 * Extract info from a PNG file without using the GD library.
+	 * @param $file (string) image file to parse
+	 * @return array structure containing the image data
+	 * @protected
+	 */
+	protected function _parsepng($file) {
+		$f = fopen($file, 'rb');
+		if ($f === false) {
+			$this->Error('Can\'t open image file: '.$file);
+		}
+		//Check signature
+		if (fread($f, 8) != chr(137).'PNG'.chr(13).chr(10).chr(26).chr(10)) {
+			$this->Error('Not a PNG file: '.$file);
+		}
+		//Read header chunk
+		fread($f, 4);
+		if (fread($f, 4) != 'IHDR') {
+			$this->Error('Incorrect PNG file: '.$file);
+		}
+		$w = $this->_freadint($f);
+		$h = $this->_freadint($f);
+		$bpc = ord(fread($f, 1));
+		if ($bpc > 8) {
+			//$this->Error('16-bit depth not supported: '.$file);
+			fclose($f);
+			return false;
+		}
+		$ct = ord(fread($f, 1));
+		if ($ct == 0) {
+			$colspace = 'DeviceGray';
+		} elseif ($ct == 2) {
+			$colspace = 'DeviceRGB';
+		} elseif ($ct == 3) {
+			$colspace = 'Indexed';
+		} else {
+			// alpha channel
+			fclose($f);
+			return 'pngalpha';
+		}
+		if (ord(fread($f, 1)) != 0) {
+			//$this->Error('Unknown compression method: '.$file);
+			fclose($f);
+			return false;
+		}
+		if (ord(fread($f, 1)) != 0) {
+			//$this->Error('Unknown filter method: '.$file);
+			fclose($f);
+			return false;
+		}
+		if (ord(fread($f, 1)) != 0) {
+			//$this->Error('Interlacing not supported: '.$file);
+			fclose($f);
+			return false;
+		}
+		fread($f, 4);
+		$parms = '/DecodeParms << /Predictor 15 /Colors '.($ct == 2 ? 3 : 1).' /BitsPerComponent '.$bpc.' /Columns '.$w.' >>';
+		//Scan chunks looking for palette, transparency and image data
+		$pal = '';
+		$trns = '';
+		$data = '';
+		do {
+			$n = $this->_freadint($f);
+			$type = fread($f, 4);
+			if ($type == 'PLTE') {
+				//Read palette
+				$pal = $this->rfread($f, $n);
+				fread($f, 4);
+			} elseif ($type == 'tRNS') {
+				//Read transparency info
+				$t = $this->rfread($f, $n);
+				if ($ct == 0) {
+					$trns = array(ord(substr($t, 1, 1)));
+				} elseif ($ct == 2) {
+					$trns = array(ord(substr($t, 1, 1)), ord(substr($t, 3, 1)), ord(substr($t, 5, 1)));
 				} else {
-					$this->rfread($f, $n + 4);
-				}
-			} while ($n);
-			if (($colspace == 'Indexed') AND (empty($pal))) {
-				//$this->Error('Missing palette in '.$file);
-				fclose($f);
-				return false;
+					$pos = strpos($t, chr(0));
+					if ($pos !== false) {
+						$trns = array($pos);
+					}
+				}
+				fread($f, 4);
+			} elseif ($type == 'IDAT') {
+				//Read image data block
+				$data .= $this->rfread($f, $n);
+				fread($f, 4);
+			} elseif ($type == 'IEND') {
+				break;
+			} else {
+				$this->rfread($f, $n + 4);
 			}
+		} while ($n);
+		if (($colspace == 'Indexed') AND (empty($pal))) {
+			//$this->Error('Missing palette in '.$file);
 			fclose($f);
-			return array('w' => $w, 'h' => $h, 'cs' => $colspace, 'bpc' => $bpc, 'f' => 'FlateDecode', 'parms' => $parms, 'pal' => $pal, 'trns' => $trns, 'data' => $data);
-		}
-
-		/**
-		 * Binary-safe and URL-safe file read.
-		 * Reads up to length  bytes from the file pointer referenced by handle. Reading stops as soon as one of the following conditions is met: length bytes have been read; EOF (end of file) is reached.
-		 * @param resource $handle
-		 * @param int $length
-		 * @return Returns the read string or FALSE in case of error.
-		 * @author Nicola Asuni
-		 * @access protected
-		 * @since 4.5.027 (2009-03-16)
-		 */
-		protected function rfread($handle, $length) {
-			$data = fread($handle, $length);
-			if ($data === false) {
-				return false;
-			}
-			$rest = $length - strlen($data);
-			if ($rest > 0) {
-				$data .= $this->rfread($handle, $rest);
-			}
-			return $data;
-		}
-
-		/**
-		 * Extract info from a PNG image with alpha channel using the GD library.
-		 * @param string $file Name of the file containing the image.
-		 * @param float $x Abscissa of the upper-left corner.
-		 * @param float $y Ordinate of the upper-left corner.
-		 * @param float $w Width of the image in the page. If not specified or equal to zero, it is automatically calculated.
-		 * @param float $h Height of the image in the page. If not specified or equal to zero, it is automatically calculated.
-		 * @param string $type Image format. Possible values are (case insensitive): JPEG and PNG (whitout GD library) and all images supported by GD: GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM;. If not specified, the type is inferred from the file extension.
-		 * @param mixed $link URL or identifier returned by AddLink().
-		 * @param string $align Indicates the alignment of the pointer next to image insertion relative to image height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul>
-		 * @param boolean $resize If true resize (reduce) the image to fit $w and $h (requires GD library).
-		 * @param int $dpi dot-per-inch resolution used on resize
-		 * @param string $palign Allows to center or align the image on the current line. Possible values are:<ul><li>L : left align</li><li>C : center</li><li>R : right align</li><li>'' : empty string : left for LTR or right for RTL</li></ul>
-		 * @author Valentin Schmidt, Nicola Asuni
-		 * @access protected
-		 * @since 4.3.007 (2008-12-04)
-		 * @see Image()
-		 */
-		protected function ImagePngAlpha($file, $x='', $y='', $w=0, $h=0, $type='', $link='', $align='', $resize=false, $dpi=300, $palign='') {
-			// get image size
-			list($wpx, $hpx) = getimagesize($file);
+			return false;
+		}
+		fclose($f);
+		return array('w' => $w, 'h' => $h, 'cs' => $colspace, 'bpc' => $bpc, 'f' => 'FlateDecode', 'parms' => $parms, 'pal' => $pal, 'trns' => $trns, 'data' => $data);
+	}
+
+	/**
+	 * Binary-safe and URL-safe file read.
+	 * Reads up to length bytes from the file pointer referenced by handle. Reading stops as soon as one of the following conditions is met: length bytes have been read; EOF (end of file) is reached.
+	 * @param $handle (resource)
+	 * @param $length (int)
+	 * @return Returns the read string or FALSE in case of error.
+	 * @author Nicola Asuni
+	 * @protected
+	 * @since 4.5.027 (2009-03-16)
+	 */
+	protected function rfread($handle, $length) {
+		$data = fread($handle, $length);
+		if ($data === false) {
+			return false;
+		}
+		$rest = $length - strlen($data);
+		if ($rest > 0) {
+			$data .= $this->rfread($handle, $rest);
+		}
+		return $data;
+	}
+
+	/**
+	 * Extract info from a PNG image with alpha channel using the GD library.
+	 * @param $file (string) Name of the file containing the image.
+	 * @param $x (float) Abscissa of the upper-left corner.
+	 * @param $y (float) Ordinate of the upper-left corner.
+	 * @param $wpx (float) Original width of the image in pixels.
+	 * @param $hpx (float) original height of the image in pixels.
+	 * @param $w (float) Width of the image in the page. If not specified or equal to zero, it is automatically calculated.
+	 * @param $h (float) Height of the image in the page. If not specified or equal to zero, it is automatically calculated.
+	 * @param $type (string) Image format. Possible values are (case insensitive): JPEG and PNG (whitout GD library) and all images supported by GD: GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM;. If not specified, the type is inferred from the file extension.
+	 * @param $link (mixed) URL or identifier returned by AddLink().
+	 * @param $align (string) Indicates the alignment of the pointer next to image insertion relative to image height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul>
+	 * @param $resize (boolean) If true resize (reduce) the image to fit $w and $h (requires GD library).
+	 * @param $dpi (int) dot-per-inch resolution used on resize
+	 * @param $palign (string) Allows to center or align the image on the current line. Possible values are:<ul><li>L : left align</li><li>C : center</li><li>R : right align</li><li>'' : empty string : left for LTR or right for RTL</li></ul>
+	 * @author Nicola Asuni
+	 * @protected
+	 * @since 4.3.007 (2008-12-04)
+	 * @see Image()
+	 */
+	protected function ImagePngAlpha($file, $x, $y, $wpx, $hpx, $w, $h, $type, $link, $align, $resize, $dpi, $palign) {
+		// create temp image file (without alpha channel)
+		$tempfile_plain = tempnam(K_PATH_CACHE, 'mskp_');
+		// create temp alpha file
+		$tempfile_alpha = tempnam(K_PATH_CACHE, 'mska_');
+		if (extension_loaded('imagick')) { // ImageMagick
+			// ImageMagick library
+			$img = new Imagick();
+			$img->readImage($file);
+			// clone image object
+			$imga = $img->clone();
+			// extract alpha channel
+			$img->separateImageChannel(8); // 8 = (imagick::CHANNEL_ALPHA | imagick::CHANNEL_OPACITY | imagick::CHANNEL_MATTE);
+			$img->negateImage(true);
+			$img->setImageFormat('png');
+			$img->writeImage($tempfile_alpha);
+			// remove alpha channel
+			$imga->separateImageChannel(39); // 39 = (imagick::CHANNEL_ALL & ~(imagick::CHANNEL_ALPHA | imagick::CHANNEL_OPACITY | imagick::CHANNEL_MATTE));
+			$imga->setImageFormat('png');
+			$imga->writeImage($tempfile_plain);
+		} else { // GD library
 			// generate images
 			$img = imagecreatefrompng($file);
 			$imgalpha = imagecreate($wpx, $hpx);
@@ -6916,296 +7782,347 @@ if (!class_exists('TCPDF', false)) {
 					imagesetpixel($imgalpha, $xpx, $ypx, $alpha);
 				}
 			}
-			// create temp alpha file
-			$tempfile_alpha = tempnam(K_PATH_CACHE, 'mska_');
 			imagepng($imgalpha, $tempfile_alpha);
 			imagedestroy($imgalpha);
 			// extract image without alpha channel
 			$imgplain = imagecreatetruecolor($wpx, $hpx);
 			imagecopy($imgplain, $img, 0, 0, 0, 0, $wpx, $hpx);
-			// create temp image file
-			$tempfile_plain = tempnam(K_PATH_CACHE, 'mskp_');
 			imagepng($imgplain, $tempfile_plain);
 			imagedestroy($imgplain);
-			// embed mask image
-			$imgmask = $this->Image($tempfile_alpha, $x, $y, $w, $h, 'PNG', '', '', $resize, $dpi, '', true, false);
-			// embed image, masked with previously embedded mask
-			$this->Image($tempfile_plain, $x, $y, $w, $h, $type, $link, $align, $resize, $dpi, $palign, false, $imgmask);
-			// remove temp files
-			unlink($tempfile_alpha);
-			unlink($tempfile_plain);
-		}
-
-		/**
-		 * Correct the gamma value to be used with GD library
-		 * @param float $v the gamma value to be corrected
-		 * @access protected
-		 * @since 4.3.007 (2008-12-04)
-		 */
-		protected function getGDgamma($v) {
-			return (pow(($v / 255), 2.2) * 255);
-		}
-
-		/**
-		 * Performs a line break.
-		 * The current abscissa goes back to the left margin and the ordinate increases by the amount passed in parameter.
-		 * @param float $h The height of the break. By default, the value equals the height of the last printed cell.
-		 * @param boolean $cell if true add a cMargin to the x coordinate
-		 * @access public
-		 * @since 1.0
-		 * @see Cell()
-		 */
-		public function Ln($h='', $cell=false) {
-			if (($this->num_columns > 0) AND ($this->y == $this->columns[$this->current_column]['y']) AND isset($this->columns[$this->current_column]['x']) AND ($this->x == $this->columns[$this->current_column]['x'])) {
-				// revove vertical space from the top of the column
-				return;
-			}
-			if ($cell) {
-				$cellmargin = $this->cMargin;
-			} else {
-				$cellmargin = 0;
-			}
-			if ($this->rtl) {
-				$this->x = $this->w - $this->rMargin - $cellmargin;
-			} else {
-				$this->x = $this->lMargin + $cellmargin;
-			}
-			if (is_string($h)) {
-				$this->y += $this->lasth;
-			} else {
-				$this->y += $h;
-			}
-			$this->newline = true;
 		}
+		// embed mask image
+		$imgmask = $this->Image($tempfile_alpha, $x, $y, $w, $h, 'PNG', '', '', $resize, $dpi, '', true, false);
+		// embed image, masked with previously embedded mask
+		$this->Image($tempfile_plain, $x, $y, $w, $h, $type, $link, $align, $resize, $dpi, $palign, false, $imgmask);
+		// remove temp files
+		unlink($tempfile_alpha);
+		unlink($tempfile_plain);
+	}
+
+	/**
+	 * Correct the gamma value to be used with GD library
+	 * @param $v (float) the gamma value to be corrected
+	 * @protected
+	 * @since 4.3.007 (2008-12-04)
+	 */
+	protected function getGDgamma($v) {
+		return (pow(($v / 255), 2.2) * 255);
+	}
 
-		/**
-		 * Returns the relative X value of current position.
-		 * The value is relative to the left border for LTR languages and to the right border for RTL languages.
-		 * @return float
-		 * @access public
-		 * @since 1.2
-		 * @see SetX(), GetY(), SetY()
-		 */
-		public function GetX() {
-			//Get x position
+	/**
+	 * Performs a line break.
+	 * The current abscissa goes back to the left margin and the ordinate increases by the amount passed in parameter.
+	 * @param $h (float) The height of the break. By default, the value equals the height of the last printed cell.
+	 * @param $cell (boolean) if true add the current left (or right o for RTL) padding to the X coordinate
+	 * @public
+	 * @since 1.0
+	 * @see Cell()
+	 */
+	public function Ln($h='', $cell=false) {
+		if (($this->num_columns > 1) AND ($this->y == $this->columns[$this->current_column]['y']) AND isset($this->columns[$this->current_column]['x']) AND ($this->x == $this->columns[$this->current_column]['x'])) {
+			// revove vertical space from the top of the column
+			return;
+		}
+		if ($cell) {
 			if ($this->rtl) {
-				return ($this->w - $this->x);
+				$cellpadding = $this->cell_padding['R'];
 			} else {
-				return $this->x;
+				$cellpadding = $this->cell_padding['L'];
 			}
+		} else {
+			$cellpadding = 0;
+		}
+		if ($this->rtl) {
+			$this->x = $this->w - $this->rMargin - $cellpadding;
+		} else {
+			$this->x = $this->lMargin + $cellpadding;
 		}
+		if (is_string($h)) {
+			$this->y += $this->lasth;
+		} else {
+			$this->y += $h;
+		}
+		$this->newline = true;
+	}
 
-		/**
-		 * Returns the absolute X value of current position.
-		 * @return float
-		 * @access public
-		 * @since 1.2
-		 * @see SetX(), GetY(), SetY()
-		 */
-		public function GetAbsX() {
+	/**
+	 * Returns the relative X value of current position.
+	 * The value is relative to the left border for LTR languages and to the right border for RTL languages.
+	 * @return float
+	 * @public
+	 * @since 1.2
+	 * @see SetX(), GetY(), SetY()
+	 */
+	public function GetX() {
+		//Get x position
+		if ($this->rtl) {
+			return ($this->w - $this->x);
+		} else {
 			return $this->x;
 		}
+	}
 
-		/**
-		 * Returns the ordinate of the current position.
-		 * @return float
-		 * @access public
-		 * @since 1.0
-		 * @see SetY(), GetX(), SetX()
-		 */
-		public function GetY() {
-			return $this->y;
-		}
-
-		/**
-		 * Defines the abscissa of the current position.
-		 * If the passed value is negative, it is relative to the right of the page (or left if language is RTL).
-		 * @param float $x The value of the abscissa.
-		 * @param boolean $rtloff if true always uses the page top-left corner as origin of axis.
-		 * @access public
-		 * @since 1.2
-		 * @see GetX(), GetY(), SetY(), SetXY()
-		 */
-		public function SetX($x, $rtloff=false) {
-			if (!$rtloff AND $this->rtl) {
-				if ($x >= 0) {
-					$this->x = $this->w - $x;
-				} else {
-					$this->x = abs($x);
-				}
+	/**
+	 * Returns the absolute X value of current position.
+	 * @return float
+	 * @public
+	 * @since 1.2
+	 * @see SetX(), GetY(), SetY()
+	 */
+	public function GetAbsX() {
+		return $this->x;
+	}
+
+	/**
+	 * Returns the ordinate of the current position.
+	 * @return float
+	 * @public
+	 * @since 1.0
+	 * @see SetY(), GetX(), SetX()
+	 */
+	public function GetY() {
+		return $this->y;
+	}
+
+	/**
+	 * Defines the abscissa of the current position.
+	 * If the passed value is negative, it is relative to the right of the page (or left if language is RTL).
+	 * @param $x (float) The value of the abscissa.
+	 * @param $rtloff (boolean) if true always uses the page top-left corner as origin of axis.
+	 * @public
+	 * @since 1.2
+	 * @see GetX(), GetY(), SetY(), SetXY()
+	 */
+	public function SetX($x, $rtloff=false) {
+		if (!$rtloff AND $this->rtl) {
+			if ($x >= 0) {
+				$this->x = $this->w - $x;
 			} else {
-				if ($x >= 0) {
-					$this->x = $x;
-				} else {
-					$this->x = $this->w + $x;
-				}
+				$this->x = abs($x);
 			}
-			if ($this->x < 0) {
-				$this->x = 0;
+		} else {
+			if ($x >= 0) {
+				$this->x = $x;
+			} else {
+				$this->x = $this->w + $x;
 			}
-			if ($this->x > $this->w) {
-				$this->x = $this->w;
+		}
+		if ($this->x < 0) {
+			$this->x = 0;
+		}
+		if ($this->x > $this->w) {
+			$this->x = $this->w;
+		}
+	}
+
+	/**
+	 * Moves the current abscissa back to the left margin and sets the ordinate.
+	 * If the passed value is negative, it is relative to the bottom of the page.
+	 * @param $y (float) The value of the ordinate.
+	 * @param $resetx (bool) if true (default) reset the X position.
+	 * @param $rtloff (boolean) if true always uses the page top-left corner as origin of axis.
+	 * @public
+	 * @since 1.0
+	 * @see GetX(), GetY(), SetY(), SetXY()
+	 */
+	public function SetY($y, $resetx=true, $rtloff=false) {
+		if ($resetx) {
+			//reset x
+			if (!$rtloff AND $this->rtl) {
+				$this->x = $this->w - $this->rMargin;
+			} else {
+				$this->x = $this->lMargin;
 			}
 		}
+		if ($y >= 0) {
+			$this->y = $y;
+		} else {
+			$this->y = $this->h + $y;
+		}
+		if ($this->y < 0) {
+			$this->y = 0;
+		}
+		if ($this->y > $this->h) {
+			$this->y = $this->h;
+		}
+	}
 
-		/**
-		 * Moves the current abscissa back to the left margin and sets the ordinate.
-		 * If the passed value is negative, it is relative to the bottom of the page.
-		 * @param float $y The value of the ordinate.
-		 * @param bool $resetx if true (default) reset the X position.
-		 * @param boolean $rtloff if true always uses the page top-left corner as origin of axis.
-		 * @access public
-		 * @since 1.0
-		 * @see GetX(), GetY(), SetY(), SetXY()
-		 */
-		public function SetY($y, $resetx=true, $rtloff=false) {
-			if ($resetx) {
-				//reset x
-				if (!$rtloff AND $this->rtl) {
-					$this->x = $this->w - $this->rMargin;
-				} else {
-					$this->x = $this->lMargin;
-				}
+	/**
+	 * Defines the abscissa and ordinate of the current position.
+	 * If the passed values are negative, they are relative respectively to the right and bottom of the page.
+	 * @param $x (float) The value of the abscissa.
+	 * @param $y (float) The value of the ordinate.
+	 * @param $rtloff (boolean) if true always uses the page top-left corner as origin of axis.
+	 * @public
+	 * @since 1.2
+	 * @see SetX(), SetY()
+	 */
+	public function SetXY($x, $y, $rtloff=false) {
+		$this->SetY($y, false, $rtloff);
+		$this->SetX($x, $rtloff);
+	}
+
+	/**
+	 * Send the document to a given destination: string, local file or browser.
+	 * In the last case, the plug-in may be used (if present) or a download ("Save as" dialog box) may be forced.<br />
+	 * The method first calls Close() if necessary to terminate the document.
+	 * @param $name (string) The name of the file when saved. Note that special characters are removed and blanks characters are replaced with the underscore character.
+	 * @param $dest (string) Destination where to send the document. It can take one of the following values:<ul><li>I: send the file inline to the browser (default). The plug-in is used if available. The name given by name is used when one selects the "Save as" option on the link generating the PDF.</li><li>D: send to the browser and force a file download with the name given by name.</li><li>F: save to a local server file with the name given by name.</li><li>S: return the document as a string (name is ignored).</li><li>FI: equivalent to F + I option</li><li>FD: equivalent to F + D option</li><li>E: return the document as base64 mime multi-part email attachment (RFC 2045)</li></ul>
+	 * @public
+	 * @since 1.0
+	 * @see Close()
+	 */
+	public function Output($name='doc.pdf', $dest='I') {
+		//Output PDF to some destination
+		//Finish document if necessary
+		if ($this->state < 3) {
+			$this->Close();
+		}
+		//Normalize parameters
+		if (is_bool($dest)) {
+			$dest = $dest ? 'D' : 'F';
+		}
+		$dest = strtoupper($dest);
+		if ($dest{0} != 'F') {
+			$name = preg_replace('/[\s]+/', '_', $name);
+			$name = preg_replace('/[^a-zA-Z0-9_\.-]/', '', $name);
+		}
+		if ($this->sign) {
+			// *** apply digital signature to the document ***
+			// get the document content
+			$pdfdoc = $this->getBuffer();
+			// remove last newline
+			$pdfdoc = substr($pdfdoc, 0, -1);
+			// Remove the original buffer
+			if (isset($this->diskcache) AND $this->diskcache) {
+				// remove buffer file from cache
+				unlink($this->buffer);
 			}
-			if ($y >= 0) {
-				$this->y = $y;
+			unset($this->buffer);
+			// remove filler space
+			$byterange_string_len = strlen($this->byterange_string);
+			// define the ByteRange
+			$byte_range = array();
+			$byte_range[0] = 0;
+			$byte_range[1] = strpos($pdfdoc, $this->byterange_string) + $byterange_string_len + 10;
+			$byte_range[2] = $byte_range[1] + $this->signature_max_length + 2;
+			$byte_range[3] = strlen($pdfdoc) - $byte_range[2];
+			$pdfdoc = substr($pdfdoc, 0, $byte_range[1]).substr($pdfdoc, $byte_range[2]);
+			// replace the ByteRange
+			$byterange = sprintf('/ByteRange[0 %u %u %u]', $byte_range[1], $byte_range[2], $byte_range[3]);
+			$byterange .= str_repeat(' ', ($byterange_string_len - strlen($byterange)));
+			$pdfdoc = str_replace($this->byterange_string, $byterange, $pdfdoc);
+			// write the document to a temporary folder
+			$tempdoc = tempnam(K_PATH_CACHE, 'tmppdf_');
+			$f = fopen($tempdoc, 'wb');
+			if (!$f) {
+				$this->Error('Unable to create temporary file: '.$tempdoc);
+			}
+			$pdfdoc_length = strlen($pdfdoc);
+			fwrite($f, $pdfdoc, $pdfdoc_length);
+			fclose($f);
+			// get digital signature via openssl library
+			$tempsign = tempnam(K_PATH_CACHE, 'tmpsig_');
+			if (empty($this->signature_data['extracerts'])) {
+				openssl_pkcs7_sign($tempdoc, $tempsign, $this->signature_data['signcert'], array($this->signature_data['privkey'], $this->signature_data['password']), array(), PKCS7_BINARY | PKCS7_DETACHED);
 			} else {
-				$this->y = $this->h + $y;
-			}
-			if ($this->y < 0) {
-				$this->y = 0;
-			}
-			if ($this->y > $this->h) {
-				$this->y = $this->h;
-			}
-		}
-
-		/**
-		 * Defines the abscissa and ordinate of the current position.
-		 * If the passed values are negative, they are relative respectively to the right and bottom of the page.
-		 * @param float $x The value of the abscissa.
-		 * @param float $y The value of the ordinate.
-		 * @param boolean $rtloff if true always uses the page top-left corner as origin of axis.
-		 * @access public
-		 * @since 1.2
-		 * @see SetX(), SetY()
-		 */
-		public function SetXY($x, $y, $rtloff=false) {
-			$this->SetY($y, false, $rtloff);
-			$this->SetX($x, $rtloff);
-		}
-
-		/**
-		 * Send the document to a given destination: string, local file or browser.
-		 * In the last case, the plug-in may be used (if present) or a download ("Save as" dialog box) may be forced.<br />
-		 * The method first calls Close() if necessary to terminate the document.
-		 * @param string $name The name of the file when saved. Note that special characters are removed and blanks characters are replaced with the underscore character.
-		 * @param string $dest Destination where to send the document. It can take one of the following values:<ul><li>I: send the file inline to the browser (default). The plug-in is used if available. The name given by name is used when one selects the "Save as" option on the link generating the PDF.</li><li>D: send to the browser and force a file download with the name given by name.</li><li>F: save to a local server file with the name given by name.</li><li>S: return the document as a string. name is ignored.</li><li>FI: equivalent to F + I option</li><li>FD: equivalent to F + D option</li></ul>
-		 * @access public
-		 * @since 1.0
-		 * @see Close()
-		 */
-		public function Output($name='doc.pdf', $dest='I') {
-			//Output PDF to some destination
-			//Finish document if necessary
-			if ($this->state < 3) {
-				$this->Close();
-			}
-			//Normalize parameters
-			if (is_bool($dest)) {
-				$dest = $dest ? 'D' : 'F';
-			}
-			$dest = strtoupper($dest);
-			if ($dest != 'F') {
-				$name = preg_replace('/[\s]+/', '_', $name);
-				$name = preg_replace('/[^a-zA-Z0-9_\.-]/', '', $name);
-			}
-			if ($this->sign) {
-				// *** apply digital signature to the document ***
-				// get the document content
-				$pdfdoc = $this->getBuffer();
-				// remove last newline
-				$pdfdoc = substr($pdfdoc, 0, -1);
-				// Remove the original buffer
-				if (isset($this->diskcache) AND $this->diskcache) {
-					// remove buffer file from cache
-					unlink($this->buffer);
-				}
-				unset($this->buffer);
-				// remove filler space
-				$byterange_string_len = strlen($this->byterange_string);
-				// define the ByteRange
-				$byte_range = array();
-				$byte_range[0] = 0;
-				$byte_range[1] = strpos($pdfdoc, $this->byterange_string) + $byterange_string_len + 10;
-				$byte_range[2] = $byte_range[1] + $this->signature_max_length + 2;
-				$byte_range[3] = strlen($pdfdoc) - $byte_range[2];
-				$pdfdoc = substr($pdfdoc, 0, $byte_range[1]).substr($pdfdoc, $byte_range[2]);
-				// replace the ByteRange
-				$byterange = sprintf('/ByteRange[0 %u %u %u]', $byte_range[1], $byte_range[2], $byte_range[3]);
-				$byterange .= str_repeat(' ', ($byterange_string_len - strlen($byterange)));
-				$pdfdoc = str_replace($this->byterange_string, $byterange, $pdfdoc);
-				// write the document to a temporary folder
-				$tempdoc = tempnam(K_PATH_CACHE, 'tmppdf_');
-				$f = fopen($tempdoc, 'wb');
-				if (!$f) {
-					$this->Error('Unable to create temporary file: '.$tempdoc);
-				}
-				$pdfdoc_length = strlen($pdfdoc);
-				fwrite($f, $pdfdoc, $pdfdoc_length);
-				fclose($f);
-				// get digital signature via openssl library
-				$tempsign = tempnam(K_PATH_CACHE, 'tmpsig_');
-				if (empty($this->signature_data['extracerts'])) {
-					openssl_pkcs7_sign($tempdoc, $tempsign, $this->signature_data['signcert'], array($this->signature_data['privkey'], $this->signature_data['password']), array(), PKCS7_BINARY | PKCS7_DETACHED);
-				} else {
-					openssl_pkcs7_sign($tempdoc, $tempsign, $this->signature_data['signcert'], array($this->signature_data['privkey'], $this->signature_data['password']), array(), PKCS7_BINARY | PKCS7_DETACHED, $this->signature_data['extracerts']);
-				}
-				unlink($tempdoc);
-				// read signature
-				$signature = file_get_contents($tempsign);
-				unlink($tempsign);
-				// extract signature
-				$signature = substr($signature, $pdfdoc_length);
-				$signature = substr($signature, (strpos($signature, "%%EOF\n\n------") + 13));
-				$tmparr = explode("\n\n", $signature);
-				$signature = $tmparr[1];
-				unset($tmparr);
-				// decode signature
-				$signature = base64_decode(trim($signature));
-				// convert signature to hex
-				$signature = current(unpack('H*', $signature));
-				$signature = str_pad($signature, $this->signature_max_length, '0');
-				// Add signature to the document
-				$pdfdoc = substr($pdfdoc, 0, $byte_range[1]).'<'.$signature.'>'.substr($pdfdoc, $byte_range[1]);
-				$this->diskcache = false;
-				$this->buffer = &$pdfdoc;
-				$this->bufferlen = strlen($pdfdoc);
-			}
-			switch($dest) {
-				case 'I': {
-					// Send PDF to the standard output
-					if (ob_get_contents()) {
-						$this->Error('Some data has already been output, can\'t send PDF file');
+				openssl_pkcs7_sign($tempdoc, $tempsign, $this->signature_data['signcert'], array($this->signature_data['privkey'], $this->signature_data['password']), array(), PKCS7_BINARY | PKCS7_DETACHED, $this->signature_data['extracerts']);
+			}
+			unlink($tempdoc);
+			// read signature
+			$signature = file_get_contents($tempsign);
+			unlink($tempsign);
+			// extract signature
+			$signature = substr($signature, $pdfdoc_length);
+			$signature = substr($signature, (strpos($signature, "%%EOF\n\n------") + 13));
+			$tmparr = explode("\n\n", $signature);
+			$signature = $tmparr[1];
+			unset($tmparr);
+			// decode signature
+			$signature = base64_decode(trim($signature));
+			// convert signature to hex
+			$signature = current(unpack('H*', $signature));
+			$signature = str_pad($signature, $this->signature_max_length, '0');
+			// Add signature to the document
+			$pdfdoc = substr($pdfdoc, 0, $byte_range[1]).'<'.$signature.'>'.substr($pdfdoc, $byte_range[1]);
+			$this->diskcache = false;
+			$this->buffer = &$pdfdoc;
+			$this->bufferlen = strlen($pdfdoc);
+		}
+		switch($dest) {
+			case 'I': {
+				// Send PDF to the standard output
+				if (ob_get_contents()) {
+					$this->Error('Some data has already been output, can\'t send PDF file');
+				}
+				if (php_sapi_name() != 'cli') {
+					//We send to a browser
+					header('Content-Type: application/pdf');
+					if (headers_sent()) {
+						$this->Error('Some data has already been output to browser, can\'t send PDF file');
 					}
-					if (php_sapi_name() != 'cli') {
-						//We send to a browser
-						header('Content-Type: application/pdf');
-						if (headers_sent()) {
-							$this->Error('Some data has already been output to browser, can\'t send PDF file');
-						}
-						header('Cache-Control: public, must-revalidate, max-age=0'); // HTTP/1.1
-						header('Pragma: public');
-						header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past
-						header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
-						header('Content-Length: '.$this->bufferlen);
-						header('Content-Disposition: inline; filename="'.basename($name).'";');
+					header('Cache-Control: public, must-revalidate, max-age=0'); // HTTP/1.1
+					header('Pragma: public');
+					header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past
+					header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
+					header('Content-Length: '.$this->bufferlen);
+					header('Content-Disposition: inline; filename="'.basename($name).'";');
+				}
+				echo $this->getBuffer();
+				break;
+			}
+			case 'D': {
+				// Download PDF as file
+				if (ob_get_contents()) {
+					$this->Error('Some data has already been output, can\'t send PDF file');
+				}
+				header('Content-Description: File Transfer');
+				if (headers_sent()) {
+					$this->Error('Some data has already been output to browser, can\'t send PDF file');
+				}
+				header('Cache-Control: public, must-revalidate, max-age=0'); // HTTP/1.1
+				header('Pragma: public');
+				header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past
+				header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
+				// force download dialog
+				header('Content-Type: application/force-download');
+				header('Content-Type: application/octet-stream', false);
+				header('Content-Type: application/download', false);
+				header('Content-Type: application/pdf', false);
+				// use the Content-Disposition header to supply a recommended filename
+				header('Content-Disposition: attachment; filename="'.basename($name).'";');
+				header('Content-Transfer-Encoding: binary');
+				header('Content-Length: '.$this->bufferlen);
+				echo $this->getBuffer();
+				break;
+			}
+			case 'F':
+			case 'FI':
+			case 'FD': {
+				// Save PDF to a local file
+				if ($this->diskcache) {
+					copy($this->buffer, $name);
+				} else {
+					$f = fopen($name, 'wb');
+					if (!$f) {
+						$this->Error('Unable to create output file: '.$name);
 					}
-					echo $this->getBuffer();
-					break;
+					fwrite($f, $this->getBuffer(), $this->bufferlen);
+					fclose($f);
 				}
-				case 'D': {
-					// Download PDF as file
+				if ($dest == 'FI') {
+					// send headers to browser
+					header('Content-Type: application/pdf');
+					header('Cache-Control: public, must-revalidate, max-age=0'); // HTTP/1.1
+					header('Pragma: public');
+					header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past
+					header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
+					header('Content-Length: '.filesize($name));
+					header('Content-Disposition: inline; filename="'.basename($name).'";');
+					// send document to the browser
+					echo file_get_contents($name);
+				} elseif ($dest == 'FD') {
+					// send headers to browser
 					if (ob_get_contents()) {
 						$this->Error('Some data has already been output, can\'t send PDF file');
 					}
@@ -7225,3694 +8142,3819 @@ if (!class_exists('TCPDF', false)) {
 					// use the Content-Disposition header to supply a recommended filename
 					header('Content-Disposition: attachment; filename="'.basename($name).'";');
 					header('Content-Transfer-Encoding: binary');
-					header('Content-Length: '.$this->bufferlen);
-					echo $this->getBuffer();
-					break;
-				}
-				case 'F':
-				case 'FI':
-				case 'FD': {
-					// Save PDF to a local file
-					if ($this->diskcache) {
-						copy($this->buffer, $name);
-					} else {
-						$f = fopen($name, 'wb');
-						if (!$f) {
-							$this->Error('Unable to create output file: '.$name);
-						}
-						fwrite($f, $this->getBuffer(), $this->bufferlen);
-						fclose($f);
-					}
-					if ($dest == 'FI') {
-						// send headers to browser
-						header('Content-Type: application/pdf');
-						header('Cache-Control: public, must-revalidate, max-age=0'); // HTTP/1.1
-						header('Pragma: public');
-						header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past
-						header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
-						header('Content-Length: '.filesize($name));
-						header('Content-Disposition: inline; filename="'.basename($name).'";');
-						// send document to the browser
-						echo file_get_contents($name);
-					} elseif ($dest == 'FD') {
-						// send headers to browser
-						if (ob_get_contents()) {
-							$this->Error('Some data has already been output, can\'t send PDF file');
-						}
-						header('Content-Description: File Transfer');
-						if (headers_sent()) {
-							$this->Error('Some data has already been output to browser, can\'t send PDF file');
-						}
-						header('Cache-Control: public, must-revalidate, max-age=0'); // HTTP/1.1
-						header('Pragma: public');
-						header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past
-						header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
-						// force download dialog
-						header('Content-Type: application/force-download');
-						header('Content-Type: application/octet-stream', false);
-						header('Content-Type: application/download', false);
-						header('Content-Type: application/pdf', false);
-						// use the Content-Disposition header to supply a recommended filename
-						header('Content-Disposition: attachment; filename="'.basename($name).'";');
-						header('Content-Transfer-Encoding: binary');
-						header('Content-Length: '.filesize($name));
-						// send document to the browser
-						echo file_get_contents($name);
-					}
-					break;
-				}
-				case 'S': {
-					// Returns PDF as a string
-					return $this->getBuffer();
-				}
-				default: {
-					$this->Error('Incorrect output destination: '.$dest);
+					header('Content-Length: '.filesize($name));
+					// send document to the browser
+					echo file_get_contents($name);
 				}
+				break;
 			}
-			return '';
-		}
-
-		/**
-		 * Unset all class variables except the following critical variables: internal_encoding, state, bufferlen, buffer and diskcache.
-		 * @param boolean $destroyall if true destroys all class variables, otherwise preserves critical variables.
-		 * @param boolean $preserve_objcopy if true preserves the objcopy variable
-		 * @access public
-		 * @since 4.5.016 (2009-02-24)
-		 */
-		public function _destroy($destroyall=false, $preserve_objcopy=false) {
-			if ($destroyall AND isset($this->diskcache) AND $this->diskcache AND (!$preserve_objcopy) AND (!$this->empty_string($this->buffer))) {
-				// remove buffer file from cache
-				unlink($this->buffer);
+			case 'E': {
+				// Return PDF as base64 mime multi-part email attachment (RFC 2045)
+				$retval = 'Content-Type: application/pdf;'."\r\n";
+				$retval .= ' name="'.$name.'"'."\r\n";
+				$retval .= 'Content-Transfer-Encoding: base64'."\r\n";
+				$retval .= 'Content-Disposition: attachment;'."\r\n";
+				$retval .= ' filename="'.$name.'"'."\r\n\r\n";
+				$retval .= chunk_split(base64_encode($this->getBuffer()), 76, "\r\n");
+				return $retval;
 			}
-			foreach (array_keys(get_object_vars($this)) as $val) {
-				if ($destroyall OR (
-					($val != 'internal_encoding')
-					AND ($val != 'state')
-					AND ($val != 'bufferlen')
-					AND ($val != 'buffer')
-					AND ($val != 'diskcache')
-					AND ($val != 'sign')
-					AND ($val != 'signature_data')
-					AND ($val != 'signature_max_length')
-					AND ($val != 'byterange_string')
-					)) {
-					if ((!$preserve_objcopy OR ($val != 'objcopy')) AND isset($this->$val)) {
-						unset($this->$val);
-					}
-				}
+			case 'S': {
+				// Returns PDF as a string
+				return $this->getBuffer();
+			}
+			default: {
+				$this->Error('Incorrect output destination: '.$dest);
 			}
 		}
+		return '';
+	}
 
-		/**
-		 * Check for locale-related bug
-		 * @access protected
-		 */
-		protected function _dochecks() {
-			//Check for locale-related bug
-			if (1.1 == 1) {
-				$this->Error('Don\'t alter the locale before including class file');
-			}
-			//Check for decimal separator
-			if (sprintf('%.1F', 1.0) != '1.0') {
-				setlocale(LC_NUMERIC, 'C');
-			}
+	/**
+	 * Unset all class variables except the following critical variables: internal_encoding, state, bufferlen, buffer and diskcache.
+	 * @param $destroyall (boolean) if true destroys all class variables, otherwise preserves critical variables.
+	 * @param $preserve_objcopy (boolean) if true preserves the objcopy variable
+	 * @public
+	 * @since 4.5.016 (2009-02-24)
+	 */
+	public function _destroy($destroyall=false, $preserve_objcopy=false) {
+		if ($destroyall AND isset($this->diskcache) AND $this->diskcache AND (!$preserve_objcopy) AND (!$this->empty_string($this->buffer))) {
+			// remove buffer file from cache
+			unlink($this->buffer);
+		}
+		foreach (array_keys(get_object_vars($this)) as $val) {
+			if ($destroyall OR (
+				($val != 'internal_encoding')
+				AND ($val != 'state')
+				AND ($val != 'bufferlen')
+				AND ($val != 'buffer')
+				AND ($val != 'diskcache')
+				AND ($val != 'sign')
+				AND ($val != 'signature_data')
+				AND ($val != 'signature_max_length')
+				AND ($val != 'byterange_string')
+				)) {
+				if ((!$preserve_objcopy OR ($val != 'objcopy')) AND isset($this->$val)) {
+					unset($this->$val);
+				}
+			}
+		}
+	}
+
+	/**
+	 * Check for locale-related bug
+	 * @protected
+	 */
+	protected function _dochecks() {
+		//Check for locale-related bug
+		if (1.1 == 1) {
+			$this->Error('Don\'t alter the locale before including class file');
 		}
+		//Check for decimal separator
+		if (sprintf('%.1F', 1.0) != '1.0') {
+			setlocale(LC_NUMERIC, 'C');
+		}
+	}
 
-		/**
-		 * Return fonts path
-		 * @return string
-		 * @access protected
-		 */
-		protected function _getfontpath() {
-			if (!defined('K_PATH_FONTS') AND is_dir(dirname(__FILE__).'/fonts')) {
-				define('K_PATH_FONTS', dirname(__FILE__).'/fonts/');
-			}
-			return defined('K_PATH_FONTS') ? K_PATH_FONTS : '';
+	/**
+	 * Return fonts path
+	 * @return string
+	 * @protected
+	 */
+	protected function _getfontpath() {
+		if (!defined('K_PATH_FONTS') AND is_dir(dirname(__FILE__).'/fonts')) {
+			define('K_PATH_FONTS', dirname(__FILE__).'/fonts/');
 		}
+		return defined('K_PATH_FONTS') ? K_PATH_FONTS : '';
+	}
 
-		/**
-		 * Output pages.
-		 * @access protected
-		 */
-		protected function _putpages() {
-			$nb = $this->numpages;
+	/**
+	 * Output pages.
+	 * @protected
+	 */
+	protected function _putpages() {
+		$nb = $this->numpages;
+		if (!empty($this->AliasNbPages)) {
+			$nbs = $this->formatPageNumber($nb);
+			$nbu = $this->UTF8ToUTF16BE($nbs, false); // replacement for unicode font
+			$alias_a = $this->_escape($this->AliasNbPages);
+			$alias_au = $this->_escape('{'.$this->AliasNbPages.'}');
+			if ($this->isunicode) {
+				$alias_b = $this->_escape($this->UTF8ToLatin1($this->AliasNbPages));
+				$alias_bu = $this->_escape($this->UTF8ToLatin1('{'.$this->AliasNbPages.'}'));
+				$alias_c = $this->_escape($this->utf8StrRev($this->AliasNbPages, false, $this->tmprtl));
+				$alias_cu = $this->_escape($this->utf8StrRev('{'.$this->AliasNbPages.'}', false, $this->tmprtl));
+			}
+		}
+		if (!empty($this->AliasNumPage)) {
+			$alias_pa = $this->_escape($this->AliasNumPage);
+			$alias_pau = $this->_escape('{'.$this->AliasNumPage.'}');
+			if ($this->isunicode) {
+				$alias_pb = $this->_escape($this->UTF8ToLatin1($this->AliasNumPage));
+				$alias_pbu = $this->_escape($this->UTF8ToLatin1('{'.$this->AliasNumPage.'}'));
+				$alias_pc = $this->_escape($this->utf8StrRev($this->AliasNumPage, false, $this->tmprtl));
+				$alias_pcu = $this->_escape($this->utf8StrRev('{'.$this->AliasNumPage.'}', false, $this->tmprtl));
+			}
+		}
+		$pagegroupnum = 0;
+		$filter = ($this->compress) ? '/Filter /FlateDecode ' : '';
+		for ($n=1; $n <= $nb; ++$n) {
+			$temppage = $this->getPageBuffer($n);
+			if (!empty($this->pagegroups)) {
+				if(isset($this->newpagegroup[$n])) {
+					$pagegroupnum = 0;
+				}
+				++$pagegroupnum;
+				foreach ($this->pagegroups as $k => $v) {
+					// replace total pages group numbers
+					$vs = $this->formatPageNumber($v);
+					$vu = $this->UTF8ToUTF16BE($vs, false);
+					$alias_ga = $this->_escape($k);
+					$alias_gau = $this->_escape('{'.$k.'}');
+					if ($this->isunicode) {
+						$alias_gb = $this->_escape($this->UTF8ToLatin1($k));
+						$alias_gbu = $this->_escape($this->UTF8ToLatin1('{'.$k.'}'));
+						$alias_gc = $this->_escape($this->utf8StrRev($k, false, $this->tmprtl));
+						$alias_gcu = $this->_escape($this->utf8StrRev('{'.$k.'}', false, $this->tmprtl));
+					}
+					$temppage = str_replace($alias_gau, $vu, $temppage);
+					if ($this->isunicode) {
+						$temppage = str_replace($alias_gbu, $vu, $temppage);
+						$temppage = str_replace($alias_gcu, $vu, $temppage);
+						$temppage = str_replace($alias_gb, $vs, $temppage);
+						$temppage = str_replace($alias_gc, $vs, $temppage);
+					}
+					$temppage = str_replace($alias_ga, $vs, $temppage);
+					// replace page group numbers
+					$pvs = $this->formatPageNumber($pagegroupnum);
+					$pvu = $this->UTF8ToUTF16BE($pvs, false);
+					$pk = str_replace('{nb', '{pnb', $k);
+					$alias_pga = $this->_escape($pk);
+					$alias_pgau = $this->_escape('{'.$pk.'}');
+					if ($this->isunicode) {
+						$alias_pgb = $this->_escape($this->UTF8ToLatin1($pk));
+						$alias_pgbu = $this->_escape($this->UTF8ToLatin1('{'.$pk.'}'));
+						$alias_pgc = $this->_escape($this->utf8StrRev($pk, false, $this->tmprtl));
+						$alias_pgcu = $this->_escape($this->utf8StrRev('{'.$pk.'}', false, $this->tmprtl));
+					}
+					$temppage = str_replace($alias_pgau, $pvu, $temppage);
+					if ($this->isunicode) {
+						$temppage = str_replace($alias_pgbu, $pvu, $temppage);
+						$temppage = str_replace($alias_pgcu, $pvu, $temppage);
+						$temppage = str_replace($alias_pgb, $pvs, $temppage);
+						$temppage = str_replace($alias_pgc, $pvs, $temppage);
+					}
+					$temppage = str_replace($alias_pga, $pvs, $temppage);
+				}
+			}
 			if (!empty($this->AliasNbPages)) {
-				$nbs = $this->formatPageNumber($nb);
-				$nbu = $this->UTF8ToUTF16BE($nbs, false); // replacement for unicode font
-				$alias_a = $this->_escape($this->AliasNbPages);
-				$alias_au = $this->_escape('{'.$this->AliasNbPages.'}');
+				// replace total pages number
+				$temppage = str_replace($alias_au, $nbu, $temppage);
 				if ($this->isunicode) {
-					$alias_b = $this->_escape($this->UTF8ToLatin1($this->AliasNbPages));
-					$alias_bu = $this->_escape($this->UTF8ToLatin1('{'.$this->AliasNbPages.'}'));
-					$alias_c = $this->_escape($this->utf8StrRev($this->AliasNbPages, false, $this->tmprtl));
-					$alias_cu = $this->_escape($this->utf8StrRev('{'.$this->AliasNbPages.'}', false, $this->tmprtl));
+					$temppage = str_replace($alias_bu, $nbu, $temppage);
+					$temppage = str_replace($alias_cu, $nbu, $temppage);
+					$temppage = str_replace($alias_b, $nbs, $temppage);
+					$temppage = str_replace($alias_c, $nbs, $temppage);
 				}
+				$temppage = str_replace($alias_a, $nbs, $temppage);
 			}
 			if (!empty($this->AliasNumPage)) {
-				$alias_pa = $this->_escape($this->AliasNumPage);
-				$alias_pau = $this->_escape('{'.$this->AliasNumPage.'}');
+				// replace page number
+				$pnbs = $this->formatPageNumber($n);
+				$pnbu = $this->UTF8ToUTF16BE($pnbs, false); // replacement for unicode font
+				$temppage = str_replace($alias_pau, $pnbu, $temppage);
 				if ($this->isunicode) {
-					$alias_pb = $this->_escape($this->UTF8ToLatin1($this->AliasNumPage));
-					$alias_pbu = $this->_escape($this->UTF8ToLatin1('{'.$this->AliasNumPage.'}'));
-					$alias_pc = $this->_escape($this->utf8StrRev($this->AliasNumPage, false, $this->tmprtl));
-					$alias_pcu = $this->_escape($this->utf8StrRev('{'.$this->AliasNumPage.'}', false, $this->tmprtl));
-				}
-			}
-			$pagegroupnum = 0;
-			$filter = ($this->compress) ? '/Filter /FlateDecode ' : '';
-			for ($n=1; $n <= $nb; ++$n) {
-				$temppage = $this->getPageBuffer($n);
-				if (!empty($this->pagegroups)) {
-					if(isset($this->newpagegroup[$n])) {
-						$pagegroupnum = 0;
-					}
-					++$pagegroupnum;
-					foreach ($this->pagegroups as $k => $v) {
-						// replace total pages group numbers
-						$vs = $this->formatPageNumber($v);
-						$vu = $this->UTF8ToUTF16BE($vs, false);
-						$alias_ga = $this->_escape($k);
-						$alias_gau = $this->_escape('{'.$k.'}');
-						if ($this->isunicode) {
-							$alias_gb = $this->_escape($this->UTF8ToLatin1($k));
-							$alias_gbu = $this->_escape($this->UTF8ToLatin1('{'.$k.'}'));
-							$alias_gc = $this->_escape($this->utf8StrRev($k, false, $this->tmprtl));
-							$alias_gcu = $this->_escape($this->utf8StrRev('{'.$k.'}', false, $this->tmprtl));
-						}
-						$temppage = str_replace($alias_gau, $vu, $temppage);
-						if ($this->isunicode) {
-							$temppage = str_replace($alias_gbu, $vu, $temppage);
-							$temppage = str_replace($alias_gcu, $vu, $temppage);
-							$temppage = str_replace($alias_gb, $vs, $temppage);
-							$temppage = str_replace($alias_gc, $vs, $temppage);
-						}
-						$temppage = str_replace($alias_ga, $vs, $temppage);
-						// replace page group numbers
-						$pvs = $this->formatPageNumber($pagegroupnum);
-						$pvu = $this->UTF8ToUTF16BE($pvs, false);
-						$pk = str_replace('{nb', '{pnb', $k);
-						$alias_pga = $this->_escape($pk);
-						$alias_pgau = $this->_escape('{'.$pk.'}');
-						if ($this->isunicode) {
-							$alias_pgb = $this->_escape($this->UTF8ToLatin1($pk));
-							$alias_pgbu = $this->_escape($this->UTF8ToLatin1('{'.$pk.'}'));
-							$alias_pgc = $this->_escape($this->utf8StrRev($pk, false, $this->tmprtl));
-							$alias_pgcu = $this->_escape($this->utf8StrRev('{'.$pk.'}', false, $this->tmprtl));
-						}
-						$temppage = str_replace($alias_pgau, $pvu, $temppage);
-						if ($this->isunicode) {
-							$temppage = str_replace($alias_pgbu, $pvu, $temppage);
-							$temppage = str_replace($alias_pgcu, $pvu, $temppage);
-							$temppage = str_replace($alias_pgb, $pvs, $temppage);
-							$temppage = str_replace($alias_pgc, $pvs, $temppage);
-						}
-						$temppage = str_replace($alias_pga, $pvs, $temppage);
-					}
-				}
-				if (!empty($this->AliasNbPages)) {
-					// replace total pages number
-					$temppage = str_replace($alias_au, $nbu, $temppage);
-					if ($this->isunicode) {
-						$temppage = str_replace($alias_bu, $nbu, $temppage);
-						$temppage = str_replace($alias_cu, $nbu, $temppage);
-						$temppage = str_replace($alias_b, $nbs, $temppage);
-						$temppage = str_replace($alias_c, $nbs, $temppage);
-					}
-					$temppage = str_replace($alias_a, $nbs, $temppage);
-				}
-				if (!empty($this->AliasNumPage)) {
-					// replace page number
-					$pnbs = $this->formatPageNumber($n);
-					$pnbu = $this->UTF8ToUTF16BE($pnbs, false); // replacement for unicode font
-					$temppage = str_replace($alias_pau, $pnbu, $temppage);
-					if ($this->isunicode) {
-						$temppage = str_replace($alias_pbu, $pnbu, $temppage);
-						$temppage = str_replace($alias_pcu, $pnbu, $temppage);
-						$temppage = str_replace($alias_pb, $pnbs, $temppage);
-						$temppage = str_replace($alias_pc, $pnbs, $temppage);
-					}
-					$temppage = str_replace($alias_pa, $pnbs, $temppage);
+					$temppage = str_replace($alias_pbu, $pnbu, $temppage);
+					$temppage = str_replace($alias_pcu, $pnbu, $temppage);
+					$temppage = str_replace($alias_pb, $pnbs, $temppage);
+					$temppage = str_replace($alias_pc, $pnbs, $temppage);
 				}
-				$temppage = str_replace($this->epsmarker, '', $temppage);
-				//Page
-				$this->page_obj_id[$n] = $this->_newobj();
-				$out = '<<';
-				$out .= ' /Type /Page';
-				$out .= ' /Parent 1 0 R';
-				$out .= ' /LastModified '.$this->_datestring();
-				$out .= ' /Resources 2 0 R';
-				$boxes = array('MediaBox', 'CropBox', 'BleedBox', 'TrimBox', 'ArtBox');
+				$temppage = str_replace($alias_pa, $pnbs, $temppage);
+			}
+			$temppage = str_replace($this->epsmarker, '', $temppage);
+			//Page
+			$this->page_obj_id[$n] = $this->_newobj();
+			$out = '<<';
+			$out .= ' /Type /Page';
+			$out .= ' /Parent 1 0 R';
+			$out .= ' /LastModified '.$this->_datestring();
+			$out .= ' /Resources 2 0 R';
+			$boxes = array('MediaBox', 'CropBox', 'BleedBox', 'TrimBox', 'ArtBox');
+			foreach ($boxes as $box) {
+				$out .= ' /'.$box;
+				$out .= sprintf(' [%.2F %.2F %.2F %.2F]', $this->pagedim[$n][$box]['llx'], $this->pagedim[$n][$box]['lly'], $this->pagedim[$n][$box]['urx'], $this->pagedim[$n][$box]['ury']);
+			}
+			if (isset($this->pagedim[$n]['BoxColorInfo']) AND !empty($this->pagedim[$n]['BoxColorInfo'])) {
+				$out .= ' /BoxColorInfo <<';
 				foreach ($boxes as $box) {
-					$out .= ' /'.$box;
-					$out .= sprintf(' [%.2F %.2F %.2F %.2F]', $this->pagedim[$n][$box]['llx'], $this->pagedim[$n][$box]['lly'], $this->pagedim[$n][$box]['urx'], $this->pagedim[$n][$box]['ury']);
-				}
-				if (isset($this->pagedim[$n]['BoxColorInfo']) AND !empty($this->pagedim[$n]['BoxColorInfo'])) {
-					$out .= ' /BoxColorInfo <<';
-					foreach ($boxes as $box) {
-						if (isset($this->pagedim[$n]['BoxColorInfo'][$box])) {
-							$out .= ' /'.$box.' <<';
-							if (isset($this->pagedim[$n]['BoxColorInfo'][$box]['C'])) {
-								$color = $this->pagedim[$n]['BoxColorInfo'][$box]['C'];
-								$out .= ' /C [';
-								$out .= sprintf(' %.3F %.3F %.3F', $color[0]/255, $color[1]/255, $color[2]/255);
-								$out .= ' ]';
-							}
-							if (isset($this->pagedim[$n]['BoxColorInfo'][$box]['W'])) {
-								$out .= ' /W '.($this->pagedim[$n]['BoxColorInfo'][$box]['W'] * $this->k);
-							}
-							if (isset($this->pagedim[$n]['BoxColorInfo'][$box]['S'])) {
-								$out .= ' /S /'.$this->pagedim[$n]['BoxColorInfo'][$box]['S'];
-							}
-							if (isset($this->pagedim[$n]['BoxColorInfo'][$box]['D'])) {
-								$dashes = $this->pagedim[$n]['BoxColorInfo'][$box]['D'];
-								$out .= ' /D [';
-								foreach ($dashes as $dash) {
-									$out .= sprintf(' %.3F', ($dash * $this->k));
-								}
-								$out .= ' ]';
+					if (isset($this->pagedim[$n]['BoxColorInfo'][$box])) {
+						$out .= ' /'.$box.' <<';
+						if (isset($this->pagedim[$n]['BoxColorInfo'][$box]['C'])) {
+							$color = $this->pagedim[$n]['BoxColorInfo'][$box]['C'];
+							$out .= ' /C [';
+							$out .= sprintf(' %.3F %.3F %.3F', $color[0]/255, $color[1]/255, $color[2]/255);
+							$out .= ' ]';
+						}
+						if (isset($this->pagedim[$n]['BoxColorInfo'][$box]['W'])) {
+							$out .= ' /W '.($this->pagedim[$n]['BoxColorInfo'][$box]['W'] * $this->k);
+						}
+						if (isset($this->pagedim[$n]['BoxColorInfo'][$box]['S'])) {
+							$out .= ' /S /'.$this->pagedim[$n]['BoxColorInfo'][$box]['S'];
+						}
+						if (isset($this->pagedim[$n]['BoxColorInfo'][$box]['D'])) {
+							$dashes = $this->pagedim[$n]['BoxColorInfo'][$box]['D'];
+							$out .= ' /D [';
+							foreach ($dashes as $dash) {
+								$out .= sprintf(' %.3F', ($dash * $this->k));
 							}
-							$out .= ' >>';
+							$out .= ' ]';
 						}
+						$out .= ' >>';
 					}
-					$out .= ' >>';
-				}
-				$out .= ' /Contents '.($this->n + 1).' 0 R';
-				$out .= ' /Rotate '.$this->pagedim[$n]['Rotate'];
-				$out .= ' /Group << /Type /Group /S /Transparency /CS /DeviceRGB >>';
-				if (isset($this->pagedim[$n]['trans']) AND !empty($this->pagedim[$n]['trans'])) {
-					// page transitions
-					if (isset($this->pagedim[$n]['trans']['Dur'])) {
-						$out .= ' /Dur '.$this->pagedim[$n]['trans']['Dur'];
-					}
-					$out .= ' /Trans <<';
-					$out .= ' /Type /Trans';
-					if (isset($this->pagedim[$n]['trans']['S'])) {
-						$out .= ' /S /'.$this->pagedim[$n]['trans']['S'];
-					}
-					if (isset($this->pagedim[$n]['trans']['D'])) {
-						$out .= ' /D '.$this->pagedim[$n]['trans']['D'];
-					}
-					if (isset($this->pagedim[$n]['trans']['Dm'])) {
-						$out .= ' /Dm /'.$this->pagedim[$n]['trans']['Dm'];
-					}
-					if (isset($this->pagedim[$n]['trans']['M'])) {
-						$out .= ' /M /'.$this->pagedim[$n]['trans']['M'];
-					}
-					if (isset($this->pagedim[$n]['trans']['Di'])) {
-						$out .= ' /Di '.$this->pagedim[$n]['trans']['Di'];
-					}
-					if (isset($this->pagedim[$n]['trans']['SS'])) {
-						$out .= ' /SS '.$this->pagedim[$n]['trans']['SS'];
-					}
-					if (isset($this->pagedim[$n]['trans']['B'])) {
-						$out .= ' /B '.$this->pagedim[$n]['trans']['B'];
-					}
-					$out .= ' >>';
 				}
-				$out .= $this->_getannotsrefs($n);
-				$out .= ' /PZ '.$this->pagedim[$n]['PZ'];
 				$out .= ' >>';
-				$out .= "\n".'endobj';
-				$this->_out($out);
-				//Page content
-				$p = ($this->compress) ? gzcompress($temppage) : $temppage;
-				$this->_newobj();
-				$p = $this->_getrawstream($p);
-				$this->_out('<<'.$filter.'/Length '.strlen($p).'>> stream'."\n".$p."\n".'endstream'."\n".'endobj');
-				if ($this->diskcache) {
-					// remove temporary files
-					unlink($this->pages[$n]);
-				}
 			}
-			//Pages root
-			$this->offsets[1] = $this->bufferlen;
-			$out = '1 0 obj'."\n";
-			$out .= '<< /Type /Pages  /Kids [';
-			foreach($this->page_obj_id as $page_obj) {
-				$out .= ' '.$page_obj.' 0 R';
+			$out .= ' /Contents '.($this->n + 1).' 0 R';
+			$out .= ' /Rotate '.$this->pagedim[$n]['Rotate'];
+			$out .= ' /Group << /Type /Group /S /Transparency /CS /DeviceRGB >>';
+			if (isset($this->pagedim[$n]['trans']) AND !empty($this->pagedim[$n]['trans'])) {
+				// page transitions
+				if (isset($this->pagedim[$n]['trans']['Dur'])) {
+					$out .= ' /Dur '.$this->pagedim[$n]['trans']['Dur'];
+				}
+				$out .= ' /Trans <<';
+				$out .= ' /Type /Trans';
+				if (isset($this->pagedim[$n]['trans']['S'])) {
+					$out .= ' /S /'.$this->pagedim[$n]['trans']['S'];
+				}
+				if (isset($this->pagedim[$n]['trans']['D'])) {
+					$out .= ' /D '.$this->pagedim[$n]['trans']['D'];
+				}
+				if (isset($this->pagedim[$n]['trans']['Dm'])) {
+					$out .= ' /Dm /'.$this->pagedim[$n]['trans']['Dm'];
+				}
+				if (isset($this->pagedim[$n]['trans']['M'])) {
+					$out .= ' /M /'.$this->pagedim[$n]['trans']['M'];
+				}
+				if (isset($this->pagedim[$n]['trans']['Di'])) {
+					$out .= ' /Di '.$this->pagedim[$n]['trans']['Di'];
+				}
+				if (isset($this->pagedim[$n]['trans']['SS'])) {
+					$out .= ' /SS '.$this->pagedim[$n]['trans']['SS'];
+				}
+				if (isset($this->pagedim[$n]['trans']['B'])) {
+					$out .= ' /B '.$this->pagedim[$n]['trans']['B'];
+				}
+				$out .= ' >>';
 			}
-			$out .= ' ] /Count '.$nb.' >>';
+			$out .= $this->_getannotsrefs($n);
+			$out .= ' /PZ '.$this->pagedim[$n]['PZ'];
+			$out .= ' >>';
 			$out .= "\n".'endobj';
 			$this->_out($out);
-		}
-
-		/**
-		 * Output references to page annotations
-		 * @param int $n page number
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 4.7.000 (2008-08-29)
-		 * @deprecated
-		 */
-		protected function _putannotsrefs($n) {
-			$this->_out(_getannotsrefs($n));
-		}
-
-		/**
-		 * Get references to page annotations.
-		 * @param int $n page number
-		 * @return string
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 5.0.010 (2010-05-17)
-		 */
-		protected function _getannotsrefs($n) {
-			if (!(isset($this->PageAnnots[$n]) OR ($this->sign AND isset($this->signature_data['cert_type'])))) {
-				return '';
-			}
-			$out = ' /Annots [';
-			if (isset($this->PageAnnots[$n])) {
-				$num_annots = count($this->PageAnnots[$n]);
-				for ($i = 0; $i < $num_annots; ++$i) {
-					++$this->curr_annot_obj_id;
-					if (!in_array($this->curr_annot_obj_id, $this->radio_groups)) {
-						$out .= ' '.$this->curr_annot_obj_id.' 0 R';
-					} else {
-						++$num_annots;
-					}
-				}
-			}
-			if ($this->sign AND ($n == $this->signature_appearance['page']) AND isset($this->signature_data['cert_type'])) {
-				// set reference for signature object
-				$out .= ' '.$this->sig_annot_ref;
+			//Page content
+			$p = ($this->compress) ? gzcompress($temppage) : $temppage;
+			$this->_newobj();
+			$p = $this->_getrawstream($p);
+			$this->_out('<<'.$filter.'/Length '.strlen($p).'>> stream'."\n".$p."\n".'endstream'."\n".'endobj');
+			if ($this->diskcache) {
+				// remove temporary files
+				unlink($this->pages[$n]);
 			}
-			$out .= ' ]';
-			return $out;
 		}
+		//Pages root
+		$out = $this->_getobj(1)."\n";
+		$out .= '<< /Type /Pages /Kids [';
+		foreach($this->page_obj_id as $page_obj) {
+			$out .= ' '.$page_obj.' 0 R';
+		}
+		$out .= ' ] /Count '.$nb.' >>';
+		$out .= "\n".'endobj';
+		$this->_out($out);
+	}
 
-		/**
-		 * Output annotations objects for all pages.
-		 * !!! THIS METHOD IS NOT YET COMPLETED !!!
-		 * See section 12.5 of PDF 32000_2008 reference.
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 4.0.018 (2008-08-06)
-		 */
-		protected function _putannotsobjs() {
-			// reset object counter
-			$this->annot_obj_id = $this->annots_start_obj_id;
-			for ($n=1; $n <= $this->numpages; ++$n) {
-				if (isset($this->PageAnnots[$n])) {
-					// set page annotations
-					foreach ($this->PageAnnots[$n] as $key => $pl) {
-						// create annotation object for grouping radiobuttons
-						if (isset($this->radiobutton_groups[$n][$pl['txt']]) AND is_array($this->radiobutton_groups[$n][$pl['txt']])) {
-							$annots = '<<';
-							$annots .= ' /Type /Annot';
-							$annots .= ' /Subtype /Widget';
-							$annots .= ' /T '.$this->_dataannobjstring($pl['txt']);
-							$annots .= ' /FT /Btn';
-							$annots .= ' /Ff 49152';
-							$annots .= ' /Kids [';
-							foreach ($this->radiobutton_groups[$n][$pl['txt']] as $data) {
-								$annots .= ' '.$data['kid'].' 0 R';
-								if ($data['def'] !== 'Off') {
-									$defval = $data['def'];
-								}
-							}
-							$annots .= ' ]';
-							if (isset($defval)) {
-								$annots .= ' /V /'.$defval;
-							}
-							$annots .= ' >>';
-							++$this->annot_obj_id;
-							$this->offsets[$this->annot_obj_id] = $this->bufferlen;
-							$this->_out($this->annot_obj_id.' 0 obj'."\n".$annots."\n".'endobj');
-							$this->form_obj_id[] = $this->annot_obj_id;
-							// store object id to be used on Parent entry of Kids
-							$this->radiobutton_groups[$n][$pl['txt']] = $this->annot_obj_id;
-						}
-						$formfield = false;
-						$pl['opt'] = array_change_key_case($pl['opt'], CASE_LOWER);
-						$a = $pl['x'] * $this->k;
-						$b = $this->pagedim[$n]['h'] - (($pl['y'] + $pl['h'])  * $this->k);
-						$c = $pl['w'] * $this->k;
-						$d = $pl['h'] * $this->k;
-						$rect = sprintf('%.2F %.2F %.2F %.2F', $a, $b, $a+$c, $b+$d);
-						// create new annotation object
-						$annots = '<</Type /Annot';
-						$annots .= ' /Subtype /'.$pl['opt']['subtype'];
-						$annots .= ' /Rect ['.$rect.']';
-						$ft = array('Btn', 'Tx', 'Ch', 'Sig');
-						if (isset($pl['opt']['ft']) AND in_array($pl['opt']['ft'], $ft)) {
-							$annots .= ' /FT /'.$pl['opt']['ft'];
-							$formfield = true;
-						}
-						$annots .= ' /Contents '.$this->_textannobjstring($pl['txt']);
-						$annots .= ' /P '.$this->page_obj_id[$n].' 0 R';
-						$annots .= ' /NM '.$this->_dataannobjstring(sprintf('%04u-%04u', $n, $key));
-						$annots .= ' /M '.$this->_datestring();
-						if (isset($pl['opt']['f'])) {
-							$val = 0;
-							if (is_array($pl['opt']['f'])) {
-								foreach ($pl['opt']['f'] as $f) {
-									switch (strtolower($f)) {
-										case 'invisible': {
-											$val += 1 << 0;
-											break;
-										}
-										case 'hidden': {
-											$val += 1 << 1;
-											break;
-										}
-										case 'print': {
-											$val += 1 << 2;
-											break;
-										}
-										case 'nozoom': {
-											$val += 1 << 3;
-											break;
-										}
-										case 'norotate': {
-											$val += 1 << 4;
-											break;
-										}
-										case 'noview': {
-											$val += 1 << 5;
-											break;
-										}
-										case 'readonly': {
-											$val += 1 << 6;
-											break;
-										}
-										case 'locked': {
-											$val += 1 << 8;
-											break;
-										}
-										case 'togglenoview': {
-											$val += 1 << 9;
-											break;
-										}
-										case 'lockedcontents': {
-											$val += 1 << 10;
-											break;
-										}
-										default: {
-											break;
-										}
+	/**
+	 * Output references to page annotations
+	 * @param $n (int) page number
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 4.7.000 (2008-08-29)
+	 * @deprecated
+	 */
+	protected function _putannotsrefs($n) {
+		$this->_out($this->_getannotsrefs($n));
+	}
+
+	/**
+	 * Get references to page annotations.
+	 * @param $n (int) page number
+	 * @return string
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 5.0.010 (2010-05-17)
+	 */
+	protected function _getannotsrefs($n) {
+		if (!(isset($this->PageAnnots[$n]) OR ($this->sign AND isset($this->signature_data['cert_type'])))) {
+			return '';
+		}
+		$out = ' /Annots [';
+		if (isset($this->PageAnnots[$n])) {
+			foreach ($this->PageAnnots[$n] as $key => $val) {
+				if (!in_array($val['n'], $this->radio_groups)) {
+					$out .= ' '.$val['n'].' 0 R';
+				}
+			}
+			// add radiobutton groups
+			if (isset($this->radiobutton_groups[$n])) {
+				foreach ($this->radiobutton_groups[$n] as $key => $data) {
+					if (isset($data['n'])) {
+						$out .= ' '.$data['n'].' 0 R';
+					}
+				}
+			}
+		}
+		if ($this->sign AND ($n == $this->signature_appearance['page']) AND isset($this->signature_data['cert_type'])) {
+			// set reference for signature object
+			$out .= ' '.$this->sig_obj_id.' 0 R';
+		}
+		$out .= ' ]';
+		return $out;
+	}
+
+	/**
+	 * Output annotations objects for all pages.
+	 * !!! THIS METHOD IS NOT YET COMPLETED !!!
+	 * See section 12.5 of PDF 32000_2008 reference.
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 4.0.018 (2008-08-06)
+	 */
+	protected function _putannotsobjs() {
+		// reset object counter
+		for ($n=1; $n <= $this->numpages; ++$n) {
+			if (isset($this->PageAnnots[$n])) {
+				// set page annotations
+				foreach ($this->PageAnnots[$n] as $key => $pl) {
+					$annot_obj_id = $this->PageAnnots[$n][$key]['n'];
+					// create annotation object for grouping radiobuttons
+					if (isset($this->radiobutton_groups[$n][$pl['txt']]) AND is_array($this->radiobutton_groups[$n][$pl['txt']])) {
+						$radio_button_obj_id = $this->radiobutton_groups[$n][$pl['txt']]['n'];
+						$annots = '<<';
+						$annots .= ' /Type /Annot';
+						$annots .= ' /Subtype /Widget';
+						$annots .= ' /Rect [0 0 0 0]';
+						$annots .= ' /T '.$this->_datastring($pl['txt'], $radio_button_obj_id);
+						$annots .= ' /FT /Btn';
+						$annots .= ' /Ff 49152';
+						$annots .= ' /Kids [';
+						foreach ($this->radiobutton_groups[$n][$pl['txt']] as $key => $data) {
+							if ($key !== 'n') {
+								$annots .= ' '.$data['kid'].' 0 R';
+								if ($data['def'] !== 'Off') {
+									$defval = $data['def'];
+								}
+							}
+						}
+						$annots .= ' ]';
+						if (isset($defval)) {
+							$annots .= ' /V /'.$defval;
+						}
+						$annots .= ' >>';
+						$this->_out($this->_getobj($radio_button_obj_id)."\n".$annots."\n".'endobj');
+						$this->form_obj_id[] = $radio_button_obj_id;
+						// store object id to be used on Parent entry of Kids
+						$this->radiobutton_groups[$n][$pl['txt']] = $radio_button_obj_id;
+					}
+					$formfield = false;
+					$pl['opt'] = array_change_key_case($pl['opt'], CASE_LOWER);
+					$a = $pl['x'] * $this->k;
+					$b = $this->pagedim[$n]['h'] - (($pl['y'] + $pl['h']) * $this->k);
+					$c = $pl['w'] * $this->k;
+					$d = $pl['h'] * $this->k;
+					$rect = sprintf('%.2F %.2F %.2F %.2F', $a, $b, $a+$c, $b+$d);
+					// create new annotation object
+					$annots = '<</Type /Annot';
+					$annots .= ' /Subtype /'.$pl['opt']['subtype'];
+					$annots .= ' /Rect ['.$rect.']';
+					$ft = array('Btn', 'Tx', 'Ch', 'Sig');
+					if (isset($pl['opt']['ft']) AND in_array($pl['opt']['ft'], $ft)) {
+						$annots .= ' /FT /'.$pl['opt']['ft'];
+						$formfield = true;
+					}
+					$annots .= ' /Contents '.$this->_textstring($pl['txt'], $annot_obj_id);
+					$annots .= ' /P '.$this->page_obj_id[$n].' 0 R';
+					$annots .= ' /NM '.$this->_datastring(sprintf('%04u-%04u', $n, $key), $annot_obj_id);
+					$annots .= ' /M '.$this->_datestring($annot_obj_id);
+					if (isset($pl['opt']['f'])) {
+						$val = 0;
+						if (is_array($pl['opt']['f'])) {
+							foreach ($pl['opt']['f'] as $f) {
+								switch (strtolower($f)) {
+									case 'invisible': {
+										$val += 1 << 0;
+										break;
+									}
+									case 'hidden': {
+										$val += 1 << 1;
+										break;
+									}
+									case 'print': {
+										$val += 1 << 2;
+										break;
+									}
+									case 'nozoom': {
+										$val += 1 << 3;
+										break;
+									}
+									case 'norotate': {
+										$val += 1 << 4;
+										break;
+									}
+									case 'noview': {
+										$val += 1 << 5;
+										break;
+									}
+									case 'readonly': {
+										$val += 1 << 6;
+										break;
+									}
+									case 'locked': {
+										$val += 1 << 8;
+										break;
+									}
+									case 'togglenoview': {
+										$val += 1 << 9;
+										break;
+									}
+									case 'lockedcontents': {
+										$val += 1 << 10;
+										break;
+									}
+									default: {
+										break;
 									}
 								}
-							} else {
-								$val = intval($pl['opt']['f']);
 							}
-							$annots .= ' /F '.intval($val);
-						}
-						if (isset($pl['opt']['as']) AND is_string($pl['opt']['as'])) {
-							$annots .= ' /AS /'.$pl['opt']['as'];
-						}
-						if (isset($pl['opt']['ap'])) {
-							// appearance stream
-							$annots .= ' /AP <<';
-							if (is_array($pl['opt']['ap'])) {
-								foreach ($pl['opt']['ap'] as $apmode => $apdef) {
-									// $apmode can be: n = normal; r = rollover; d = down;
-									$annots .= ' /'.strtoupper($apmode);
-									if (is_array($apdef)) {
-										$annots .= ' <<';
-										foreach ($apdef as $apstate => $stream) {
-											// reference to XObject that define the appearance for this mode-state
-											$apsobjid = $this->_putAPXObject($c, $d, $stream);
-											$annots .= ' /'.$apstate.' '.$apsobjid.' 0 R';
-										}
-										$annots .= ' >>';
-									} else {
-										// reference to XObject that define the appearance for this mode
-										$apsobjid = $this->_putAPXObject($c, $d, $apdef);
-										$annots .= ' '.$apsobjid.' 0 R';
+						} else {
+							$val = intval($pl['opt']['f']);
+						}
+						$annots .= ' /F '.intval($val);
+					}
+					if (isset($pl['opt']['as']) AND is_string($pl['opt']['as'])) {
+						$annots .= ' /AS /'.$pl['opt']['as'];
+					}
+					if (isset($pl['opt']['ap'])) {
+						// appearance stream
+						$annots .= ' /AP <<';
+						if (is_array($pl['opt']['ap'])) {
+							foreach ($pl['opt']['ap'] as $apmode => $apdef) {
+								// $apmode can be: n = normal; r = rollover; d = down;
+								$annots .= ' /'.strtoupper($apmode);
+								if (is_array($apdef)) {
+									$annots .= ' <<';
+									foreach ($apdef as $apstate => $stream) {
+										// reference to XObject that define the appearance for this mode-state
+										$apsobjid = $this->_putAPXObject($c, $d, $stream);
+										$annots .= ' /'.$apstate.' '.$apsobjid.' 0 R';
 									}
+									$annots .= ' >>';
+								} else {
+									// reference to XObject that define the appearance for this mode
+									$apsobjid = $this->_putAPXObject($c, $d, $apdef);
+									$annots .= ' '.$apsobjid.' 0 R';
 								}
-							} else {
-								$annots .= $pl['opt']['ap'];
 							}
-							$annots .= ' >>';
+						} else {
+							$annots .= $pl['opt']['ap'];
 						}
-						if (isset($pl['opt']['bs']) AND (is_array($pl['opt']['bs']))) {
-							$annots .= ' /BS <<';
-							$annots .= ' /Type /Border';
-							if (isset($pl['opt']['bs']['w'])) {
-								$annots .= ' /W '.intval($pl['opt']['bs']['w']);
-							}
-							$bstyles = array('S', 'D', 'B', 'I', 'U');
-							if (isset($pl['opt']['bs']['s']) AND in_array($pl['opt']['bs']['s'], $bstyles)) {
-								$annots .= ' /S /'.$pl['opt']['bs']['s'];
+						$annots .= ' >>';
+					}
+					if (isset($pl['opt']['bs']) AND (is_array($pl['opt']['bs']))) {
+						$annots .= ' /BS <<';
+						$annots .= ' /Type /Border';
+						if (isset($pl['opt']['bs']['w'])) {
+							$annots .= ' /W '.intval($pl['opt']['bs']['w']);
+						}
+						$bstyles = array('S', 'D', 'B', 'I', 'U');
+						if (isset($pl['opt']['bs']['s']) AND in_array($pl['opt']['bs']['s'], $bstyles)) {
+							$annots .= ' /S /'.$pl['opt']['bs']['s'];
+						}
+						if (isset($pl['opt']['bs']['d']) AND (is_array($pl['opt']['bs']['d']))) {
+							$annots .= ' /D [';
+							foreach ($pl['opt']['bs']['d'] as $cord) {
+								$annots .= ' '.intval($cord);
 							}
-							if (isset($pl['opt']['bs']['d']) AND (is_array($pl['opt']['bs']['d']))) {
-								$annots .= ' /D [';
-								foreach ($pl['opt']['bs']['d'] as $cord) {
-									$annots .= ' '.intval($cord);
+							$annots .= ']';
+						}
+						$annots .= ' >>';
+					} else {
+						$annots .= ' /Border [';
+						if (isset($pl['opt']['border']) AND (count($pl['opt']['border']) >= 3)) {
+							$annots .= intval($pl['opt']['border'][0]).' ';
+							$annots .= intval($pl['opt']['border'][1]).' ';
+							$annots .= intval($pl['opt']['border'][2]);
+							if (isset($pl['opt']['border'][3]) AND is_array($pl['opt']['border'][3])) {
+								$annots .= ' [';
+								foreach ($pl['opt']['border'][3] as $dash) {
+									$annots .= intval($dash).' ';
 								}
 								$annots .= ']';
 							}
-							$annots .= ' >>';
 						} else {
-							$annots .= ' /Border [';
-							if (isset($pl['opt']['border']) AND (count($pl['opt']['border']) >= 3)) {
-								$annots .= intval($pl['opt']['border'][0]).' ';
-								$annots .= intval($pl['opt']['border'][1]).' ';
-								$annots .= intval($pl['opt']['border'][2]);
-								if (isset($pl['opt']['border'][3]) AND is_array($pl['opt']['border'][3])) {
-									$annots .= ' [';
-									foreach ($pl['opt']['border'][3] as $dash) {
-										$annots .= intval($dash).' ';
-									}
-									$annots .= ']';
-								}
+							$annots .= '0 0 0';
+						}
+						$annots .= ']';
+					}
+					if (isset($pl['opt']['be']) AND (is_array($pl['opt']['be']))) {
+						$annots .= ' /BE <<';
+						$bstyles = array('S', 'C');
+						if (isset($pl['opt']['be']['s']) AND in_array($pl['opt']['be']['s'], $markups)) {
+							$annots .= ' /S /'.$pl['opt']['bs']['s'];
+						} else {
+							$annots .= ' /S /S';
+						}
+						if (isset($pl['opt']['be']['i']) AND ($pl['opt']['be']['i'] >= 0) AND ($pl['opt']['be']['i'] <= 2)) {
+							$annots .= ' /I '.sprintf(' %.4F', $pl['opt']['be']['i']);
+						}
+						$annots .= '>>';
+					}
+					if (isset($pl['opt']['c']) AND (is_array($pl['opt']['c'])) AND !empty($pl['opt']['c'])) {
+						$annots .= ' /C [';
+						foreach ($pl['opt']['c'] as $col) {
+							$col = intval($col);
+							$color = $col <= 0 ? 0 : ($col >= 255 ? 1 : $col / 255);
+							$annots .= sprintf(' %.4F', $color);
+						}
+						$annots .= ']';
+					}
+					//$annots .= ' /StructParent ';
+					//$annots .= ' /OC ';
+					$markups = array('text', 'freetext', 'line', 'square', 'circle', 'polygon', 'polyline', 'highlight', 'underline', 'squiggly', 'strikeout', 'stamp', 'caret', 'ink', 'fileattachment', 'sound');
+					if (in_array(strtolower($pl['opt']['subtype']), $markups)) {
+						// this is a markup type
+						if (isset($pl['opt']['t']) AND is_string($pl['opt']['t'])) {
+							$annots .= ' /T '.$this->_textstring($pl['opt']['t'], $annot_obj_id);
+						}
+						//$annots .= ' /Popup ';
+						if (isset($pl['opt']['ca'])) {
+							$annots .= ' /CA '.sprintf('%.4F', floatval($pl['opt']['ca']));
+						}
+						if (isset($pl['opt']['rc'])) {
+							$annots .= ' /RC '.$this->_textstring($pl['opt']['rc'], $annot_obj_id);
+						}
+						$annots .= ' /CreationDate '.$this->_datestring($annot_obj_id);
+						//$annots .= ' /IRT ';
+						if (isset($pl['opt']['subj'])) {
+							$annots .= ' /Subj '.$this->_textstring($pl['opt']['subj'], $annot_obj_id);
+						}
+						//$annots .= ' /RT ';
+						//$annots .= ' /IT ';
+						//$annots .= ' /ExData ';
+					}
+					$lineendings = array('Square', 'Circle', 'Diamond', 'OpenArrow', 'ClosedArrow', 'None', 'Butt', 'ROpenArrow', 'RClosedArrow', 'Slash');
+					// Annotation types
+					switch (strtolower($pl['opt']['subtype'])) {
+						case 'text': {
+							if (isset($pl['opt']['open'])) {
+								$annots .= ' /Open '. (strtolower($pl['opt']['open']) == 'true' ? 'true' : 'false');
+							}
+							$iconsapp = array('Comment', 'Help', 'Insert', 'Key', 'NewParagraph', 'Note', 'Paragraph');
+							if (isset($pl['opt']['name']) AND in_array($pl['opt']['name'], $iconsapp)) {
+								$annots .= ' /Name /'.$pl['opt']['name'];
 							} else {
-								$annots .= '0 0 0';
+								$annots .= ' /Name /Note';
 							}
-							$annots .= ']';
-						}
-						if (isset($pl['opt']['be']) AND (is_array($pl['opt']['be']))) {
-							$annots .= ' /BE <<';
-							$bstyles = array('S', 'C');
-							if (isset($pl['opt']['be']['s']) AND in_array($pl['opt']['be']['s'], $markups)) {
-								$annots .= ' /S /'.$pl['opt']['bs']['s'];
+							$statemodels = array('Marked', 'Review');
+							if (isset($pl['opt']['statemodel']) AND in_array($pl['opt']['statemodel'], $statemodels)) {
+								$annots .= ' /StateModel /'.$pl['opt']['statemodel'];
 							} else {
-								$annots .= ' /S /S';
+								$pl['opt']['statemodel'] = 'Marked';
+								$annots .= ' /StateModel /'.$pl['opt']['statemodel'];
 							}
-							if (isset($pl['opt']['be']['i']) AND ($pl['opt']['be']['i'] >= 0) AND ($pl['opt']['be']['i'] <= 2)) {
-								$annots .= ' /I '.sprintf(' %.4F', $pl['opt']['be']['i']);
+							if ($pl['opt']['statemodel'] == 'Marked') {
+								$states = array('Accepted', 'Unmarked');
+							} else {
+								$states = array('Accepted', 'Rejected', 'Cancelled', 'Completed', 'None');
 							}
-							$annots .= '>>';
-						}
-						if (isset($pl['opt']['c']) AND (is_array($pl['opt']['c'])) AND !empty($pl['opt']['c'])) {
-							$annots .= ' /C [';
-							foreach ($pl['opt']['c'] as $col) {
-								$col = intval($col);
-								$color = $col <= 0 ? 0 : ($col >= 255 ? 1 : $col / 255);
-								$annots .= sprintf(' %.4F', $color);
+							if (isset($pl['opt']['state']) AND in_array($pl['opt']['state'], $states)) {
+								$annots .= ' /State /'.$pl['opt']['state'];
+							} else {
+								if ($pl['opt']['statemodel'] == 'Marked') {
+									$annots .= ' /State /Unmarked';
+								} else {
+									$annots .= ' /State /None';
+								}
 							}
-							$annots .= ']';
+							break;
 						}
-						//$annots .= ' /StructParent ';
-						//$annots .= ' /OC ';
-						$markups = array('text', 'freetext', 'line', 'square', 'circle', 'polygon', 'polyline', 'highlight', 'underline', 'squiggly', 'strikeout', 'stamp', 'caret', 'ink', 'fileattachment', 'sound');
-						if (in_array(strtolower($pl['opt']['subtype']), $markups)) {
-							// this is a markup type
-							if (isset($pl['opt']['t']) AND is_string($pl['opt']['t'])) {
-								$annots .= ' /T '.$this->_textannobjstring($pl['opt']['t']);
+						case 'link': {
+							if(is_string($pl['txt'])) {
+								// external URI link
+								$annots .= ' /A <</S /URI /URI '.$this->_datastring($this->unhtmlentities($pl['txt']), $annot_obj_id).'>>';
+							} else {
+								// internal link
+								$l = $this->links[$pl['txt']];
+								$annots .= sprintf(' /Dest [%u 0 R /XYZ 0 %.2F null]', $this->page_obj_id[($l[0])], ($this->pagedim[$l[0]]['h'] - ($l[1] * $this->k)));
+							}
+							$hmodes = array('N', 'I', 'O', 'P');
+							if (isset($pl['opt']['h']) AND in_array($pl['opt']['h'], $hmodes)) {
+								$annots .= ' /H /'.$pl['opt']['h'];
+							} else {
+								$annots .= ' /H /I';
 							}
-							//$annots .= ' /Popup ';
-							if (isset($pl['opt']['ca'])) {
-								$annots .= ' /CA '.sprintf('%.4F', floatval($pl['opt']['ca']));
+							//$annots .= ' /PA ';
+							//$annots .= ' /Quadpoints ';
+							break;
+						}
+						case 'freetext': {
+							if (isset($pl['opt']['da']) AND !empty($pl['opt']['da'])) {
+								$annots .= ' /DA ('.$pl['opt']['da'].')';
+							}
+							if (isset($pl['opt']['q']) AND ($pl['opt']['q'] >= 0) AND ($pl['opt']['q'] <= 2)) {
+								$annots .= ' /Q '.intval($pl['opt']['q']);
 							}
 							if (isset($pl['opt']['rc'])) {
-								$annots .= ' /RC '.$this->_textannobjstring($pl['opt']['rc']);
+								$annots .= ' /RC '.$this->_textstring($pl['opt']['rc'], $annot_obj_id);
 							}
-							$annots .= ' /CreationDate '.$this->_datestring();
-							//$annots .= ' /IRT ';
-							if (isset($pl['opt']['subj'])) {
-								$annots .= ' /Subj '.$this->_textannobjstring($pl['opt']['subj']);
+							if (isset($pl['opt']['ds'])) {
+								$annots .= ' /DS '.$this->_textstring($pl['opt']['ds'], $annot_obj_id);
 							}
-							//$annots .= ' /RT ';
-							//$annots .= ' /IT ';
-							//$annots .= ' /ExData ';
-						}
-						$lineendings = array('Square', 'Circle', 'Diamond', 'OpenArrow', 'ClosedArrow', 'None', 'Butt', 'ROpenArrow', 'RClosedArrow', 'Slash');
-						// Annotation types
-						switch (strtolower($pl['opt']['subtype'])) {
-							case 'text': {
-								if (isset($pl['opt']['open'])) {
-									$annots .= ' /Open '. (strtolower($pl['opt']['open']) == 'true' ? 'true' : 'false');
+							if (isset($pl['opt']['cl']) AND is_array($pl['opt']['cl'])) {
+								$annots .= ' /CL [';
+								foreach ($pl['opt']['cl'] as $cl) {
+									$annots .= sprintf('%.4F ', $cl * $this->k);
 								}
-								$iconsapp = array('Comment', 'Help', 'Insert', 'Key', 'NewParagraph', 'Note', 'Paragraph');
+								$annots .= ']';
+							}
+							$tfit = array('FreeText', 'FreeTextCallout', 'FreeTextTypeWriter');
+							if (isset($pl['opt']['it']) AND in_array($pl['opt']['it'], $tfit)) {
+								$annots .= ' /IT /'.$pl['opt']['it'];
+							}
+							if (isset($pl['opt']['rd']) AND is_array($pl['opt']['rd'])) {
+								$l = $pl['opt']['rd'][0] * $this->k;
+								$r = $pl['opt']['rd'][1] * $this->k;
+								$t = $pl['opt']['rd'][2] * $this->k;
+								$b = $pl['opt']['rd'][3] * $this->k;
+								$annots .= ' /RD ['.sprintf('%.2F %.2F %.2F %.2F', $l, $r, $t, $b).']';
+							}
+							if (isset($pl['opt']['le']) AND in_array($pl['opt']['le'], $lineendings)) {
+								$annots .= ' /LE /'.$pl['opt']['le'];
+							}
+							break;
+						}
+						case 'line': {
+							break;
+						}
+						case 'square': {
+							break;
+						}
+						case 'circle': {
+							break;
+						}
+						case 'polygon': {
+							break;
+						}
+						case 'polyline': {
+							break;
+						}
+						case 'highlight': {
+							break;
+						}
+						case 'underline': {
+							break;
+						}
+						case 'squiggly': {
+							break;
+						}
+						case 'strikeout': {
+							break;
+						}
+						case 'stamp': {
+							break;
+						}
+						case 'caret': {
+							break;
+						}
+						case 'ink': {
+							break;
+						}
+						case 'popup': {
+							break;
+						}
+						case 'fileattachment': {
+							if (!isset($pl['opt']['fs'])) {
+								break;
+							}
+							$filename = basename($pl['opt']['fs']);
+							if (isset($this->embeddedfiles[$filename]['n'])) {
+								$annots .= ' /FS <</Type /Filespec /F '.$this->_datastring($filename, $annot_obj_id).' /EF <</F '.$this->embeddedfiles[$filename]['n'].' 0 R>> >>';
+								$iconsapp = array('Graph', 'Paperclip', 'PushPin', 'Tag');
 								if (isset($pl['opt']['name']) AND in_array($pl['opt']['name'], $iconsapp)) {
 									$annots .= ' /Name /'.$pl['opt']['name'];
 								} else {
-									$annots .= ' /Name /Note';
-								}
-								$statemodels = array('Marked', 'Review');
-								if (isset($pl['opt']['statemodel']) AND in_array($pl['opt']['statemodel'], $statemodels)) {
-									$annots .= ' /StateModel /'.$pl['opt']['statemodel'];
-								} else {
-									$pl['opt']['statemodel'] = 'Marked';
-									$annots .= ' /StateModel /'.$pl['opt']['statemodel'];
-								}
-								if ($pl['opt']['statemodel'] == 'Marked') {
-									$states = array('Accepted', 'Unmarked');
-								} else {
-									$states = array('Accepted', 'Rejected', 'Cancelled', 'Completed', 'None');
-								}
-								if (isset($pl['opt']['state']) AND in_array($pl['opt']['state'], $states)) {
-									$annots .= ' /State /'.$pl['opt']['state'];
-								} else {
-									if ($pl['opt']['statemodel'] == 'Marked') {
-										$annots .= ' /State /Unmarked';
-									} else {
-										$annots .= ' /State /None';
-									}
+									$annots .= ' /Name /PushPin';
 								}
+							}
+							break;
+						}
+						case 'sound': {
+							if (!isset($pl['opt']['fs'])) {
 								break;
 							}
-							case 'link': {
-								if(is_string($pl['txt'])) {
-									// external URI link
-									$annots .= ' /A <</S /URI /URI '.$this->_dataannobjstring($this->unhtmlentities($pl['txt'])).'>>';
-								} else {
-									// internal link
-									$l = $this->links[$pl['txt']];
-									$annots .= sprintf(' /Dest [%d 0 R /XYZ 0 %.2F null]', (1 + (2 * $l[0])), ($this->pagedim[$l[0]]['h'] - ($l[1] * $this->k)));
-								}
-								$hmodes = array('N', 'I', 'O', 'P');
-								if (isset($pl['opt']['h']) AND in_array($pl['opt']['h'], $hmodes)) {
-									$annots .= ' /H /'.$pl['opt']['h'];
+							$filename = basename($pl['opt']['fs']);
+							if (isset($this->embeddedfiles[$filename]['n'])) {
+								// ... TO BE COMPLETED ...
+								// /R /C /B /E /CO /CP
+								$annots .= ' /Sound <</Type /Filespec /F '.$this->_datastring($filename, $annot_obj_id).' /EF <</F '.$this->embeddedfiles[$filename]['n'].' 0 R>> >>';
+								$iconsapp = array('Speaker', 'Mic');
+								if (isset($pl['opt']['name']) AND in_array($pl['opt']['name'], $iconsapp)) {
+									$annots .= ' /Name /'.$pl['opt']['name'];
 								} else {
-									$annots .= ' /H /I';
+									$annots .= ' /Name /Speaker';
 								}
-								//$annots .= ' /PA ';
-								//$annots .= ' /Quadpoints ';
-								break;
 							}
-							case 'freetext': {
-								if (isset($pl['opt']['da']) AND !empty($pl['opt']['da'])) {
-									$annots .= ' /DA ('.$pl['opt']['da'].')';
-								}
-								if (isset($pl['opt']['q']) AND ($pl['opt']['q'] >= 0) AND ($pl['opt']['q'] <= 2)) {
-									$annots .= ' /Q '.intval($pl['opt']['q']);
-								}
-								if (isset($pl['opt']['rc'])) {
-									$annots .= ' /RC '.$this->_textannobjstring($pl['opt']['rc']);
+							break;
+						}
+						case 'movie': {
+							break;
+						}
+						case 'widget': {
+							$hmode = array('N', 'I', 'O', 'P', 'T');
+							if (isset($pl['opt']['h']) AND in_array($pl['opt']['h'], $hmode)) {
+								$annots .= ' /H /'.$pl['opt']['h'];
+							}
+							if (isset($pl['opt']['mk']) AND (is_array($pl['opt']['mk'])) AND !empty($pl['opt']['mk'])) {
+								$annots .= ' /MK <<';
+								if (isset($pl['opt']['mk']['r'])) {
+									$annots .= ' /R '.$pl['opt']['mk']['r'];
 								}
-								if (isset($pl['opt']['ds'])) {
-									$annots .= ' /DS '.$this->_textannobjstring($pl['opt']['ds']);
+								if (isset($pl['opt']['mk']['bc']) AND (is_array($pl['opt']['mk']['bc']))) {
+									$annots .= ' /BC [';
+									foreach($pl['opt']['mk']['bc'] AS $col) {
+										$col = intval($col);
+										$color = $col <= 0 ? 0 : ($col >= 255 ? 1 : $col / 255);
+										$annots .= sprintf(' %.2F', $color);
+									}
+									$annots .= ']';
 								}
-								if (isset($pl['opt']['cl']) AND is_array($pl['opt']['cl'])) {
-									$annots .= ' /CL [';
-									foreach ($pl['opt']['cl'] as $cl) {
-										$annots .= sprintf('%.4F ', $cl * $this->k);
+								if (isset($pl['opt']['mk']['bg']) AND (is_array($pl['opt']['mk']['bg']))) {
+									$annots .= ' /BG [';
+									foreach($pl['opt']['mk']['bg'] AS $col) {
+										$col = intval($col);
+										$color = $col <= 0 ? 0 : ($col >= 255 ? 1 : $col / 255);
+										$annots .= sprintf(' %.2F', $color);
 									}
 									$annots .= ']';
 								}
-								$tfit = array('FreeText', 'FreeTextCallout', 'FreeTextTypeWriter');
-								if (isset($pl['opt']['it']) AND in_array($pl['opt']['it'], $tfit)) {
-									$annots .= ' /IT /'.$pl['opt']['it'];
+								if (isset($pl['opt']['mk']['ca'])) {
+									$annots .= ' /CA '.$pl['opt']['mk']['ca'];
 								}
-								if (isset($pl['opt']['rd']) AND is_array($pl['opt']['rd'])) {
-									$l = $pl['opt']['rd'][0] * $this->k;
-									$r = $pl['opt']['rd'][1] * $this->k;
-									$t = $pl['opt']['rd'][2] * $this->k;
-									$b = $pl['opt']['rd'][3] * $this->k;
-									$annots .= ' /RD ['.sprintf('%.2F %.2F %.2F %.2F', $l, $r, $t, $b).']';
+								if (isset($pl['opt']['mk']['rc'])) {
+									$annots .= ' /RC '.$pl['opt']['mk']['rc'];
 								}
-								if (isset($pl['opt']['le']) AND in_array($pl['opt']['le'], $lineendings)) {
-									$annots .= ' /LE /'.$pl['opt']['le'];
+								if (isset($pl['opt']['mk']['ac'])) {
+									$annots .= ' /AC '.$pl['opt']['mk']['ac'];
 								}
-								break;
-							}
-							case 'line': {
-								break;
-							}
-							case 'square': {
-								break;
-							}
-							case 'circle': {
-								break;
-							}
-							case 'polygon': {
-								break;
-							}
-							case 'polyline': {
-								break;
-							}
-							case 'highlight': {
-								break;
-							}
-							case 'underline': {
-								break;
-							}
-							case 'squiggly': {
-								break;
-							}
-							case 'strikeout': {
-								break;
-							}
-							case 'stamp': {
-								break;
-							}
-							case 'caret': {
-								break;
-							}
-							case 'ink': {
-								break;
-							}
-							case 'popup': {
-								break;
-							}
-							case 'fileattachment': {
-								if (!isset($pl['opt']['fs'])) {
-									break;
+								if (isset($pl['opt']['mk']['i'])) {
+									$info = $this->getImageBuffer($pl['opt']['mk']['i']);
+									if ($info !== false) {
+										$annots .= ' /I '.$info['n'].' 0 R';
+									}
 								}
-								$filename = basename($pl['opt']['fs']);
-								if (isset($this->embeddedfiles[$filename]['n'])) {
-									$annots .= ' /FS <</Type /Filespec /F '.$this->_dataannobjstring($filename).' /EF <</F '.$this->embeddedfiles[$filename]['n'].' 0 R>> >>';
-									$iconsapp = array('Graph', 'Paperclip', 'PushPin', 'Tag');
-									if (isset($pl['opt']['name']) AND in_array($pl['opt']['name'], $iconsapp)) {
-										$annots .= ' /Name /'.$pl['opt']['name'];
-									} else {
-										$annots .= ' /Name /PushPin';
+								if (isset($pl['opt']['mk']['ri'])) {
+									$info = $this->getImageBuffer($pl['opt']['mk']['ri']);
+									if ($info !== false) {
+										$annots .= ' /RI '.$info['n'].' 0 R';
 									}
 								}
-								break;
-							}
-							case 'sound': {
-								if (!isset($pl['opt']['fs'])) {
-									break;
+								if (isset($pl['opt']['mk']['ix'])) {
+									$info = $this->getImageBuffer($pl['opt']['mk']['ix']);
+									if ($info !== false) {
+										$annots .= ' /IX '.$info['n'].' 0 R';
+									}
 								}
-								$filename = basename($pl['opt']['fs']);
-								if (isset($this->embeddedfiles[$filename]['n'])) {
-									// ... TO BE COMPLETED ...
-									// /R /C /B /E /CO /CP
-									$annots .= ' /Sound <</Type /Filespec /F '.$this->_dataannobjstring($filename).' /EF <</F '.$this->embeddedfiles[$filename]['n'].' 0 R>> >>';
-									$iconsapp = array('Speaker', 'Mic');
-									if (isset($pl['opt']['name']) AND in_array($pl['opt']['name'], $iconsapp)) {
-										$annots .= ' /Name /'.$pl['opt']['name'];
-									} else {
-										$annots .= ' /Name /Speaker';
+								if (isset($pl['opt']['mk']['if']) AND (is_array($pl['opt']['mk']['if'])) AND !empty($pl['opt']['mk']['if'])) {
+									$annots .= ' /IF <<';
+									$if_sw = array('A', 'B', 'S', 'N');
+									if (isset($pl['opt']['mk']['if']['sw']) AND in_array($pl['opt']['mk']['if']['sw'], $if_sw)) {
+										$annots .= ' /SW /'.$pl['opt']['mk']['if']['sw'];
 									}
+									$if_s = array('A', 'P');
+									if (isset($pl['opt']['mk']['if']['s']) AND in_array($pl['opt']['mk']['if']['s'], $if_s)) {
+										$annots .= ' /S /'.$pl['opt']['mk']['if']['s'];
+									}
+									if (isset($pl['opt']['mk']['if']['a']) AND (is_array($pl['opt']['mk']['if']['a'])) AND !empty($pl['opt']['mk']['if']['a'])) {
+										$annots .= sprintf(' /A [%.2F %.2F]', $pl['opt']['mk']['if']['a'][0], $pl['opt']['mk']['if']['a'][1]);
+									}
+									if (isset($pl['opt']['mk']['if']['fb']) AND ($pl['opt']['mk']['if']['fb'])) {
+										$annots .= ' /FB true';
+									}
+									$annots .= '>>';
 								}
-								break;
+								if (isset($pl['opt']['mk']['tp']) AND ($pl['opt']['mk']['tp'] >= 0) AND ($pl['opt']['mk']['tp'] <= 6)) {
+									$annots .= ' /TP '.intval($pl['opt']['mk']['tp']);
+								} else {
+									$annots .= ' /TP 0';
+								}
+								$annots .= '>>';
+							} // end MK
+							// --- Entries for field dictionaries ---
+							if (isset($this->radiobutton_groups[$n][$pl['txt']])) {
+								// set parent
+								$annots .= ' /Parent '.$this->radiobutton_groups[$n][$pl['txt']].' 0 R';
 							}
-							case 'movie': {
-								break;
+							if (isset($pl['opt']['t']) AND is_string($pl['opt']['t'])) {
+								$annots .= ' /T '.$this->_datastring($pl['opt']['t'], $annot_obj_id);
 							}
-							case 'widget': {
-								$hmode = array('N', 'I', 'O', 'P', 'T');
-								if (isset($pl['opt']['h']) AND in_array($pl['opt']['h'], $hmode)) {
-									$annots .= ' /H /'.$pl['opt']['h'];
-								}
-							 	if (isset($pl['opt']['mk']) AND (is_array($pl['opt']['mk'])) AND !empty($pl['opt']['mk'])) {
-							 		$annots .= ' /MK <<';
-							 		if (isset($pl['opt']['mk']['r'])) {
-							 			$annots .= ' /R '.$pl['opt']['mk']['r'];
-							 		}
-							 		if (isset($pl['opt']['mk']['bc']) AND (is_array($pl['opt']['mk']['bc']))) {
-							 			$annots .= ' /BC [';
-							 			foreach($pl['opt']['mk']['bc'] AS $col) {
-							 				$col = intval($col);
-											$color = $col <= 0 ? 0 : ($col >= 255 ? 1 : $col / 255);
-							 				$annots .= sprintf(' %.2F', $color);
-							 			}
-							 			$annots .= ']';
-							 		}
-							 		if (isset($pl['opt']['mk']['bg']) AND (is_array($pl['opt']['mk']['bg']))) {
-							 			$annots .= ' /BG [';
-							 			foreach($pl['opt']['mk']['bg'] AS $col) {
-							 				$col = intval($col);
-											$color = $col <= 0 ? 0 : ($col >= 255 ? 1 : $col / 255);
-							 				$annots .= sprintf(' %.2F', $color);
-							 			}
-							 			$annots .= ']';
-							 		}
-							 		if (isset($pl['opt']['mk']['ca'])) {
-							 			$annots .= ' /CA '.$pl['opt']['mk']['ca'].'';
-							 		}
-							 		if (isset($pl['opt']['mk']['rc'])) {
-							 			$annots .= ' /RC '.$pl['opt']['mk']['ca'].'';
-							 		}
-							 		if (isset($pl['opt']['mk']['ac'])) {
-							 			$annots .= ' /AC '.$pl['opt']['mk']['ca'].'';
-							 		}
-							 		if (isset($pl['opt']['mk']['i'])) {
-							 			$info = $this->getImageBuffer($pl['opt']['mk']['i']);
-							 			if ($info !== false) {
-							 				$annots .= ' /I '.$info['n'].' 0 R';
-							 			}
-							 		}
-							 		if (isset($pl['opt']['mk']['ri'])) {
-							 			$info = $this->getImageBuffer($pl['opt']['mk']['ri']);
-							 			if ($info !== false) {
-							 				$annots .= ' /RI '.$info['n'].' 0 R';
-							 			}
-							 		}
-							 		if (isset($pl['opt']['mk']['ix'])) {
-							 			$info = $this->getImageBuffer($pl['opt']['mk']['ix']);
-							 			if ($info !== false) {
-							 				$annots .= ' /IX '.$info['n'].' 0 R';
-							 			}
-							 		}
-							 		if (isset($pl['opt']['mk']['if']) AND (is_array($pl['opt']['mk']['if'])) AND !empty($pl['opt']['mk']['if'])) {
-							 			$annots .= ' /IF <<';
-							 			$if_sw = array('A', 'B', 'S', 'N');
-										if (isset($pl['opt']['mk']['if']['sw']) AND in_array($pl['opt']['mk']['if']['sw'], $if_sw)) {
-											$annots .= ' /SW /'.$pl['opt']['mk']['if']['sw'];
-										}
-							 			$if_s = array('A', 'P');
-										if (isset($pl['opt']['mk']['if']['s']) AND in_array($pl['opt']['mk']['if']['s'], $if_s)) {
-											$annots .= ' /S /'.$pl['opt']['mk']['if']['s'];
-										}
-										if (isset($pl['opt']['mk']['if']['a']) AND (is_array($pl['opt']['mk']['if']['a'])) AND !empty($pl['opt']['mk']['if']['a'])) {
-											$annots .= sprintf(' /A [%.2F  %.2F]', $pl['opt']['mk']['if']['a'][0], $pl['opt']['mk']['if']['a'][1]);
-										}
-										if (isset($pl['opt']['mk']['if']['fb']) AND ($pl['opt']['mk']['if']['fb'])) {
-											$annots .= ' /FB true';
-										}
-							 			$annots .= '>>';
-							 		}
-							 		if (isset($pl['opt']['mk']['tp']) AND ($pl['opt']['mk']['tp'] >= 0) AND ($pl['opt']['mk']['tp'] <= 6)) {
-							 			$annots .= ' /TP '.intval($pl['opt']['mk']['tp']);
-							 		} else {
-							 			$annots .= ' /TP 0';
-							 		}
-							 		$annots .= '>>';
-							 	} // end MK
-							 	// --- Entries for field dictionaries ---
-							 	if (isset($this->radiobutton_groups[$n][$pl['txt']])) {
-							 		// set parent
-							 		$annots .= ' /Parent '.$this->radiobutton_groups[$n][$pl['txt']].' 0 R';
-							 	}
-							 	if (isset($pl['opt']['t']) AND is_string($pl['opt']['t'])) {
-									$annots .= ' /T '.$this->_dataannobjstring($pl['opt']['t']);
-								}
-								if (isset($pl['opt']['tu']) AND is_string($pl['opt']['tu'])) {
-									$annots .= ' /TU '.$this->_dataannobjstring($pl['opt']['tu']);
-								}
-								if (isset($pl['opt']['tm']) AND is_string($pl['opt']['tm'])) {
-									$annots .= ' /TM '.$this->_dataannobjstring($pl['opt']['tm']);
-								}
-								if (isset($pl['opt']['ff'])) {
-									if (is_array($pl['opt']['ff'])) {
-										// array of bit settings
-										$flag = 0;
-										foreach($pl['opt']['ff'] as $val) {
-											$flag += 1 << ($val - 1);
-										}
-									} else {
-										$flag = intval($pl['opt']['ff']);
+							if (isset($pl['opt']['tu']) AND is_string($pl['opt']['tu'])) {
+								$annots .= ' /TU '.$this->_datastring($pl['opt']['tu'], $annot_obj_id);
+							}
+							if (isset($pl['opt']['tm']) AND is_string($pl['opt']['tm'])) {
+								$annots .= ' /TM '.$this->_datastring($pl['opt']['tm'], $annot_obj_id);
+							}
+							if (isset($pl['opt']['ff'])) {
+								if (is_array($pl['opt']['ff'])) {
+									// array of bit settings
+									$flag = 0;
+									foreach($pl['opt']['ff'] as $val) {
+										$flag += 1 << ($val - 1);
 									}
-									$annots .= ' /Ff '.$flag;
-								}
-								if (isset($pl['opt']['maxlen'])) {
-									$annots .= ' /MaxLen '.intval($pl['opt']['maxlen']);
+								} else {
+									$flag = intval($pl['opt']['ff']);
 								}
-								if (isset($pl['opt']['v'])) {
-									$annots .= ' /V';
-									if (is_array($pl['opt']['v'])) {
-										foreach ($pl['opt']['v'] AS $optval) {
-											if (is_float($optval)) {
-												$optval = sprintf('%.2F', $optval);
-											}
-											$annots .= ' '.$optval;
+								$annots .= ' /Ff '.$flag;
+							}
+							if (isset($pl['opt']['maxlen'])) {
+								$annots .= ' /MaxLen '.intval($pl['opt']['maxlen']);
+							}
+							if (isset($pl['opt']['v'])) {
+								$annots .= ' /V';
+								if (is_array($pl['opt']['v'])) {
+									foreach ($pl['opt']['v'] AS $optval) {
+										if (is_float($optval)) {
+											$optval = sprintf('%.2F', $optval);
 										}
-									} else {
-										$annots .= ' '.$this->_textannobjstring($pl['opt']['v']);
+										$annots .= ' '.$optval;
 									}
+								} else {
+									$annots .= ' '.$this->_textstring($pl['opt']['v'], $annot_obj_id);
 								}
-								if (isset($pl['opt']['dv'])) {
-									$annots .= ' /DV';
-									if (is_array($pl['opt']['dv'])) {
-										foreach ($pl['opt']['dv'] AS $optval) {
-											if (is_float($optval)) {
-												$optval = sprintf('%.2F', $optval);
-											}
-											$annots .= ' '.$optval;
+							}
+							if (isset($pl['opt']['dv'])) {
+								$annots .= ' /DV';
+								if (is_array($pl['opt']['dv'])) {
+									foreach ($pl['opt']['dv'] AS $optval) {
+										if (is_float($optval)) {
+											$optval = sprintf('%.2F', $optval);
 										}
-									} else {
-										$annots .= ' '.$this->_textannobjstring($pl['opt']['dv']);
+										$annots .= ' '.$optval;
 									}
+								} else {
+									$annots .= ' '.$this->_textstring($pl['opt']['dv'], $annot_obj_id);
 								}
-								if (isset($pl['opt']['rv'])) {
-									$annots .= ' /RV';
-									if (is_array($pl['opt']['rv'])) {
-										foreach ($pl['opt']['rv'] AS $optval) {
-											if (is_float($optval)) {
-												$optval = sprintf('%.2F', $optval);
-											}
-											$annots .= ' '.$optval;
+							}
+							if (isset($pl['opt']['rv'])) {
+								$annots .= ' /RV';
+								if (is_array($pl['opt']['rv'])) {
+									foreach ($pl['opt']['rv'] AS $optval) {
+										if (is_float($optval)) {
+											$optval = sprintf('%.2F', $optval);
 										}
-									} else {
-										$annots .= ' '.$this->_textannobjstring($pl['opt']['rv']);
+										$annots .= ' '.$optval;
 									}
+								} else {
+									$annots .= ' '.$this->_textstring($pl['opt']['rv'], $annot_obj_id);
 								}
-								if (isset($pl['opt']['a']) AND !empty($pl['opt']['a'])) {
-									$annots .= ' /A << '.$pl['opt']['a'].' >>';
-								}
-								if (isset($pl['opt']['aa']) AND !empty($pl['opt']['aa'])) {
-									$annots .= ' /AA << '.$pl['opt']['aa'].' >>';
-								}
-								if (isset($pl['opt']['da']) AND !empty($pl['opt']['da'])) {
-									$annots .= ' /DA ('.$pl['opt']['da'].')';
-								}
-								if (isset($pl['opt']['q']) AND ($pl['opt']['q'] >= 0) AND ($pl['opt']['q'] <= 2)) {
-									$annots .= ' /Q '.intval($pl['opt']['q']);
-								}
-								if (isset($pl['opt']['opt']) AND (is_array($pl['opt']['opt'])) AND !empty($pl['opt']['opt'])) {
-						 			$annots .= ' /Opt [';
-						 			foreach($pl['opt']['opt'] AS $copt) {
-						 				if (is_array($copt)) {
-						 					$annots .= ' ['.$this->_textannobjstring($copt[0]).' '.$this->_textannobjstring($copt[1]).']';
-						 				} else {
-						 					$annots .= ' '.$this->_textannobjstring($copt);
-						 				}
-						 			}
-						 			$annots .= ']';
-						 		}
-						 		if (isset($pl['opt']['ti'])) {
-						 			$annots .= ' /TI '.intval($pl['opt']['ti']);
-						 		}
-						 		if (isset($pl['opt']['i']) AND (is_array($pl['opt']['i'])) AND !empty($pl['opt']['i'])) {
-						 			$annots .= ' /I [';
-						 			foreach($pl['opt']['i'] AS $copt) {
-						 				$annots .= intval($copt).' ';
-						 			}
-						 			$annots .= ']';
-						 		}
-								break;
 							}
-							case 'screen': {
-								break;
+							if (isset($pl['opt']['a']) AND !empty($pl['opt']['a'])) {
+								$annots .= ' /A << '.$pl['opt']['a'].' >>';
 							}
-							case 'printermark': {
-								break;
+							if (isset($pl['opt']['aa']) AND !empty($pl['opt']['aa'])) {
+								$annots .= ' /AA << '.$pl['opt']['aa'].' >>';
 							}
-							case 'trapnet': {
-								break;
+							if (isset($pl['opt']['da']) AND !empty($pl['opt']['da'])) {
+								$annots .= ' /DA ('.$pl['opt']['da'].')';
 							}
-							case 'watermark': {
-								break;
+							if (isset($pl['opt']['q']) AND ($pl['opt']['q'] >= 0) AND ($pl['opt']['q'] <= 2)) {
+								$annots .= ' /Q '.intval($pl['opt']['q']);
 							}
-							case '3d': {
-								break;
+							if (isset($pl['opt']['opt']) AND (is_array($pl['opt']['opt'])) AND !empty($pl['opt']['opt'])) {
+								$annots .= ' /Opt [';
+								foreach($pl['opt']['opt'] AS $copt) {
+									if (is_array($copt)) {
+										$annots .= ' ['.$this->_textstring($copt[0], $annot_obj_id).' '.$this->_textstring($copt[1], $annot_obj_id).']';
+									} else {
+										$annots .= ' '.$this->_textstring($copt, $annot_obj_id);
+									}
+								}
+								$annots .= ']';
 							}
-							default: {
-								break;
+							if (isset($pl['opt']['ti'])) {
+								$annots .= ' /TI '.intval($pl['opt']['ti']);
 							}
-						}
-						$annots .= '>>';
-						// create new annotation object
-						++$this->annot_obj_id;
-						$this->offsets[$this->annot_obj_id] = $this->bufferlen;
-						$this->_out($this->annot_obj_id.' 0 obj'."\n".$annots."\n".'endobj');
-						if ($formfield AND ! isset($this->radiobutton_groups[$n][$pl['txt']])) {
-							// store reference of form object
-							$this->form_obj_id[] = $this->annot_obj_id;
-						}
-					}
-				}
-			} // end for each page
-		}
-
-		/**
-		 * Put appearance streams XObject used to define annotation's appearance states
-		 * @param int $w annotation width
-		 * @param int $h annotation height
-		 * @param string $stream appearance stream
-		 * @return int object ID
-		 * @access protected
-		 * @since 4.8.001 (2009-09-09)
-		 */
-		protected function _putAPXObject($w=0, $h=0, $stream='') {
-			$stream = trim($stream);
-			++$this->apxo_obj_id;
-			$this->offsets[$this->apxo_obj_id] = $this->bufferlen;
-			$out = $this->apxo_obj_id.' 0 obj'."\n";
-			$out .= '<<';
-			$out .= ' /Type /XObject';
-			$out .= ' /Subtype /Form';
-			$out .= ' /FormType 1';
-			if ($this->compress) {
-				$stream = gzcompress($stream);
-				$out .= ' /Filter /FlateDecode';
-			}
-			$rect = sprintf('%.2F %.2F', $w, $h);
-			$out .= ' /BBox [0 0 '.$rect.']';
-			$out .= ' /Matrix [1 0 0 1 0 0]';
-			$out .= ' /Resources <</ProcSet [/PDF]>>';
-			$stream = $this->_getrawstream($stream);
-			$out .= ' /Length '.strlen($stream);
-			$out .= ' >>';
-			$out .= ' stream'."\n".$stream."\n".'endstream';
-			$out .= "\n".'endobj';
-			$this->_out($out);
-			return $this->apxo_obj_id;
-		}
-
-		/**
-		 * Get ULONG from string (Big Endian 32-bit unsigned integer).
-		 * @param string $str string from where to extract value
-		 * @param int $offset point from where to read the data
-		 * @return int 32 bit value
-		 * @author Nicola Asuni
-		 * @access protected
-		 * @since 5.2.000 (2010-06-02)
-		 */
-		protected function _getULONG(&$str, &$offset) {
-			$v = unpack('Ni', substr($str, $offset, 4));
-			$offset += 4;
-			return $v['i'];
-		}
-
-		/**
-		 * Get USHORT from string (Big Endian 16-bit unsigned integer).
-		 * @param string $str string from where to extract value
-		 * @param int $offset point from where to read the data
-		 * @return int 16 bit value
-		 * @author Nicola Asuni
-		 * @access protected
-		 * @since 5.2.000 (2010-06-02)
-		 */
-		protected function _getUSHORT(&$str, &$offset) {
-			$v = unpack('ni', substr($str, $offset, 2));
-			$offset += 2;
-			return $v['i'];
-		}
-
-		/**
-		 * Get SHORT from string (Big Endian 16-bit signed integer).
-		 * @param string $str string from where to extract value
-		 * @param int $offset point from where to read the data
-		 * @return int 16 bit value
-		 * @author Nicola Asuni
-		 * @access protected
-		 * @since 5.2.000 (2010-06-02)
-		 */
-		protected function _getSHORT(&$str, &$offset) {
-			$v = unpack('si', substr($str, $offset, 2));
-			$offset += 2;
-			return $v['i'];
-		}
-
-		/**
-		 * Get BYTE from string (8-bit unsigned integer).
-		 * @param string $str string from where to extract value
-		 * @param int $offset point from where to read the data
-		 * @return int 8 bit value
-		 * @author Nicola Asuni
-		 * @access protected
-		 * @since 5.2.000 (2010-06-02)
-		 */
-		protected function _getBYTE(&$str, &$offset) {
-			$v = unpack('Ci', substr($str, $offset, 1));
-			++$offset;
-			return $v['i'];
-		}
-
-		/**
-		 * Returns a subset of the TrueType font data without the unused glyphs.
-		 * @param string $font TrueType font data
-		 * @param array $subsetchars array of used characters (the glyphs to keep)
-		 * @return string a subset of TrueType font data without the unused glyphs
-		 * @author Nicola Asuni
-		 * @access protected
-		 * @since 5.2.000 (2010-06-02)
-		 */
-		protected function _getTrueTypeFontSubset($font, $subsetchars) {
-			ksort($subsetchars);
-			$offset = 0; // offset position of the font data
-			if ($this->_getULONG($font, $offset) != 0x10000) {
-				// sfnt version must be 0x00010000 for TrueType version 1.0.
-				return $font;
-			}
-			// get number of tables
-			$numTables = $this->_getUSHORT($font, $offset);
-			// skip searchRange, entrySelector and rangeShift
-			$offset += 6;
-			// tables array
-			$table = array();
-			// for each table
-			for ($i = 0; $i < $numTables; ++$i) {
-				// get table info
-				$tag = substr($font, $offset, 4);
-				$offset += 4;
-				$table[$tag] = array();
-				$table[$tag]['checkSum'] = $this->_getULONG($font, $offset);
-				$table[$tag]['offset'] = $this->_getULONG($font, $offset);
-				$table[$tag]['length'] = $this->_getULONG($font, $offset);
-			}
-			// check magicNumber
-			$offset = $table['head']['offset'] + 12;
-			if ($this->_getULONG($font, $offset) != 0x5F0F3CF5) {
-				// magicNumber must be 0x5F0F3CF5
-				return $font;
-			}
-			// get offset mode (indexToLocFormat : 0 = short, 1 = long)
-			$offset = $table['head']['offset'] + 50;
-			$short_offset = ($this->_getSHORT($font, $offset) == 0);
-			// get the offsets to the locations of the glyphs in the font, relative to the beginning of the glyphData table
-			$indexToLoc = array();
-			$offset = $table['loca']['offset'];
-			if ($short_offset) {
-				// short version
-				$n = $table['loca']['length'] / 2; // numGlyphs + 1
-				for ($i = 0; $i < $n; ++$i) {
-					$indexToLoc[$i] = $this->_getUSHORT($font, $offset) * 2;
-				}
-			} else {
-				// long version
-				$n = $table['loca']['length'] / 4; // numGlyphs + 1
-				for ($i = 0; $i < $n; ++$i) {
-					$indexToLoc[$i] = $this->_getULONG($font, $offset);
-				}
-			}
-			// get glyphs indexes of chars from cmap table
-			$subsetglyphs = array(); // glyph IDs on key
-			$subsetglyphs[0] = true; // character codes that do not correspond to any glyph in the font should be mapped to glyph index 0
-			$offset = $table['cmap']['offset'] + 2;
-			$numEncodingTables = $this->_getUSHORT($font, $offset);
-			$encodingTables = array();
-			for ($i = 0; $i < $numEncodingTables; ++$i) {
-				$encodingTables[$i]['platformID'] = $this->_getUSHORT($font, $offset);
-				$encodingTables[$i]['encodingID'] = $this->_getUSHORT($font, $offset);
-				$encodingTables[$i]['offset'] = $this->_getULONG($font, $offset);
-			}
-			foreach ($encodingTables as $enctable) {
-				if (($enctable['platformID'] == 3) AND ($enctable['encodingID'] == 0)) {
-					$modesymbol = true;
-				} else {
-					$modesymbol = false;
-				}
-				$offset = $table['cmap']['offset'] + $enctable['offset'];
-				$format = $this->_getUSHORT($font, $offset);
-				switch ($format) {
-					case 0: { // Format 0: Byte encoding table
-						$offset += 4; // skip length and version/language
-						for ($k = 0; $k < 256; ++$k) {
-							if (isset($subsetchars[$k])) {
-								$g = $this->_getBYTE($font, $offset);
-								$subsetglyphs[$g] = $k;
-							} else {
-								++$offset;
+							if (isset($pl['opt']['i']) AND (is_array($pl['opt']['i'])) AND !empty($pl['opt']['i'])) {
+								$annots .= ' /I [';
+								foreach($pl['opt']['i'] AS $copt) {
+									$annots .= intval($copt).' ';
+								}
+								$annots .= ']';
 							}
+							break;
+						}
+						case 'screen': {
+							break;
+						}
+						case 'printermark': {
+							break;
+						}
+						case 'trapnet': {
+							break;
+						}
+						case 'watermark': {
+							break;
+						}
+						case '3d': {
+							break;
+						}
+						default: {
+							break;
 						}
-						break;
 					}
-					case 2: { // Format 2: High-byte mapping through table
-						$offset += 4; // skip length and version
-						// to be implemented ...
-						break;
+					$annots .= '>>';
+					// create new annotation object
+					$this->_out($this->_getobj($annot_obj_id)."\n".$annots."\n".'endobj');
+					if ($formfield AND !isset($this->radiobutton_groups[$n][$pl['txt']])) {
+						// store reference of form object
+						$this->form_obj_id[] = $annot_obj_id;
 					}
-					case 4: { // Format 4: Segment mapping to delta values
-						$length = $this->_getUSHORT($font, $offset);
-						$offset += 2; // skip version/language
-						$segCount = ($this->_getUSHORT($font, $offset) / 2);
-						$offset += 6; // skip searchRange, entrySelector, rangeShift
-						$endCount = array(); // array of end character codes for each segment
-						for ($k = 0; $k < $segCount; ++$k) {
-							$endCount[$k] = $this->_getUSHORT($font, $offset);
-						}
-						$offset += 2; // skip reservedPad
-						$startCount = array(); // array of start character codes for each segment
-						for ($k = 0; $k < $segCount; ++$k) {
-							$startCount[$k] = $this->_getUSHORT($font, $offset);
-						}
-						$idDelta = array(); // delta for all character codes in segment
-						for ($k = 0; $k < $segCount; ++$k) {
-							$idDelta[$k] = $this->_getUSHORT($font, $offset);
-						}
-						$idRangeOffset = array(); // Offsets into glyphIdArray or 0
-						for ($k = 0; $k < $segCount; ++$k) {
-							$idRangeOffset[$k] = $this->_getUSHORT($font, $offset);
-						}
-						$gidlen = ($length / 2) - 8 - (4 * $segCount);
-						$glyphIdArray = array(); // glyph index array
-						for ($k = 0; $k < $gidlen; ++$k) {
-							$glyphIdArray[$k] = $this->_getUSHORT($font, $offset);
-						}
-						for ($k = 0; $k < $segCount; ++$k) {
-							for ($c = $startCount[$k]; $c <= $endCount[$k]; ++$c) {
-								if (isset($subsetchars[$c])) {
-									if ($idRangeOffset[$k] == 0) {
-										$g = $c;
-									} else {
-										$gid = (($idRangeOffset[$k] / 2) + ($c - $startCount[$k]) - ($segCount - $k));
-										$g = $glyphIdArray[$gid];
-									}
-									$g += ($idDelta[$k] - 65536);
-									if ($g < 0) {
-										$g = 0;
-									}
-									$subsetglyphs[$g] = $c;
-								}
-							}
+				}
+			}
+		} // end for each page
+	}
+
+	/**
+	 * Put appearance streams XObject used to define annotation's appearance states
+	 * @param $w (int) annotation width
+	 * @param $h (int) annotation height
+	 * @param $stream (string) appearance stream
+	 * @return int object ID
+	 * @protected
+	 * @since 4.8.001 (2009-09-09)
+	 */
+	protected function _putAPXObject($w=0, $h=0, $stream='') {
+		$stream = trim($stream);
+		$out = $this->_getobj()."\n";
+		$this->xobjects['AX'.$this->n] = array('n' => $this->n);
+		$out .= '<<';
+		$out .= ' /Type /XObject';
+		$out .= ' /Subtype /Form';
+		$out .= ' /FormType 1';
+		if ($this->compress) {
+			$stream = gzcompress($stream);
+			$out .= ' /Filter /FlateDecode';
+		}
+		$rect = sprintf('%.2F %.2F', $w, $h);
+		$out .= ' /BBox [0 0 '.$rect.']';
+		$out .= ' /Matrix [1 0 0 1 0 0]';
+		$out .= ' /Resources <<';
+		$out .= ' /ProcSet [/PDF /Text]';
+		$out .= ' /Font <<';
+		foreach ($this->annotation_fonts as $fontkey => $fontid) {
+			$out .= ' /F'.$fontid.' '.$this->font_obj_ids[$fontkey].' 0 R';
+		}
+		$out .= ' >>';
+		$out .= ' >>';
+		$stream = $this->_getrawstream($stream);
+		$out .= ' /Length '.strlen($stream);
+		$out .= ' >>';
+		$out .= ' stream'."\n".$stream."\n".'endstream';
+		$out .= "\n".'endobj';
+		$this->_out($out);
+		return $this->n;
+	}
+
+	/**
+	 * Get ULONG from string (Big Endian 32-bit unsigned integer).
+	 * @param $str (string) string from where to extract value
+	 * @param $offset (int) point from where to read the data
+	 * @return int 32 bit value
+	 * @author Nicola Asuni
+	 * @protected
+	 * @since 5.2.000 (2010-06-02)
+	 */
+	protected function _getULONG(&$str, &$offset) {
+		$v = unpack('Ni', substr($str, $offset, 4));
+		$offset += 4;
+		return $v['i'];
+	}
+
+	/**
+	 * Get USHORT from string (Big Endian 16-bit unsigned integer).
+	 * @param $str (string) string from where to extract value
+	 * @param $offset (int) point from where to read the data
+	 * @return int 16 bit value
+	 * @author Nicola Asuni
+	 * @protected
+	 * @since 5.2.000 (2010-06-02)
+	 */
+	protected function _getUSHORT(&$str, &$offset) {
+		$v = unpack('ni', substr($str, $offset, 2));
+		$offset += 2;
+		return $v['i'];
+	}
+
+	/**
+	 * Get SHORT from string (Big Endian 16-bit signed integer).
+	 * @param $str (string) string from where to extract value
+	 * @param $offset (int) point from where to read the data
+	 * @return int 16 bit value
+	 * @author Nicola Asuni
+	 * @protected
+	 * @since 5.2.000 (2010-06-02)
+	 */
+	protected function _getSHORT(&$str, &$offset) {
+		$v = unpack('si', substr($str, $offset, 2));
+		$offset += 2;
+		return $v['i'];
+	}
+
+	/**
+	 * Get BYTE from string (8-bit unsigned integer).
+	 * @param $str (string) string from where to extract value
+	 * @param $offset (int) point from where to read the data
+	 * @return int 8 bit value
+	 * @author Nicola Asuni
+	 * @protected
+	 * @since 5.2.000 (2010-06-02)
+	 */
+	protected function _getBYTE(&$str, &$offset) {
+		$v = unpack('Ci', substr($str, $offset, 1));
+		++$offset;
+		return $v['i'];
+	}
+
+	/**
+	 * Returns a subset of the TrueType font data without the unused glyphs.
+	 * @param $font (string) TrueType font data
+	 * @param $subsetchars (array) array of used characters (the glyphs to keep)
+	 * @return string a subset of TrueType font data without the unused glyphs
+	 * @author Nicola Asuni
+	 * @protected
+	 * @since 5.2.000 (2010-06-02)
+	 */
+	protected function _getTrueTypeFontSubset($font, $subsetchars) {
+		ksort($subsetchars);
+		$offset = 0; // offset position of the font data
+		if ($this->_getULONG($font, $offset) != 0x10000) {
+			// sfnt version must be 0x00010000 for TrueType version 1.0.
+			return $font;
+		}
+		// get number of tables
+		$numTables = $this->_getUSHORT($font, $offset);
+		// skip searchRange, entrySelector and rangeShift
+		$offset += 6;
+		// tables array
+		$table = array();
+		// for each table
+		for ($i = 0; $i < $numTables; ++$i) {
+			// get table info
+			$tag = substr($font, $offset, 4);
+			$offset += 4;
+			$table[$tag] = array();
+			$table[$tag]['checkSum'] = $this->_getULONG($font, $offset);
+			$table[$tag]['offset'] = $this->_getULONG($font, $offset);
+			$table[$tag]['length'] = $this->_getULONG($font, $offset);
+		}
+		// check magicNumber
+		$offset = $table['head']['offset'] + 12;
+		if ($this->_getULONG($font, $offset) != 0x5F0F3CF5) {
+			// magicNumber must be 0x5F0F3CF5
+			return $font;
+		}
+		// get offset mode (indexToLocFormat : 0 = short, 1 = long)
+		$offset = $table['head']['offset'] + 50;
+		$short_offset = ($this->_getSHORT($font, $offset) == 0);
+		// get the offsets to the locations of the glyphs in the font, relative to the beginning of the glyphData table
+		$indexToLoc = array();
+		$offset = $table['loca']['offset'];
+		if ($short_offset) {
+			// short version
+			$n = $table['loca']['length'] / 2; // numGlyphs + 1
+			for ($i = 0; $i < $n; ++$i) {
+				$indexToLoc[$i] = $this->_getUSHORT($font, $offset) * 2;
+			}
+		} else {
+			// long version
+			$n = $table['loca']['length'] / 4; // numGlyphs + 1
+			for ($i = 0; $i < $n; ++$i) {
+				$indexToLoc[$i] = $this->_getULONG($font, $offset);
+			}
+		}
+		// get glyphs indexes of chars from cmap table
+		$subsetglyphs = array(); // glyph IDs on key
+		$subsetglyphs[0] = true; // character codes that do not correspond to any glyph in the font should be mapped to glyph index 0
+		$offset = $table['cmap']['offset'] + 2;
+		$numEncodingTables = $this->_getUSHORT($font, $offset);
+		$encodingTables = array();
+		for ($i = 0; $i < $numEncodingTables; ++$i) {
+			$encodingTables[$i]['platformID'] = $this->_getUSHORT($font, $offset);
+			$encodingTables[$i]['encodingID'] = $this->_getUSHORT($font, $offset);
+			$encodingTables[$i]['offset'] = $this->_getULONG($font, $offset);
+		}
+		foreach ($encodingTables as $enctable) {
+			if (($enctable['platformID'] == 3) AND ($enctable['encodingID'] == 0)) {
+				$modesymbol = true;
+			} else {
+				$modesymbol = false;
+			}
+			$offset = $table['cmap']['offset'] + $enctable['offset'];
+			$format = $this->_getUSHORT($font, $offset);
+			switch ($format) {
+				case 0: { // Format 0: Byte encoding table
+					$offset += 4; // skip length and version/language
+					for ($k = 0; $k < 256; ++$k) {
+						if (isset($subsetchars[$k])) {
+							$g = $this->_getBYTE($font, $offset);
+							$subsetglyphs[$g] = $k;
+						} else {
+							++$offset;
 						}
-						break;
 					}
-					case 6: { // Format 6: Trimmed table mapping
-						$offset += 4; // skip length and version/language
-						$firstCode = $this->_getUSHORT($font, $offset);
-						$entryCount = $this->_getUSHORT($font, $offset);
-						for ($k = 0; $k < $entryCount; ++$k) {
-							$c = ($k + $firstCode);
+					break;
+				}
+				case 2: { // Format 2: High-byte mapping through table
+					$offset += 4; // skip length and version
+					// to be implemented ...
+					break;
+				}
+				case 4: { // Format 4: Segment mapping to delta values
+					$length = $this->_getUSHORT($font, $offset);
+					$offset += 2; // skip version/language
+					$segCount = ($this->_getUSHORT($font, $offset) / 2);
+					$offset += 6; // skip searchRange, entrySelector, rangeShift
+					$endCount = array(); // array of end character codes for each segment
+					for ($k = 0; $k < $segCount; ++$k) {
+						$endCount[$k] = $this->_getUSHORT($font, $offset);
+					}
+					$offset += 2; // skip reservedPad
+					$startCount = array(); // array of start character codes for each segment
+					for ($k = 0; $k < $segCount; ++$k) {
+						$startCount[$k] = $this->_getUSHORT($font, $offset);
+					}
+					$idDelta = array(); // delta for all character codes in segment
+					for ($k = 0; $k < $segCount; ++$k) {
+						$idDelta[$k] = $this->_getUSHORT($font, $offset);
+					}
+					$idRangeOffset = array(); // Offsets into glyphIdArray or 0
+					for ($k = 0; $k < $segCount; ++$k) {
+						$idRangeOffset[$k] = $this->_getUSHORT($font, $offset);
+					}
+					$gidlen = ($length / 2) - 8 - (4 * $segCount);
+					$glyphIdArray = array(); // glyph index array
+					for ($k = 0; $k < $gidlen; ++$k) {
+						$glyphIdArray[$k] = $this->_getUSHORT($font, $offset);
+					}
+					for ($k = 0; $k < $segCount; ++$k) {
+						for ($c = $startCount[$k]; $c <= $endCount[$k]; ++$c) {
 							if (isset($subsetchars[$c])) {
-								$g = $this->_getUSHORT($font, $offset);
+								if ($idRangeOffset[$k] == 0) {
+									$g = $c;
+								} else {
+									$gid = (($idRangeOffset[$k] / 2) + ($c - $startCount[$k]) - ($segCount - $k));
+									$g = $glyphIdArray[$gid];
+								}
+								$g += ($idDelta[$k] - 65536);
+								if ($g < 0) {
+									$g = 0;
+								}
 								$subsetglyphs[$g] = $c;
-							} else {
-								$offset += 2;
 							}
 						}
-						break;
 					}
-					case 8: { // Format 8: Mixed 16-bit and 32-bit coverage
-						$offset += 10; // skip length and version
-						// to be implemented ...
-						break;
+					break;
+				}
+				case 6: { // Format 6: Trimmed table mapping
+					$offset += 4; // skip length and version/language
+					$firstCode = $this->_getUSHORT($font, $offset);
+					$entryCount = $this->_getUSHORT($font, $offset);
+					for ($k = 0; $k < $entryCount; ++$k) {
+						$c = ($k + $firstCode);
+						if (isset($subsetchars[$c])) {
+							$g = $this->_getUSHORT($font, $offset);
+							$subsetglyphs[$g] = $c;
+						} else {
+							$offset += 2;
+						}
 					}
-					case 10: { // Format 10: Trimmed array
-						$offset += 10; // skip length and version/language
-						$startCharCode = $this->_getULONG($font, $offset);
-						$numChars = $this->_getULONG($font, $offset);
-						for ($k = 0; $k < $numChars; ++$k) {
-							$c = ($k + $startCharCode);
-							if (isset($subsetchars[$c])) {
-								$g = $this->_getUSHORT($font, $offset);
-								$subsetglyphs[$g] = $c;
-							} else {
-								$offset += 2;
-							}
+					break;
+				}
+				case 8: { // Format 8: Mixed 16-bit and 32-bit coverage
+					$offset += 10; // skip length and version
+					// to be implemented ...
+					break;
+				}
+				case 10: { // Format 10: Trimmed array
+					$offset += 10; // skip length and version/language
+					$startCharCode = $this->_getULONG($font, $offset);
+					$numChars = $this->_getULONG($font, $offset);
+					for ($k = 0; $k < $numChars; ++$k) {
+						$c = ($k + $startCharCode);
+						if (isset($subsetchars[$c])) {
+							$g = $this->_getUSHORT($font, $offset);
+							$subsetglyphs[$g] = $c;
+						} else {
+							$offset += 2;
 						}
-						break;
 					}
-					case 12: { // Format 12: Segmented coverage
-						$offset += 10; // skip length and version/language
-						$nGroups = $this->_getULONG($font, $offset);
-						for ($k = 0; $k < $nGroups; ++$k) {
-							$startCharCode = $this->_getULONG($font, $offset);
-							$endCharCode = $this->_getULONG($font, $offset);
-							$startGlyphCode = $this->_getULONG($font, $offset);
-							for ($c = $startCharCode; $c <= $endCharCode; ++$c) {
-								if (isset($subsetchars[$c])) {
-									$subsetglyphs[$startGlyphCode] = $c;
-								}
-								++$startGlyphCode;
+					break;
+				}
+				case 12: { // Format 12: Segmented coverage
+					$offset += 10; // skip length and version/language
+					$nGroups = $this->_getULONG($font, $offset);
+					for ($k = 0; $k < $nGroups; ++$k) {
+						$startCharCode = $this->_getULONG($font, $offset);
+						$endCharCode = $this->_getULONG($font, $offset);
+						$startGlyphCode = $this->_getULONG($font, $offset);
+						for ($c = $startCharCode; $c <= $endCharCode; ++$c) {
+							if (isset($subsetchars[$c])) {
+								$subsetglyphs[$startGlyphCode] = $c;
 							}
+							++$startGlyphCode;
 						}
-						break;
 					}
+					break;
 				}
 			}
-			// sort glyphs by key
-			ksort($subsetglyphs);
-			// add composite glyps to $subsetglyphs and remove missing glyphs
-			foreach ($subsetglyphs as $key => $val) {
-				if (isset($indexToLoc[$key])) {
-					$offset = $table['glyf']['offset'] + $indexToLoc[$key];
-					$numberOfContours = $this->_getSHORT($font, $offset);
-					if ($numberOfContours < 0) { // composite glyph
-						$offset += 8; // skip xMin, yMin, xMax, yMax
-						do {
-							$flags = $this->_getUSHORT($font, $offset);
-							$glyphIndex = $this->_getUSHORT($font, $offset);
-							if (!isset($subsetglyphs[$glyphIndex]) AND isset($indexToLoc[$glyphIndex])) {
-								// add missing glyphs
-								$subsetglyphs[$glyphIndex] = true;
-							}
-							// skip some bytes by case
-							if ($flags & 1) {
-								$offset += 4;
-							} else {
-								$offset += 2;
-							}
-							if ($flags & 8) {
-								$offset += 2;
-							} elseif ($flags & 64) {
-								$offset += 4;
-							} elseif ($flags & 128) {
-								$offset += 8;
-							}
-						} while ($flags & 32);
-					}
-				} else {
-					unset($subsetglyphs[$key]);
-				}
-			}
-			// build new glyf table with only used glyphs
-			$glyf = '';
-			$glyfSize = 0;
-			// create new empty indexToLoc table
-			$newIndexToLoc = array_fill(0, count($indexToLoc), 0);
-			$goffset = 0;
-			foreach ($subsetglyphs as $glyphID => $char) {
-				if (isset($indexToLoc[$glyphID]) AND isset($indexToLoc[($glyphID + 1)])) {
-					$start = $indexToLoc[$glyphID];
-					$length = ($indexToLoc[($glyphID + 1)] - $start);
-					$glyf .= substr($font, ($table['glyf']['offset'] + $start), $length);
-					$newIndexToLoc[$glyphID] = $goffset;
-					$goffset += $length;
-				}
-			}
-			// build new loca table
-			$loca = '';
-			if ($short_offset) {
-				foreach ($newIndexToLoc as $glyphID => $offset) {
-					$loca .= pack('n', ($offset / 2));
+		}
+		// sort glyphs by key
+		ksort($subsetglyphs);
+		// add composite glyps to $subsetglyphs and remove missing glyphs
+		foreach ($subsetglyphs as $key => $val) {
+			if (isset($indexToLoc[$key])) {
+				$offset = $table['glyf']['offset'] + $indexToLoc[$key];
+				$numberOfContours = $this->_getSHORT($font, $offset);
+				if ($numberOfContours < 0) { // composite glyph
+					$offset += 8; // skip xMin, yMin, xMax, yMax
+					do {
+						$flags = $this->_getUSHORT($font, $offset);
+						$glyphIndex = $this->_getUSHORT($font, $offset);
+						if (!isset($subsetglyphs[$glyphIndex]) AND isset($indexToLoc[$glyphIndex])) {
+							// add missing glyphs
+							$subsetglyphs[$glyphIndex] = true;
+						}
+						// skip some bytes by case
+						if ($flags & 1) {
+							$offset += 4;
+						} else {
+							$offset += 2;
+						}
+						if ($flags & 8) {
+							$offset += 2;
+						} elseif ($flags & 64) {
+							$offset += 4;
+						} elseif ($flags & 128) {
+							$offset += 8;
+						}
+					} while ($flags & 32);
 				}
 			} else {
-				foreach ($newIndexToLoc as $glyphID => $offset) {
-					$loca .= pack('N', $offset);
-				}
-			}
-			// array of table names to preserve (loca and glyf tables will be added later)
-			//$table_names = array ('cmap', 'head', 'hhea', 'hmtx', 'maxp', 'name', 'OS/2', 'post', 'cvt ', 'fpgm', 'prep');
-			// the cmap table is not needed and shall not be present, since the mapping from character codes to glyph descriptions is provided separately
-			$table_names = array ('head', 'hhea', 'hmtx', 'maxp', 'cvt ', 'fpgm', 'prep'); // minimum required table names
-			// get the tables to preserve
-			$offset = 12;
-			foreach ($table as $tag => $val) {
-				if (in_array($tag, $table_names)) {
-					$table[$tag]['data'] = substr($font, $table[$tag]['offset'], $table[$tag]['length']);
-					if ($tag == 'head') {
-						// set the checkSumAdjustment to 0
-						$table[$tag]['data'] = substr($table[$tag]['data'], 0, 8)."\x0\x0\x0\x0".substr($table[$tag]['data'], 12);
-					}
-					$pad = 4 - ($table[$tag]['length'] % 4);
-					if ($pad != 4) {
-						// the length of a table must be a multiple of four bytes
-						$table[$tag]['length'] += $pad;
-						$table[$tag]['data'] .= str_repeat("\x0", $pad);
-					}
-					$table[$tag]['offset'] = $offset;
-					$offset += $table[$tag]['length'];
-					// check sum is not changed (so keep the following line commented)
-					//$table[$tag]['checkSum'] = $this->_getTTFtableChecksum($table[$tag]['data'], $table[$tag]['length']);
-				} else {
-					unset($table[$tag]);
-				}
-			}
-			// add loca
-			$table['loca']['data'] = $loca;
-			$table['loca']['length'] = strlen($loca);
-			$pad = 4 - ($table['loca']['length'] % 4);
-			if ($pad != 4) {
-				// the length of a table must be a multiple of four bytes
-				$table['loca']['length'] += $pad;
-				$table['loca']['data'] .= str_repeat("\x0", $pad);
-			}
-			$table['loca']['offset'] = $offset;
-			$table['loca']['checkSum'] = $this->_getTTFtableChecksum($table['loca']['data'], $table['loca']['length']);
-			$offset += $table['loca']['length'];
-			// add glyf
-			$table['glyf']['data'] = $glyf;
-			$table['glyf']['length'] = strlen($glyf);
-			$pad = 4 - ($table['glyf']['length'] % 4);
-			if ($pad != 4) {
-				// the length of a table must be a multiple of four bytes
-				$table['glyf']['length'] += $pad;
-				$table['glyf']['data'] .= str_repeat("\x0", $pad);
-			}
-			$table['glyf']['offset'] = $offset;
-			$table['glyf']['checkSum'] = $this->_getTTFtableChecksum($table['glyf']['data'], $table['glyf']['length']);
-			// rebuild font
-			$font = '';
-			$font .= pack('N', 0x10000); // sfnt version
-			$numTables = count($table);
-			$font .= pack('n', $numTables); // numTables
-			$entrySelector = floor(log($numTables, 2));
-			$searchRange = pow(2, $entrySelector) * 16;
-			$rangeShift = ($numTables * 16) - $searchRange;
-			$font .= pack('n', $searchRange); // searchRange
-			$font .= pack('n', $entrySelector); // entrySelector
-			$font .= pack('n', $rangeShift); // rangeShift
-			$offset = ($numTables * 16);
-			foreach ($table as $tag => $data) {
-				$font .= $tag; // tag
-				$font .= pack('N', $data['checkSum']); // checkSum
-				$font .= pack('N', ($data['offset'] + $offset)); // offset
-				$font .= pack('N', $data['length']); // length
-			}
-			foreach ($table as $data) {
-				$font .= $data['data'];
-			}
-			// set checkSumAdjustment on head table
-			$checkSumAdjustment = 0xB1B0AFBA - $this->_getTTFtableChecksum($font, strlen($font));
-			$font = substr($font, 0, $table['head']['offset'] + 8).pack('N', $checkSumAdjustment).substr($font, $table['head']['offset'] + 12);
-			return $font;
+				unset($subsetglyphs[$key]);
+			}
+		}
+		// build new glyf table with only used glyphs
+		$glyf = '';
+		$glyfSize = 0;
+		// create new empty indexToLoc table
+		$newIndexToLoc = array_fill(0, count($indexToLoc), 0);
+		$goffset = 0;
+		foreach ($subsetglyphs as $glyphID => $char) {
+			if (isset($indexToLoc[$glyphID]) AND isset($indexToLoc[($glyphID + 1)])) {
+				$start = $indexToLoc[$glyphID];
+				$length = ($indexToLoc[($glyphID + 1)] - $start);
+				$glyf .= substr($font, ($table['glyf']['offset'] + $start), $length);
+				$newIndexToLoc[$glyphID] = $goffset;
+				$goffset += $length;
+			}
+		}
+		// build new loca table
+		$loca = '';
+		if ($short_offset) {
+			foreach ($newIndexToLoc as $glyphID => $offset) {
+				$loca .= pack('n', ($offset / 2));
+			}
+		} else {
+			foreach ($newIndexToLoc as $glyphID => $offset) {
+				$loca .= pack('N', $offset);
+			}
+		}
+		// array of table names to preserve (loca and glyf tables will be added later)
+		//$table_names = array ('cmap', 'head', 'hhea', 'hmtx', 'maxp', 'name', 'OS/2', 'post', 'cvt ', 'fpgm', 'prep');
+		// the cmap table is not needed and shall not be present, since the mapping from character codes to glyph descriptions is provided separately
+		$table_names = array ('head', 'hhea', 'hmtx', 'maxp', 'cvt ', 'fpgm', 'prep'); // minimum required table names
+		// get the tables to preserve
+		$offset = 12;
+		foreach ($table as $tag => $val) {
+			if (in_array($tag, $table_names)) {
+				$table[$tag]['data'] = substr($font, $table[$tag]['offset'], $table[$tag]['length']);
+				if ($tag == 'head') {
+					// set the checkSumAdjustment to 0
+					$table[$tag]['data'] = substr($table[$tag]['data'], 0, 8)."\x0\x0\x0\x0".substr($table[$tag]['data'], 12);
+				}
+				$pad = 4 - ($table[$tag]['length'] % 4);
+				if ($pad != 4) {
+					// the length of a table must be a multiple of four bytes
+					$table[$tag]['length'] += $pad;
+					$table[$tag]['data'] .= str_repeat("\x0", $pad);
+				}
+				$table[$tag]['offset'] = $offset;
+				$offset += $table[$tag]['length'];
+				// check sum is not changed (so keep the following line commented)
+				//$table[$tag]['checkSum'] = $this->_getTTFtableChecksum($table[$tag]['data'], $table[$tag]['length']);
+			} else {
+				unset($table[$tag]);
+			}
+		}
+		// add loca
+		$table['loca']['data'] = $loca;
+		$table['loca']['length'] = strlen($loca);
+		$pad = 4 - ($table['loca']['length'] % 4);
+		if ($pad != 4) {
+			// the length of a table must be a multiple of four bytes
+			$table['loca']['length'] += $pad;
+			$table['loca']['data'] .= str_repeat("\x0", $pad);
+		}
+		$table['loca']['offset'] = $offset;
+		$table['loca']['checkSum'] = $this->_getTTFtableChecksum($table['loca']['data'], $table['loca']['length']);
+		$offset += $table['loca']['length'];
+		// add glyf
+		$table['glyf']['data'] = $glyf;
+		$table['glyf']['length'] = strlen($glyf);
+		$pad = 4 - ($table['glyf']['length'] % 4);
+		if ($pad != 4) {
+			// the length of a table must be a multiple of four bytes
+			$table['glyf']['length'] += $pad;
+			$table['glyf']['data'] .= str_repeat("\x0", $pad);
+		}
+		$table['glyf']['offset'] = $offset;
+		$table['glyf']['checkSum'] = $this->_getTTFtableChecksum($table['glyf']['data'], $table['glyf']['length']);
+		// rebuild font
+		$font = '';
+		$font .= pack('N', 0x10000); // sfnt version
+		$numTables = count($table);
+		$font .= pack('n', $numTables); // numTables
+		$entrySelector = floor(log($numTables, 2));
+		$searchRange = pow(2, $entrySelector) * 16;
+		$rangeShift = ($numTables * 16) - $searchRange;
+		$font .= pack('n', $searchRange); // searchRange
+		$font .= pack('n', $entrySelector); // entrySelector
+		$font .= pack('n', $rangeShift); // rangeShift
+		$offset = ($numTables * 16);
+		foreach ($table as $tag => $data) {
+			$font .= $tag; // tag
+			$font .= pack('N', $data['checkSum']); // checkSum
+			$font .= pack('N', ($data['offset'] + $offset)); // offset
+			$font .= pack('N', $data['length']); // length
+		}
+		foreach ($table as $data) {
+			$font .= $data['data'];
+		}
+		// set checkSumAdjustment on head table
+		$checkSumAdjustment = 0xB1B0AFBA - $this->_getTTFtableChecksum($font, strlen($font));
+		$font = substr($font, 0, $table['head']['offset'] + 8).pack('N', $checkSumAdjustment).substr($font, $table['head']['offset'] + 12);
+		return $font;
+	}
+
+	/**
+	 * Returs the checksum of a TTF table.
+	 * @param $table (string) table to check
+	 * @param $length (int) lenght of table in bytes
+	 * @return int checksum
+	 * @author Nicola Asuni
+	 * @protected
+	 * @since 5.2.000 (2010-06-02)
+	 */
+	protected function _getTTFtableChecksum($table, $length) {
+		$sum = 0;
+		$tlen = ($length / 4);
+		$offset = 0;
+		for ($i = 0; $i < $tlen; ++$i) {
+			$v = unpack('Ni', substr($table, $offset, 4));
+			$sum += $v['i'];
+			$offset += 4;
 		}
+		$sum = unpack('Ni', pack('N', $sum));
+		return $sum['i'];
+	}
 
-		/**
-		 * Returs the checksum of a TTF table.
-		 * @param string $table table to check
-		 * @param int $length lenght of table in bytes
-		 * @return int checksum
-		 * @author Nicola Asuni
-		 * @access protected
-		 * @since 5.2.000 (2010-06-02)
-		 */
-		protected function _getTTFtableChecksum($table, $length) {
-			$sum = 0;
-			$tlen = ($length / 4);
-			$offset = 0;
-			for ($i = 0; $i < $tlen; ++$i) {
-				$v = unpack('Ni', substr($table, $offset, 4));
-				$sum += $v['i'];
-				$offset += 4;
-			}
-			$sum = unpack('Ni', pack('N', $sum));
-			return $sum['i'];
-		}
-
-		/**
-		 * Outputs font widths
-		 * @param array $font font data
-		 * @param int $cidoffset offset for CID values
-		 * @return PDF command string for font widths
-		 * @author Nicola Asuni
-		 * @access protected
-		 * @since 4.4.000 (2008-12-07)
-		 */
-		protected function _putfontwidths($font, $cidoffset=0) {
-			ksort($font['cw']);
-			$rangeid = 0;
-			$range = array();
-			$prevcid = -2;
-			$prevwidth = -1;
-			$interval = false;
-			// for each character
-			foreach ($font['cw'] as $cid => $width) {
-				$cid -= $cidoffset;
-				if ($font['subset'] AND ($cid > 255) AND (!isset($font['subsetchars'][$cid]))) {
-					// ignore the unused characters (font subsetting)
-					continue;
-				}
-				if ($width != $font['dw']) {
-					if ($cid == ($prevcid + 1)) {
-						// consecutive CID
-						if ($width == $prevwidth) {
-							if ($width == $range[$rangeid][0]) {
-								$range[$rangeid][] = $width;
-							} else {
-								array_pop($range[$rangeid]);
-								// new range
-								$rangeid = $prevcid;
-								$range[$rangeid] = array();
-								$range[$rangeid][] = $prevwidth;
-								$range[$rangeid][] = $width;
-							}
-							$interval = true;
-							$range[$rangeid]['interval'] = true;
+	/**
+	 * Outputs font widths
+	 * @param $font (array) font data
+	 * @param $cidoffset (int) offset for CID values
+	 * @return PDF command string for font widths
+	 * @author Nicola Asuni
+	 * @protected
+	 * @since 4.4.000 (2008-12-07)
+	 */
+	protected function _putfontwidths($font, $cidoffset=0) {
+		ksort($font['cw']);
+		$rangeid = 0;
+		$range = array();
+		$prevcid = -2;
+		$prevwidth = -1;
+		$interval = false;
+		// for each character
+		foreach ($font['cw'] as $cid => $width) {
+			$cid -= $cidoffset;
+			if ($font['subset'] AND ($cid > 255) AND (!isset($font['subsetchars'][$cid]))) {
+				// ignore the unused characters (font subsetting)
+				continue;
+			}
+			if ($width != $font['dw']) {
+				if ($cid == ($prevcid + 1)) {
+					// consecutive CID
+					if ($width == $prevwidth) {
+						if ($width == $range[$rangeid][0]) {
+							$range[$rangeid][] = $width;
 						} else {
-							if ($interval) {
-								// new range
-								$rangeid = $cid;
-								$range[$rangeid] = array();
-								$range[$rangeid][] = $width;
-							} else {
-								$range[$rangeid][] = $width;
-							}
-							$interval = false;
-						}
+							array_pop($range[$rangeid]);
+							// new range
+							$rangeid = $prevcid;
+							$range[$rangeid] = array();
+							$range[$rangeid][] = $prevwidth;
+							$range[$rangeid][] = $width;
+						}
+						$interval = true;
+						$range[$rangeid]['interval'] = true;
 					} else {
-						// new range
-						$rangeid = $cid;
-						$range[$rangeid] = array();
-						$range[$rangeid][] = $width;
+						if ($interval) {
+							// new range
+							$rangeid = $cid;
+							$range[$rangeid] = array();
+							$range[$rangeid][] = $width;
+						} else {
+							$range[$rangeid][] = $width;
+						}
 						$interval = false;
 					}
-					$prevcid = $cid;
-					$prevwidth = $width;
-				}
-			}
-			// optimize ranges
-			$prevk = -1;
-			$nextk = -1;
-			$prevint = false;
-			foreach ($range as $k => $ws) {
-				$cws = count($ws);
-				if (($k == $nextk) AND (!$prevint) AND ((!isset($ws['interval'])) OR ($cws < 4))) {
-					if (isset($range[$k]['interval'])) {
-						unset($range[$k]['interval']);
-					}
-					$range[$prevk] = array_merge($range[$prevk], $range[$k]);
-					unset($range[$k]);
 				} else {
-					$prevk = $k;
-				}
-				$nextk = $k + $cws;
-				if (isset($ws['interval'])) {
-					if ($cws > 3) {
-						$prevint = true;
-					} else {
-						$prevint = false;
-					}
+					// new range
+					$rangeid = $cid;
+					$range[$rangeid] = array();
+					$range[$rangeid][] = $width;
+					$interval = false;
+				}
+				$prevcid = $cid;
+				$prevwidth = $width;
+			}
+		}
+		// optimize ranges
+		$prevk = -1;
+		$nextk = -1;
+		$prevint = false;
+		foreach ($range as $k => $ws) {
+			$cws = count($ws);
+			if (($k == $nextk) AND (!$prevint) AND ((!isset($ws['interval'])) OR ($cws < 4))) {
+				if (isset($range[$k]['interval'])) {
 					unset($range[$k]['interval']);
-					--$nextk;
-				} else {
-					$prevint = false;
 				}
+				$range[$prevk] = array_merge($range[$prevk], $range[$k]);
+				unset($range[$k]);
+			} else {
+				$prevk = $k;
 			}
-			// output data
-			$w = '';
-			foreach ($range as $k => $ws) {
-				if (count(array_count_values($ws)) == 1) {
-					// interval mode is more compact
-					$w .= ' '.$k.' '.($k + count($ws) - 1).' '.$ws[0];
+			$nextk = $k + $cws;
+			if (isset($ws['interval'])) {
+				if ($cws > 3) {
+					$prevint = true;
 				} else {
-					// range mode
-					$w .= ' '.$k.' [ '.implode(' ', $ws).' ]';
+					$prevint = false;
 				}
+				unset($range[$k]['interval']);
+				--$nextk;
+			} else {
+				$prevint = false;
+			}
+		}
+		// output data
+		$w = '';
+		foreach ($range as $k => $ws) {
+			if (count(array_count_values($ws)) == 1) {
+				// interval mode is more compact
+				$w .= ' '.$k.' '.($k + count($ws) - 1).' '.$ws[0];
+			} else {
+				// range mode
+				$w .= ' '.$k.' [ '.implode(' ', $ws).' ]';
 			}
-			return '/W ['.$w.' ]';
 		}
+		return '/W ['.$w.' ]';
+	}
 
-		/**
-		 * Output fonts.
-		 * @author Nicola Asuni
-		 * @access protected
-		 */
-		protected function _putfonts() {
-			$nf = $this->n;
-			foreach ($this->diffs as $diff) {
-				//Encodings
-				$this->_newobj();
-				$this->_out('<< /Type /Encoding /BaseEncoding /WinAnsiEncoding /Differences ['.$diff.'] >>'."\n".'endobj');
+	/**
+	 * Output fonts.
+	 * @author Nicola Asuni
+	 * @protected
+	 */
+	protected function _putfonts() {
+		$nf = $this->n;
+		foreach ($this->diffs as $diff) {
+			//Encodings
+			$this->_newobj();
+			$this->_out('<< /Type /Encoding /BaseEncoding /WinAnsiEncoding /Differences ['.$diff.'] >>'."\n".'endobj');
+		}
+		$mqr = $this->get_mqr();
+		$this->set_mqr(false);
+		foreach ($this->FontFiles as $file => $info) {
+			// search and get font file to embedd
+			$fontdir = $info['fontdir'];
+			$file = strtolower($file);
+			$fontfile = '';
+			// search files on various directories
+			if (($fontdir !== false) AND file_exists($fontdir.$file)) {
+				$fontfile = $fontdir.$file;
+			} elseif (file_exists($this->_getfontpath().$file)) {
+				$fontfile = $this->_getfontpath().$file;
+			} elseif (file_exists($file)) {
+				$fontfile = $file;
 			}
-			$mqr = $this->get_mqr();
-			$this->set_mqr(false);
-			foreach ($this->FontFiles as $file => $info) {
-				// search and get font file to embedd
-				$fontdir = $info['fontdir'];
-				$file = strtolower($file);
-				$fontfile = '';
-				// search files on various directories
-				if (($fontdir !== false) AND file_exists($fontdir.$file)) {
-					$fontfile = $fontdir.$file;
-				} elseif (file_exists($this->_getfontpath().$file)) {
-					$fontfile = $this->_getfontpath().$file;
-				} elseif (file_exists($file)) {
-					$fontfile = $file;
-				}
-				if (!$this->empty_string($fontfile)) {
-					$font = file_get_contents($fontfile);
-					$compressed = (substr($file, -2) == '.z');
-					if ((!$compressed) AND (isset($info['length2']))) {
-						$header = (ord($font{0}) == 128);
-						if ($header) {
-							//Strip first binary header
-							$font = substr($font, 6);
-						}
-						if ($header AND (ord($font{$info['length1']}) == 128)) {
-							//Strip second binary header
-							$font = substr($font, 0, $info['length1']).substr($font, ($info['length1'] + 6));
-						}
-					} elseif ($info['subset'] AND ((!$compressed) OR ($compressed AND function_exists('gzcompress')))) {
-						if ($compressed) {
-							// uncompress font
-							$font = gzuncompress($font);
-						}
-						// merge subset characters
-						$subsetchars = array(); // used chars
-						foreach ($info['fontkeys'] as $fontkey) {
-							$fontinfo = $this->getFontBuffer($fontkey);
-							$subsetchars += $fontinfo['subsetchars'];
-						}
-						$font = $this->_getTrueTypeFontSubset($font, $subsetchars);
-						if ($compressed) {
-							// recompress font
-							$font = gzcompress($font);
-						}
-					}
-					$this->_newobj();
-					$this->FontFiles[$file]['n'] = $this->n;
-					$stream = $this->_getrawstream($font);
-					$out = '<< /Length '.strlen($stream);
+			if (!$this->empty_string($fontfile)) {
+				$font = file_get_contents($fontfile);
+				$compressed = (substr($file, -2) == '.z');
+				if ((!$compressed) AND (isset($info['length2']))) {
+					$header = (ord($font{0}) == 128);
+					if ($header) {
+						//Strip first binary header
+						$font = substr($font, 6);
+					}
+					if ($header AND (ord($font{$info['length1']}) == 128)) {
+						//Strip second binary header
+						$font = substr($font, 0, $info['length1']).substr($font, ($info['length1'] + 6));
+					}
+				} elseif ($info['subset'] AND ((!$compressed) OR ($compressed AND function_exists('gzcompress')))) {
 					if ($compressed) {
-						$out .= ' /Filter /FlateDecode';
-					}
-					$out .= ' /Length1 '.$info['length1'];
-					if (isset($info['length2'])) {
-						$out .= ' /Length2 '.$info['length2'].' /Length3 0';
-					}
-					$out .= ' >>';
-					$out .= ' stream'."\n".$stream."\n".'endstream';
-					$out .= "\n".'endobj';
-					$this->_out($out);
-				}
-			}
-			$this->set_mqr($mqr);
-			foreach ($this->fontkeys as $k) {
-				//Font objects
-				$this->setFontSubBuffer($k, 'n', $this->n + 1);
-				$font = $this->getFontBuffer($k);
-				$type = $font['type'];
-				$name = $font['name'];
-				if ($type == 'core') {
-					// standard core font
-					$obj_id = $this->_newobj();
-					$out = '<</Type /Font';
-					$out .= ' /Subtype /Type1';
-					$out .= ' /BaseFont /'.$name;
-					$out .= ' /Name /F'.$font['i'];
-					if ((strtolower($name) != 'symbol') AND (strtolower($name) != 'zapfdingbats')) {
-						$out .= ' /Encoding /WinAnsiEncoding';
-					}
-					if (strtolower($name) == 'helvetica') {
-						// add default font for annotations
-						$this->annotation_fonts['helvetica'] = $k;
+						// uncompress font
+						$font = gzuncompress($font);
 					}
-					$out .= ' >>';
-					$out .= "\n".'endobj';
-					$this->_out($out);
-				} elseif (($type == 'Type1') OR ($type == 'TrueType')) {
-					// additional Type1 or TrueType font
-					$obj_id = $this->_newobj();
-					$out = '<</Type /Font';
-					$out .= ' /Subtype /'.$type;
-					$out .= ' /BaseFont /'.$name;
-					$out .= ' /Name /F'.$font['i'];
-					$out .= ' /FirstChar 32 /LastChar 255';
-					$out .= ' /Widths '.($this->n + 1).' 0 R';
-					$out .= ' /FontDescriptor '.($this->n + 2).' 0 R';
-					if ($font['enc']) {
-						if (isset($font['diff'])) {
-							$out .= ' /Encoding '.($nf + $font['diff']).' 0 R';
-						} else {
-							$out .= ' /Encoding /WinAnsiEncoding';
-						}
-					}
-					$out .= ' >>';
-					$out .= "\n".'endobj';
-					$this->_out($out);
-					// Widths
-					$this->_newobj();
-					$cw = &$font['cw'];
-					$s = '[';
-					for ($i = 32; $i < 256; ++$i) {
-						$s .= $cw[$i].' ';
-					}
-					$s .= ']';
-					$s .= "\n".'endobj';
-					$this->_out($s);
-					//Descriptor
-					$this->_newobj();
-					$s = '<</Type /FontDescriptor /FontName /'.$name;
-					foreach ($font['desc'] as $fdk => $fdv) {
-						if(is_float($fdv)) {
-							$fdv = sprintf('%.3F', $fdv);
-						}
-						$s .= ' /'.$fdk.' '.$fdv.'';
+					// merge subset characters
+					$subsetchars = array(); // used chars
+					foreach ($info['fontkeys'] as $fontkey) {
+						$fontinfo = $this->getFontBuffer($fontkey);
+						$subsetchars += $fontinfo['subsetchars'];
 					}
-					if (!$this->empty_string($font['file'])) {
-						$s .= ' /FontFile'.($type == 'Type1' ? '' : '2').' '.$this->FontFiles[$font['file']]['n'].' 0 R';
+					$font = $this->_getTrueTypeFontSubset($font, $subsetchars);
+					if ($compressed) {
+						// recompress font
+						$font = gzcompress($font);
 					}
-					$s .= '>>';
-					$s .= "\n".'endobj';
-					$this->_out($s);
-				} else {
-					// additional types
-					$mtd = '_put'.strtolower($type);
-					if (!method_exists($this, $mtd)) {
-						$this->Error('Unsupported font type: '.$type);
-					}
-					$obj_id = $this->$mtd($font);
-				}
-				// store object ID for current font
-				$this->font_obj_ids[$k] = $obj_id;
-			}
-		}
-
-		/**
-		 * Adds unicode fonts.<br>
-		 * Based on PDF Reference 1.3 (section 5)
-		 * @param array $font font data
-		 * @return int font object ID
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 1.52.0.TC005 (2005-01-05)
-		 */
-		protected function _puttruetypeunicode($font) {
-			$fontname = '';
-			if ($font['subset']) {
-				// change name for font subsetting
-				$subtag = sprintf('%06u', $font['i']);
-				$subtag = strtr($subtag, '0123456789', 'ABCDEFGHIJ');
-				$fontname .= $subtag.'+';
-			}
-			$fontname .= $font['name'];
-			// Type0 Font
-			// A composite font composed of other fonts, organized hierarchically
-			$obj_id = $this->_newobj();
-			$out = '<< /Type /Font';
-			$out .= ' /Subtype /Type0';
-			$out .= ' /BaseFont /'.$fontname;
-			$out .= ' /Name /F'.$font['i'];
-			$out .= ' /Encoding /'.$font['enc'];
-			$out .= ' /ToUnicode '.($this->n + 1).' 0 R';
-			$out .= ' /DescendantFonts ['.($this->n + 2).' 0 R]';
-			$out .= ' >>';
-			$out .= "\n".'endobj';
-			$this->_out($out);
-			// ToUnicode map for Identity-H
-			$stream = "/CIDInit /ProcSet findresource begin\n";
-			$stream .= "12 dict begin\n";
-			$stream .= "begincmap\n";
-			$stream .= "/CIDSystemInfo << /Registry (Adobe) /Ordering (UCS) /Supplement 0 >> def\n";
-			$stream .= "/CMapName /Adobe-Identity-UCS def\n";
-			$stream .= "/CMapType 2 def\n";
-			$stream .= "/WMode 0 def\n";
-			$stream .= "1 begincodespacerange\n";
-			$stream .= "<0000> <FFFF>\n";
-			$stream .= "endcodespacerange\n";
-			$stream .= "100 beginbfrange\n";
-			$stream .= "<0000> <00ff> <0000>\n";
-			$stream .= "<0100> <01ff> <0100>\n";
-			$stream .= "<0200> <02ff> <0200>\n";
-			$stream .= "<0300> <03ff> <0300>\n";
-			$stream .= "<0400> <04ff> <0400>\n";
-			$stream .= "<0500> <05ff> <0500>\n";
-			$stream .= "<0600> <06ff> <0600>\n";
-			$stream .= "<0700> <07ff> <0700>\n";
-			$stream .= "<0800> <08ff> <0800>\n";
-			$stream .= "<0900> <09ff> <0900>\n";
-			$stream .= "<0a00> <0aff> <0a00>\n";
-			$stream .= "<0b00> <0bff> <0b00>\n";
-			$stream .= "<0c00> <0cff> <0c00>\n";
-			$stream .= "<0d00> <0dff> <0d00>\n";
-			$stream .= "<0e00> <0eff> <0e00>\n";
-			$stream .= "<0f00> <0fff> <0f00>\n";
-			$stream .= "<1000> <10ff> <1000>\n";
-			$stream .= "<1100> <11ff> <1100>\n";
-			$stream .= "<1200> <12ff> <1200>\n";
-			$stream .= "<1300> <13ff> <1300>\n";
-			$stream .= "<1400> <14ff> <1400>\n";
-			$stream .= "<1500> <15ff> <1500>\n";
-			$stream .= "<1600> <16ff> <1600>\n";
-			$stream .= "<1700> <17ff> <1700>\n";
-			$stream .= "<1800> <18ff> <1800>\n";
-			$stream .= "<1900> <19ff> <1900>\n";
-			$stream .= "<1a00> <1aff> <1a00>\n";
-			$stream .= "<1b00> <1bff> <1b00>\n";
-			$stream .= "<1c00> <1cff> <1c00>\n";
-			$stream .= "<1d00> <1dff> <1d00>\n";
-			$stream .= "<1e00> <1eff> <1e00>\n";
-			$stream .= "<1f00> <1fff> <1f00>\n";
-			$stream .= "<2000> <20ff> <2000>\n";
-			$stream .= "<2100> <21ff> <2100>\n";
-			$stream .= "<2200> <22ff> <2200>\n";
-			$stream .= "<2300> <23ff> <2300>\n";
-			$stream .= "<2400> <24ff> <2400>\n";
-			$stream .= "<2500> <25ff> <2500>\n";
-			$stream .= "<2600> <26ff> <2600>\n";
-			$stream .= "<2700> <27ff> <2700>\n";
-			$stream .= "<2800> <28ff> <2800>\n";
-			$stream .= "<2900> <29ff> <2900>\n";
-			$stream .= "<2a00> <2aff> <2a00>\n";
-			$stream .= "<2b00> <2bff> <2b00>\n";
-			$stream .= "<2c00> <2cff> <2c00>\n";
-			$stream .= "<2d00> <2dff> <2d00>\n";
-			$stream .= "<2e00> <2eff> <2e00>\n";
-			$stream .= "<2f00> <2fff> <2f00>\n";
-			$stream .= "<3000> <30ff> <3000>\n";
-			$stream .= "<3100> <31ff> <3100>\n";
-			$stream .= "<3200> <32ff> <3200>\n";
-			$stream .= "<3300> <33ff> <3300>\n";
-			$stream .= "<3400> <34ff> <3400>\n";
-			$stream .= "<3500> <35ff> <3500>\n";
-			$stream .= "<3600> <36ff> <3600>\n";
-			$stream .= "<3700> <37ff> <3700>\n";
-			$stream .= "<3800> <38ff> <3800>\n";
-			$stream .= "<3900> <39ff> <3900>\n";
-			$stream .= "<3a00> <3aff> <3a00>\n";
-			$stream .= "<3b00> <3bff> <3b00>\n";
-			$stream .= "<3c00> <3cff> <3c00>\n";
-			$stream .= "<3d00> <3dff> <3d00>\n";
-			$stream .= "<3e00> <3eff> <3e00>\n";
-			$stream .= "<3f00> <3fff> <3f00>\n";
-			$stream .= "<4000> <40ff> <4000>\n";
-			$stream .= "<4100> <41ff> <4100>\n";
-			$stream .= "<4200> <42ff> <4200>\n";
-			$stream .= "<4300> <43ff> <4300>\n";
-			$stream .= "<4400> <44ff> <4400>\n";
-			$stream .= "<4500> <45ff> <4500>\n";
-			$stream .= "<4600> <46ff> <4600>\n";
-			$stream .= "<4700> <47ff> <4700>\n";
-			$stream .= "<4800> <48ff> <4800>\n";
-			$stream .= "<4900> <49ff> <4900>\n";
-			$stream .= "<4a00> <4aff> <4a00>\n";
-			$stream .= "<4b00> <4bff> <4b00>\n";
-			$stream .= "<4c00> <4cff> <4c00>\n";
-			$stream .= "<4d00> <4dff> <4d00>\n";
-			$stream .= "<4e00> <4eff> <4e00>\n";
-			$stream .= "<4f00> <4fff> <4f00>\n";
-			$stream .= "<5000> <50ff> <5000>\n";
-			$stream .= "<5100> <51ff> <5100>\n";
-			$stream .= "<5200> <52ff> <5200>\n";
-			$stream .= "<5300> <53ff> <5300>\n";
-			$stream .= "<5400> <54ff> <5400>\n";
-			$stream .= "<5500> <55ff> <5500>\n";
-			$stream .= "<5600> <56ff> <5600>\n";
-			$stream .= "<5700> <57ff> <5700>\n";
-			$stream .= "<5800> <58ff> <5800>\n";
-			$stream .= "<5900> <59ff> <5900>\n";
-			$stream .= "<5a00> <5aff> <5a00>\n";
-			$stream .= "<5b00> <5bff> <5b00>\n";
-			$stream .= "<5c00> <5cff> <5c00>\n";
-			$stream .= "<5d00> <5dff> <5d00>\n";
-			$stream .= "<5e00> <5eff> <5e00>\n";
-			$stream .= "<5f00> <5fff> <5f00>\n";
-			$stream .= "<6000> <60ff> <6000>\n";
-			$stream .= "<6100> <61ff> <6100>\n";
-			$stream .= "<6200> <62ff> <6200>\n";
-			$stream .= "<6300> <63ff> <6300>\n";
-			$stream .= "endbfrange\n";
-			$stream .= "100 beginbfrange\n";
-			$stream .= "<6400> <64ff> <6400>\n";
-			$stream .= "<6500> <65ff> <6500>\n";
-			$stream .= "<6600> <66ff> <6600>\n";
-			$stream .= "<6700> <67ff> <6700>\n";
-			$stream .= "<6800> <68ff> <6800>\n";
-			$stream .= "<6900> <69ff> <6900>\n";
-			$stream .= "<6a00> <6aff> <6a00>\n";
-			$stream .= "<6b00> <6bff> <6b00>\n";
-			$stream .= "<6c00> <6cff> <6c00>\n";
-			$stream .= "<6d00> <6dff> <6d00>\n";
-			$stream .= "<6e00> <6eff> <6e00>\n";
-			$stream .= "<6f00> <6fff> <6f00>\n";
-			$stream .= "<7000> <70ff> <7000>\n";
-			$stream .= "<7100> <71ff> <7100>\n";
-			$stream .= "<7200> <72ff> <7200>\n";
-			$stream .= "<7300> <73ff> <7300>\n";
-			$stream .= "<7400> <74ff> <7400>\n";
-			$stream .= "<7500> <75ff> <7500>\n";
-			$stream .= "<7600> <76ff> <7600>\n";
-			$stream .= "<7700> <77ff> <7700>\n";
-			$stream .= "<7800> <78ff> <7800>\n";
-			$stream .= "<7900> <79ff> <7900>\n";
-			$stream .= "<7a00> <7aff> <7a00>\n";
-			$stream .= "<7b00> <7bff> <7b00>\n";
-			$stream .= "<7c00> <7cff> <7c00>\n";
-			$stream .= "<7d00> <7dff> <7d00>\n";
-			$stream .= "<7e00> <7eff> <7e00>\n";
-			$stream .= "<7f00> <7fff> <7f00>\n";
-			$stream .= "<8000> <80ff> <8000>\n";
-			$stream .= "<8100> <81ff> <8100>\n";
-			$stream .= "<8200> <82ff> <8200>\n";
-			$stream .= "<8300> <83ff> <8300>\n";
-			$stream .= "<8400> <84ff> <8400>\n";
-			$stream .= "<8500> <85ff> <8500>\n";
-			$stream .= "<8600> <86ff> <8600>\n";
-			$stream .= "<8700> <87ff> <8700>\n";
-			$stream .= "<8800> <88ff> <8800>\n";
-			$stream .= "<8900> <89ff> <8900>\n";
-			$stream .= "<8a00> <8aff> <8a00>\n";
-			$stream .= "<8b00> <8bff> <8b00>\n";
-			$stream .= "<8c00> <8cff> <8c00>\n";
-			$stream .= "<8d00> <8dff> <8d00>\n";
-			$stream .= "<8e00> <8eff> <8e00>\n";
-			$stream .= "<8f00> <8fff> <8f00>\n";
-			$stream .= "<9000> <90ff> <9000>\n";
-			$stream .= "<9100> <91ff> <9100>\n";
-			$stream .= "<9200> <92ff> <9200>\n";
-			$stream .= "<9300> <93ff> <9300>\n";
-			$stream .= "<9400> <94ff> <9400>\n";
-			$stream .= "<9500> <95ff> <9500>\n";
-			$stream .= "<9600> <96ff> <9600>\n";
-			$stream .= "<9700> <97ff> <9700>\n";
-			$stream .= "<9800> <98ff> <9800>\n";
-			$stream .= "<9900> <99ff> <9900>\n";
-			$stream .= "<9a00> <9aff> <9a00>\n";
-			$stream .= "<9b00> <9bff> <9b00>\n";
-			$stream .= "<9c00> <9cff> <9c00>\n";
-			$stream .= "<9d00> <9dff> <9d00>\n";
-			$stream .= "<9e00> <9eff> <9e00>\n";
-			$stream .= "<9f00> <9fff> <9f00>\n";
-			$stream .= "<a000> <a0ff> <a000>\n";
-			$stream .= "<a100> <a1ff> <a100>\n";
-			$stream .= "<a200> <a2ff> <a200>\n";
-			$stream .= "<a300> <a3ff> <a300>\n";
-			$stream .= "<a400> <a4ff> <a400>\n";
-			$stream .= "<a500> <a5ff> <a500>\n";
-			$stream .= "<a600> <a6ff> <a600>\n";
-			$stream .= "<a700> <a7ff> <a700>\n";
-			$stream .= "<a800> <a8ff> <a800>\n";
-			$stream .= "<a900> <a9ff> <a900>\n";
-			$stream .= "<aa00> <aaff> <aa00>\n";
-			$stream .= "<ab00> <abff> <ab00>\n";
-			$stream .= "<ac00> <acff> <ac00>\n";
-			$stream .= "<ad00> <adff> <ad00>\n";
-			$stream .= "<ae00> <aeff> <ae00>\n";
-			$stream .= "<af00> <afff> <af00>\n";
-			$stream .= "<b000> <b0ff> <b000>\n";
-			$stream .= "<b100> <b1ff> <b100>\n";
-			$stream .= "<b200> <b2ff> <b200>\n";
-			$stream .= "<b300> <b3ff> <b300>\n";
-			$stream .= "<b400> <b4ff> <b400>\n";
-			$stream .= "<b500> <b5ff> <b500>\n";
-			$stream .= "<b600> <b6ff> <b600>\n";
-			$stream .= "<b700> <b7ff> <b700>\n";
-			$stream .= "<b800> <b8ff> <b800>\n";
-			$stream .= "<b900> <b9ff> <b900>\n";
-			$stream .= "<ba00> <baff> <ba00>\n";
-			$stream .= "<bb00> <bbff> <bb00>\n";
-			$stream .= "<bc00> <bcff> <bc00>\n";
-			$stream .= "<bd00> <bdff> <bd00>\n";
-			$stream .= "<be00> <beff> <be00>\n";
-			$stream .= "<bf00> <bfff> <bf00>\n";
-			$stream .= "<c000> <c0ff> <c000>\n";
-			$stream .= "<c100> <c1ff> <c100>\n";
-			$stream .= "<c200> <c2ff> <c200>\n";
-			$stream .= "<c300> <c3ff> <c300>\n";
-			$stream .= "<c400> <c4ff> <c400>\n";
-			$stream .= "<c500> <c5ff> <c500>\n";
-			$stream .= "<c600> <c6ff> <c600>\n";
-			$stream .= "<c700> <c7ff> <c700>\n";
-			$stream .= "endbfrange\n";
-			$stream .= "56 beginbfrange\n";
-			$stream .= "<c800> <c8ff> <c800>\n";
-			$stream .= "<c900> <c9ff> <c900>\n";
-			$stream .= "<ca00> <caff> <ca00>\n";
-			$stream .= "<cb00> <cbff> <cb00>\n";
-			$stream .= "<cc00> <ccff> <cc00>\n";
-			$stream .= "<cd00> <cdff> <cd00>\n";
-			$stream .= "<ce00> <ceff> <ce00>\n";
-			$stream .= "<cf00> <cfff> <cf00>\n";
-			$stream .= "<d000> <d0ff> <d000>\n";
-			$stream .= "<d100> <d1ff> <d100>\n";
-			$stream .= "<d200> <d2ff> <d200>\n";
-			$stream .= "<d300> <d3ff> <d300>\n";
-			$stream .= "<d400> <d4ff> <d400>\n";
-			$stream .= "<d500> <d5ff> <d500>\n";
-			$stream .= "<d600> <d6ff> <d600>\n";
-			$stream .= "<d700> <d7ff> <d700>\n";
-			$stream .= "<d800> <d8ff> <d800>\n";
-			$stream .= "<d900> <d9ff> <d900>\n";
-			$stream .= "<da00> <daff> <da00>\n";
-			$stream .= "<db00> <dbff> <db00>\n";
-			$stream .= "<dc00> <dcff> <dc00>\n";
-			$stream .= "<dd00> <ddff> <dd00>\n";
-			$stream .= "<de00> <deff> <de00>\n";
-			$stream .= "<df00> <dfff> <df00>\n";
-			$stream .= "<e000> <e0ff> <e000>\n";
-			$stream .= "<e100> <e1ff> <e100>\n";
-			$stream .= "<e200> <e2ff> <e200>\n";
-			$stream .= "<e300> <e3ff> <e300>\n";
-			$stream .= "<e400> <e4ff> <e400>\n";
-			$stream .= "<e500> <e5ff> <e500>\n";
-			$stream .= "<e600> <e6ff> <e600>\n";
-			$stream .= "<e700> <e7ff> <e700>\n";
-			$stream .= "<e800> <e8ff> <e800>\n";
-			$stream .= "<e900> <e9ff> <e900>\n";
-			$stream .= "<ea00> <eaff> <ea00>\n";
-			$stream .= "<eb00> <ebff> <eb00>\n";
-			$stream .= "<ec00> <ecff> <ec00>\n";
-			$stream .= "<ed00> <edff> <ed00>\n";
-			$stream .= "<ee00> <eeff> <ee00>\n";
-			$stream .= "<ef00> <efff> <ef00>\n";
-			$stream .= "<f000> <f0ff> <f000>\n";
-			$stream .= "<f100> <f1ff> <f100>\n";
-			$stream .= "<f200> <f2ff> <f200>\n";
-			$stream .= "<f300> <f3ff> <f300>\n";
-			$stream .= "<f400> <f4ff> <f400>\n";
-			$stream .= "<f500> <f5ff> <f500>\n";
-			$stream .= "<f600> <f6ff> <f600>\n";
-			$stream .= "<f700> <f7ff> <f700>\n";
-			$stream .= "<f800> <f8ff> <f800>\n";
-			$stream .= "<f900> <f9ff> <f900>\n";
-			$stream .= "<fa00> <faff> <fa00>\n";
-			$stream .= "<fb00> <fbff> <fb00>\n";
-			$stream .= "<fc00> <fcff> <fc00>\n";
-			$stream .= "<fd00> <fdff> <fd00>\n";
-			$stream .= "<fe00> <feff> <fe00>\n";
-			$stream .= "<ff00> <ffff> <ff00>\n";
-			$stream .= "endbfrange\n";
-			$stream .= "endcmap\n";
-			$stream .= "CMapName currentdict /CMap defineresource pop\n";
-			$stream .= "end\n";
-			$stream .= "end";
-			// ToUnicode Object
-			$this->_newobj();
-			$stream = ($this->compress) ? gzcompress($stream) : $stream;
-			$filter = ($this->compress) ? '/Filter /FlateDecode ' : '';
-			$stream = $this->_getrawstream($stream);
-			$this->_out('<<'.$filter.'/Length '.strlen($stream).'>> stream'."\n".$stream."\n".'endstream'."\n".'endobj');
-			// CIDFontType2
-			// A CIDFont whose glyph descriptions are based on TrueType font technology
-			$this->_newobj();
-			$out = '<< /Type /Font';
-			$out .= ' /Subtype /CIDFontType2';
-			$out .= ' /BaseFont /'.$fontname;
-			// A dictionary containing entries that define the character collection of the CIDFont.
-			$cidinfo = '/Registry '.$this->_datastring($font['cidinfo']['Registry']);
-			$cidinfo .= ' /Ordering '.$this->_datastring($font['cidinfo']['Ordering']);
-			$cidinfo .= ' /Supplement '.$font['cidinfo']['Supplement'];
-			$out .= ' /CIDSystemInfo << '.$cidinfo.' >>';
-			$out .= ' /FontDescriptor '.($this->n + 1).' 0 R';
-			$out .= ' /DW '.$font['dw']; // default width
-			$out .= "\n".$this->_putfontwidths($font, 0);
-			if (isset($font['ctg']) AND (!$this->empty_string($font['ctg']))) {
-				$out .= "\n".'/CIDToGIDMap '.($this->n + 2).' 0 R';
-			}
-			$out .= ' >>';
-			$out .= "\n".'endobj';
-			$this->_out($out);
-			// Font descriptor
-			// A font descriptor describing the CIDFont default metrics other than its glyph widths
-			$this->_newobj();
-			$out = '<< /Type /FontDescriptor';
-			$out .= ' /FontName /'.$fontname;
-			foreach ($font['desc'] as $key => $value) {
-				if(is_float($value)) {
-					$value = sprintf('%.3F', $value);
 				}
-				$out .= ' /'.$key.' '.$value;
-			}
-			$fontdir = false;
-			if (!$this->empty_string($font['file'])) {
-				// A stream containing a TrueType font
-				$out .= ' /FontFile2 '.$this->FontFiles[$font['file']]['n'].' 0 R';
-				$fontdir = $this->FontFiles[$font['file']]['fontdir'];
-			}
-			$out .= ' >>';
-			$out .= "\n".'endobj';
-			$this->_out($out);
-			if (isset($font['ctg']) AND (!$this->empty_string($font['ctg']))) {
 				$this->_newobj();
-				// Embed CIDToGIDMap
-				// A specification of the mapping from CIDs to glyph indices
-				// search and get CTG font file to embedd
-				$ctgfile = strtolower($font['ctg']);
-				// search and get ctg font file to embedd
-				$fontfile = '';
-				// search files on various directories
-				if (($fontdir !== false) AND file_exists($fontdir.$ctgfile)) {
-					$fontfile = $fontdir.$ctgfile;
-				} elseif (file_exists($this->_getfontpath().$ctgfile)) {
-					$fontfile = $this->_getfontpath().$ctgfile;
-				} elseif (file_exists($ctgfile)) {
-					$fontfile = $ctgfile;
-				}
-				if ($this->empty_string($fontfile)) {
-					$this->Error('Font file not found: '.$ctgfile);
-				}
-				$stream = $this->_getrawstream(file_get_contents($fontfile));
-				$out = '<< /Length '.strlen($stream).'';
-				if (substr($fontfile, -2) == '.z') { // check file extension
-					// Decompresses data encoded using the public-domain
-					// zlib/deflate compression method, reproducing the
-					// original text or binary data
+				$this->FontFiles[$file]['n'] = $this->n;
+				$stream = $this->_getrawstream($font);
+				$out = '<< /Length '.strlen($stream);
+				if ($compressed) {
 					$out .= ' /Filter /FlateDecode';
 				}
+				$out .= ' /Length1 '.$info['length1'];
+				if (isset($info['length2'])) {
+					$out .= ' /Length2 '.$info['length2'].' /Length3 0';
+				}
 				$out .= ' >>';
 				$out .= ' stream'."\n".$stream."\n".'endstream';
 				$out .= "\n".'endobj';
 				$this->_out($out);
 			}
-			return $obj_id;
-		}
-
-		/**
-		 * Output CID-0 fonts.
-		 * A Type 0 CIDFont contains glyph descriptions based on the Adobe Type 1 font format
-		 * @param array $font font data
-		 * @return int font object ID
-		 * @access protected
-		 * @author Andrew Whitehead, Nicola Asuni, Yukihiro Nakadaira
-		 * @since 3.2.000 (2008-06-23)
-		 */
-		protected function _putcidfont0($font) {
-			$cidoffset = 0;
-			if (!isset($font['cw'][1])) {
-				$cidoffset = 31;
-			}
-			if (isset($font['cidinfo']['uni2cid'])) {
-				// convert unicode to cid.
-				$uni2cid = $font['cidinfo']['uni2cid'];
-				$cw = array();
-				foreach ($font['cw'] as $uni => $width) {
-					if (isset($uni2cid[$uni])) {
-						$cw[($uni2cid[$uni] + $cidoffset)] = $width;
-					} elseif ($uni < 256) {
-						$cw[$uni] = $width;
-					} // else unknown character
-				}
-				$font = array_merge($font, array('cw' => $cw));
-			}
-			$name = $font['name'];
-			$enc = $font['enc'];
-			if ($enc) {
-				$longname = $name.'-'.$enc;
-			} else {
-				$longname = $name;
-			}
-			$obj_id = $this->_newobj();
-			$out = '<</Type /Font';
-			$out .= ' /Subtype /Type0';
-			$out .= ' /BaseFont /'.$longname;
-			$out .= ' /Name /F'.$font['i'];
-			if ($enc) {
-				$out .= ' /Encoding /'.$enc;
-			}
-			$out .= ' /DescendantFonts ['.($this->n + 1).' 0 R]';
-			$out .= ' >>';
-			$out .= "\n".'endobj';
-			$this->_out($out);
-			$this->_newobj();
-			$out = '<</Type /Font';
-			$out .= ' /Subtype /CIDFontType0';
-			$out .= ' /BaseFont /'.$name;
-			$cidinfo = '/Registry '.$this->_datastring($font['cidinfo']['Registry']);
-			$cidinfo .= ' /Ordering '.$this->_datastring($font['cidinfo']['Ordering']);
-			$cidinfo .= ' /Supplement '.$font['cidinfo']['Supplement'];
-			$out .= ' /CIDSystemInfo <<'.$cidinfo.'>>';
-			$out .= ' /FontDescriptor '.($this->n + 1).' 0 R';
-			$out .= ' /DW '.$font['dw'];
-			$out .= "\n".$this->_putfontwidths($font, $cidoffset);
-			$out .= ' >>';
-			$out .= "\n".'endobj';
-			$this->_out($out);
-			$this->_newobj();
-			$s = '<</Type /FontDescriptor /FontName /'.$name;
-			foreach ($font['desc'] as $k => $v) {
-				if ($k != 'Style') {
-					if(is_float($v)) {
-						$v = sprintf('%.3F', $v);
-					}
-					$s .= ' /'.$k.' '.$v.'';
-				}
-			}
-			$s .= '>>';
-			$s .= "\n".'endobj';
-			$this->_out($s);
-			return $obj_id;
 		}
-
-		/**
-		 * Output images.
-		 * @access protected
-		 */
-		protected function _putimages() {
-			$filter = ($this->compress) ? '/Filter /FlateDecode ' : '';
-			foreach ($this->imagekeys as $file) {
-				$info = $this->getImageBuffer($file);
-				$this->_newobj();
-				$this->setImageSubBuffer($file, 'n', $this->n);
-				$out = '<</Type /XObject';
-				$out .= ' /Subtype /Image';
-				$out .= ' /Width '.$info['w'];
-				$out .= ' /Height '.$info['h'];
-				if (array_key_exists('masked', $info)) {
-					$out .= ' /SMask '.($this->n - 1).' 0 R';
-				}
-				if ($info['cs'] == 'Indexed') {
-					$out .= ' /ColorSpace [/Indexed /DeviceRGB '.((strlen($info['pal']) / 3) - 1).' '.($this->n + 1).' 0 R]';
-				} else {
-					$out .= ' /ColorSpace /'.$info['cs'];
-					if ($info['cs'] == 'DeviceCMYK') {
-						$out .= ' /Decode [1 0 1 0 1 0 1 0]';
-					}
-				}
-				$out .= ' /BitsPerComponent '.$info['bpc'];
-				if (isset($info['f'])) {
-					$out .= ' /Filter /'.$info['f'];
-				}
-				if (isset($info['parms'])) {
-					$out .= ' '.$info['parms'];
-				}
-				if (isset($info['trns']) AND is_array($info['trns'])) {
-					$trns='';
-					$count_info = count($info['trns']);
-					for ($i=0; $i < $count_info; ++$i) {
-						$trns .= $info['trns'][$i].' '.$info['trns'][$i].' ';
-					}
-					$out .= ' /Mask ['.$trns.']';
+		$this->set_mqr($mqr);
+		foreach ($this->fontkeys as $k) {
+			//Font objects
+			$font = $this->getFontBuffer($k);
+			$type = $font['type'];
+			$name = $font['name'];
+			if ($type == 'core') {
+				// standard core font
+				$out = $this->_getobj($this->font_obj_ids[$k])."\n";
+				$out .= '<</Type /Font';
+				$out .= ' /Subtype /Type1';
+				$out .= ' /BaseFont /'.$name;
+				$out .= ' /Name /F'.$font['i'];
+				if ((strtolower($name) != 'symbol') AND (strtolower($name) != 'zapfdingbats')) {
+					$out .= ' /Encoding /WinAnsiEncoding';
+				}
+				if ($k == 'helvetica') {
+					// add default font for annotations
+					$this->annotation_fonts[$k] = $font['i'];
 				}
-				$stream = $this->_getrawstream($info['data']);
-				$out .= ' /Length '.strlen($stream).' >>';
-				$out .= ' stream'."\n".$stream."\n".'endstream';
+				$out .= ' >>';
 				$out .= "\n".'endobj';
 				$this->_out($out);
-				//Palette
-				if ($info['cs'] == 'Indexed') {
-					$this->_newobj();
-					$pal = ($this->compress) ? gzcompress($info['pal']) : $info['pal'];
-					$pal = $this->_getrawstream($pal);
-					$this->_out('<<'.$filter.'/Length '.strlen($pal).'>> stream'."\n".$pal."\n".'endstream'."\n".'endobj');
+			} elseif (($type == 'Type1') OR ($type == 'TrueType')) {
+				// additional Type1 or TrueType font
+				$out = $this->_getobj($this->font_obj_ids[$k])."\n";
+				$out .= '<</Type /Font';
+				$out .= ' /Subtype /'.$type;
+				$out .= ' /BaseFont /'.$name;
+				$out .= ' /Name /F'.$font['i'];
+				$out .= ' /FirstChar 32 /LastChar 255';
+				$out .= ' /Widths '.($this->n + 1).' 0 R';
+				$out .= ' /FontDescriptor '.($this->n + 2).' 0 R';
+				if ($font['enc']) {
+					if (isset($font['diff'])) {
+						$out .= ' /Encoding '.($nf + $font['diff']).' 0 R';
+					} else {
+						$out .= ' /Encoding /WinAnsiEncoding';
+					}
 				}
-			}
-		}
-
-		/**
-		 * Output Spot Colors Resources.
-		 * @access protected
-		 * @since 4.0.024 (2008-09-12)
-		 */
-		protected function _putspotcolors() {
-			foreach ($this->spot_colors as $name => $color) {
-				$this->_newobj();
-				$this->spot_colors[$name]['n'] = $this->n;
-				$out = '[/Separation /'.str_replace(' ', '#20', $name);
-				$out .= ' /DeviceCMYK <<';
-				$out .= ' /Range [0 1 0 1 0 1 0 1] /C0 [0 0 0 0]';
-				$out .= ' '.sprintf('/C1 [%.4F %.4F %.4F %.4F] ', $color['c']/100, $color['m']/100, $color['y']/100, $color['k']/100);
-				$out .= ' /FunctionType 2 /Domain [0 1] /N 1>>]';
+				$out .= ' >>';
 				$out .= "\n".'endobj';
 				$this->_out($out);
-			}
-		}
-
-		/**
-		 * Output Resources Dictionary.
-		 * @access protected
-		 */
-		protected function _putresourcedict() {
-			$out = '2 0 obj'."\n";
-			$out .= '<< /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]';
-			$out .= ' /Font <<';
-			foreach ($this->fontkeys as $fontkey) {
-				$font = $this->getFontBuffer($fontkey);
-				$out .= ' /F'.$font['i'].' '.$font['n'].' 0 R';
-			}
-			$out .= ' >>';
-			$out .= ' /XObject <<';
-			foreach ($this->imagekeys as $file) {
-				$info = $this->getImageBuffer($file);
-				$out .= ' /I'.$info['i'].' '.$info['n'].' 0 R';
-			}
-			$out .= ' >>';
-			// visibility
-			$out .= ' /Properties <</OC1 '.$this->n_ocg_print.' 0 R /OC2 '.$this->n_ocg_view.' 0 R>>';
-			// transparency
-			$out .= ' /ExtGState <<';
-			foreach ($this->extgstates as $k => $extgstate) {
-				if (isset($extgstate['name'])) {
-					$out .= ' /'.$extgstate['name'];
-				} else {
-					$out .= ' /GS'.$k;
+				// Widths
+				$this->_newobj();
+				$cw = &$font['cw'];
+				$s = '[';
+				for ($i = 32; $i < 256; ++$i) {
+					$s .= $cw[$i].' ';
+				}
+				$s .= ']';
+				$s .= "\n".'endobj';
+				$this->_out($s);
+				//Descriptor
+				$this->_newobj();
+				$s = '<</Type /FontDescriptor /FontName /'.$name;
+				foreach ($font['desc'] as $fdk => $fdv) {
+					if(is_float($fdv)) {
+						$fdv = sprintf('%.3F', $fdv);
+					}
+					$s .= ' /'.$fdk.' '.$fdv.'';
 				}
-				$out .= ' '.$extgstate['n'].' 0 R';
-			}
-			$out .= ' >>';
-			// gradient patterns
-			if (isset($this->gradients) AND (count($this->gradients) > 0)) {
-				$out .= ' /Pattern <<';
-				foreach ($this->gradients as $id => $grad) {
-					$out .= ' /p'.$id.' '.$grad['pattern'].' 0 R';
+				if (!$this->empty_string($font['file'])) {
+					$s .= ' /FontFile'.($type == 'Type1' ? '' : '2').' '.$this->FontFiles[$font['file']]['n'].' 0 R';
 				}
-				$out .= ' >>';
-			}
-			// gradient shadings
-			if (isset($this->gradients) AND (count($this->gradients) > 0)) {
-				$out .= ' /Shading <<';
-				foreach ($this->gradients as $id => $grad) {
-					$out .= ' /Sh'.$id.' '.$grad['id'].' 0 R';
+				$s .= '>>';
+				$s .= "\n".'endobj';
+				$this->_out($s);
+			} else {
+				// additional types
+				$mtd = '_put'.strtolower($type);
+				if (!method_exists($this, $mtd)) {
+					$this->Error('Unsupported font type: '.$type);
 				}
-				$out .= ' >>';
+				$this->$mtd($font);
 			}
-			// spot colors
-			if (isset($this->spot_colors) AND (count($this->spot_colors) > 0)) {
-				$out .= ' /ColorSpace <<';
-				foreach ($this->spot_colors as $color) {
-					$out .= ' /CS'.$color['i'].' '.$color['n'].' 0 R';
-				}
-				$out .= ' >>';
+		}
+	}
+
+	/**
+	 * Adds unicode fonts.<br>
+	 * Based on PDF Reference 1.3 (section 5)
+	 * @param $font (array) font data
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 1.52.0.TC005 (2005-01-05)
+	 */
+	protected function _puttruetypeunicode($font) {
+		$fontname = '';
+		if ($font['subset']) {
+			// change name for font subsetting
+			$subtag = sprintf('%06u', $font['i']);
+			$subtag = strtr($subtag, '0123456789', 'ABCDEFGHIJ');
+			$fontname .= $subtag.'+';
+		}
+		$fontname .= $font['name'];
+		// Type0 Font
+		// A composite font composed of other fonts, organized hierarchically
+		$out = $this->_getobj($this->font_obj_ids[$font['fontkey']])."\n";
+		$out .= '<< /Type /Font';
+		$out .= ' /Subtype /Type0';
+		$out .= ' /BaseFont /'.$fontname;
+		$out .= ' /Name /F'.$font['i'];
+		$out .= ' /Encoding /'.$font['enc'];
+		$out .= ' /ToUnicode '.($this->n + 1).' 0 R';
+		$out .= ' /DescendantFonts ['.($this->n + 2).' 0 R]';
+		$out .= ' >>';
+		$out .= "\n".'endobj';
+		$this->_out($out);
+		// ToUnicode map for Identity-H
+		$stream = "/CIDInit /ProcSet findresource begin\n";
+		$stream .= "12 dict begin\n";
+		$stream .= "begincmap\n";
+		$stream .= "/CIDSystemInfo << /Registry (Adobe) /Ordering (UCS) /Supplement 0 >> def\n";
+		$stream .= "/CMapName /Adobe-Identity-UCS def\n";
+		$stream .= "/CMapType 2 def\n";
+		$stream .= "/WMode 0 def\n";
+		$stream .= "1 begincodespacerange\n";
+		$stream .= "<0000> <FFFF>\n";
+		$stream .= "endcodespacerange\n";
+		$stream .= "100 beginbfrange\n";
+		$stream .= "<0000> <00ff> <0000>\n";
+		$stream .= "<0100> <01ff> <0100>\n";
+		$stream .= "<0200> <02ff> <0200>\n";
+		$stream .= "<0300> <03ff> <0300>\n";
+		$stream .= "<0400> <04ff> <0400>\n";
+		$stream .= "<0500> <05ff> <0500>\n";
+		$stream .= "<0600> <06ff> <0600>\n";
+		$stream .= "<0700> <07ff> <0700>\n";
+		$stream .= "<0800> <08ff> <0800>\n";
+		$stream .= "<0900> <09ff> <0900>\n";
+		$stream .= "<0a00> <0aff> <0a00>\n";
+		$stream .= "<0b00> <0bff> <0b00>\n";
+		$stream .= "<0c00> <0cff> <0c00>\n";
+		$stream .= "<0d00> <0dff> <0d00>\n";
+		$stream .= "<0e00> <0eff> <0e00>\n";
+		$stream .= "<0f00> <0fff> <0f00>\n";
+		$stream .= "<1000> <10ff> <1000>\n";
+		$stream .= "<1100> <11ff> <1100>\n";
+		$stream .= "<1200> <12ff> <1200>\n";
+		$stream .= "<1300> <13ff> <1300>\n";
+		$stream .= "<1400> <14ff> <1400>\n";
+		$stream .= "<1500> <15ff> <1500>\n";
+		$stream .= "<1600> <16ff> <1600>\n";
+		$stream .= "<1700> <17ff> <1700>\n";
+		$stream .= "<1800> <18ff> <1800>\n";
+		$stream .= "<1900> <19ff> <1900>\n";
+		$stream .= "<1a00> <1aff> <1a00>\n";
+		$stream .= "<1b00> <1bff> <1b00>\n";
+		$stream .= "<1c00> <1cff> <1c00>\n";
+		$stream .= "<1d00> <1dff> <1d00>\n";
+		$stream .= "<1e00> <1eff> <1e00>\n";
+		$stream .= "<1f00> <1fff> <1f00>\n";
+		$stream .= "<2000> <20ff> <2000>\n";
+		$stream .= "<2100> <21ff> <2100>\n";
+		$stream .= "<2200> <22ff> <2200>\n";
+		$stream .= "<2300> <23ff> <2300>\n";
+		$stream .= "<2400> <24ff> <2400>\n";
+		$stream .= "<2500> <25ff> <2500>\n";
+		$stream .= "<2600> <26ff> <2600>\n";
+		$stream .= "<2700> <27ff> <2700>\n";
+		$stream .= "<2800> <28ff> <2800>\n";
+		$stream .= "<2900> <29ff> <2900>\n";
+		$stream .= "<2a00> <2aff> <2a00>\n";
+		$stream .= "<2b00> <2bff> <2b00>\n";
+		$stream .= "<2c00> <2cff> <2c00>\n";
+		$stream .= "<2d00> <2dff> <2d00>\n";
+		$stream .= "<2e00> <2eff> <2e00>\n";
+		$stream .= "<2f00> <2fff> <2f00>\n";
+		$stream .= "<3000> <30ff> <3000>\n";
+		$stream .= "<3100> <31ff> <3100>\n";
+		$stream .= "<3200> <32ff> <3200>\n";
+		$stream .= "<3300> <33ff> <3300>\n";
+		$stream .= "<3400> <34ff> <3400>\n";
+		$stream .= "<3500> <35ff> <3500>\n";
+		$stream .= "<3600> <36ff> <3600>\n";
+		$stream .= "<3700> <37ff> <3700>\n";
+		$stream .= "<3800> <38ff> <3800>\n";
+		$stream .= "<3900> <39ff> <3900>\n";
+		$stream .= "<3a00> <3aff> <3a00>\n";
+		$stream .= "<3b00> <3bff> <3b00>\n";
+		$stream .= "<3c00> <3cff> <3c00>\n";
+		$stream .= "<3d00> <3dff> <3d00>\n";
+		$stream .= "<3e00> <3eff> <3e00>\n";
+		$stream .= "<3f00> <3fff> <3f00>\n";
+		$stream .= "<4000> <40ff> <4000>\n";
+		$stream .= "<4100> <41ff> <4100>\n";
+		$stream .= "<4200> <42ff> <4200>\n";
+		$stream .= "<4300> <43ff> <4300>\n";
+		$stream .= "<4400> <44ff> <4400>\n";
+		$stream .= "<4500> <45ff> <4500>\n";
+		$stream .= "<4600> <46ff> <4600>\n";
+		$stream .= "<4700> <47ff> <4700>\n";
+		$stream .= "<4800> <48ff> <4800>\n";
+		$stream .= "<4900> <49ff> <4900>\n";
+		$stream .= "<4a00> <4aff> <4a00>\n";
+		$stream .= "<4b00> <4bff> <4b00>\n";
+		$stream .= "<4c00> <4cff> <4c00>\n";
+		$stream .= "<4d00> <4dff> <4d00>\n";
+		$stream .= "<4e00> <4eff> <4e00>\n";
+		$stream .= "<4f00> <4fff> <4f00>\n";
+		$stream .= "<5000> <50ff> <5000>\n";
+		$stream .= "<5100> <51ff> <5100>\n";
+		$stream .= "<5200> <52ff> <5200>\n";
+		$stream .= "<5300> <53ff> <5300>\n";
+		$stream .= "<5400> <54ff> <5400>\n";
+		$stream .= "<5500> <55ff> <5500>\n";
+		$stream .= "<5600> <56ff> <5600>\n";
+		$stream .= "<5700> <57ff> <5700>\n";
+		$stream .= "<5800> <58ff> <5800>\n";
+		$stream .= "<5900> <59ff> <5900>\n";
+		$stream .= "<5a00> <5aff> <5a00>\n";
+		$stream .= "<5b00> <5bff> <5b00>\n";
+		$stream .= "<5c00> <5cff> <5c00>\n";
+		$stream .= "<5d00> <5dff> <5d00>\n";
+		$stream .= "<5e00> <5eff> <5e00>\n";
+		$stream .= "<5f00> <5fff> <5f00>\n";
+		$stream .= "<6000> <60ff> <6000>\n";
+		$stream .= "<6100> <61ff> <6100>\n";
+		$stream .= "<6200> <62ff> <6200>\n";
+		$stream .= "<6300> <63ff> <6300>\n";
+		$stream .= "endbfrange\n";
+		$stream .= "100 beginbfrange\n";
+		$stream .= "<6400> <64ff> <6400>\n";
+		$stream .= "<6500> <65ff> <6500>\n";
+		$stream .= "<6600> <66ff> <6600>\n";
+		$stream .= "<6700> <67ff> <6700>\n";
+		$stream .= "<6800> <68ff> <6800>\n";
+		$stream .= "<6900> <69ff> <6900>\n";
+		$stream .= "<6a00> <6aff> <6a00>\n";
+		$stream .= "<6b00> <6bff> <6b00>\n";
+		$stream .= "<6c00> <6cff> <6c00>\n";
+		$stream .= "<6d00> <6dff> <6d00>\n";
+		$stream .= "<6e00> <6eff> <6e00>\n";
+		$stream .= "<6f00> <6fff> <6f00>\n";
+		$stream .= "<7000> <70ff> <7000>\n";
+		$stream .= "<7100> <71ff> <7100>\n";
+		$stream .= "<7200> <72ff> <7200>\n";
+		$stream .= "<7300> <73ff> <7300>\n";
+		$stream .= "<7400> <74ff> <7400>\n";
+		$stream .= "<7500> <75ff> <7500>\n";
+		$stream .= "<7600> <76ff> <7600>\n";
+		$stream .= "<7700> <77ff> <7700>\n";
+		$stream .= "<7800> <78ff> <7800>\n";
+		$stream .= "<7900> <79ff> <7900>\n";
+		$stream .= "<7a00> <7aff> <7a00>\n";
+		$stream .= "<7b00> <7bff> <7b00>\n";
+		$stream .= "<7c00> <7cff> <7c00>\n";
+		$stream .= "<7d00> <7dff> <7d00>\n";
+		$stream .= "<7e00> <7eff> <7e00>\n";
+		$stream .= "<7f00> <7fff> <7f00>\n";
+		$stream .= "<8000> <80ff> <8000>\n";
+		$stream .= "<8100> <81ff> <8100>\n";
+		$stream .= "<8200> <82ff> <8200>\n";
+		$stream .= "<8300> <83ff> <8300>\n";
+		$stream .= "<8400> <84ff> <8400>\n";
+		$stream .= "<8500> <85ff> <8500>\n";
+		$stream .= "<8600> <86ff> <8600>\n";
+		$stream .= "<8700> <87ff> <8700>\n";
+		$stream .= "<8800> <88ff> <8800>\n";
+		$stream .= "<8900> <89ff> <8900>\n";
+		$stream .= "<8a00> <8aff> <8a00>\n";
+		$stream .= "<8b00> <8bff> <8b00>\n";
+		$stream .= "<8c00> <8cff> <8c00>\n";
+		$stream .= "<8d00> <8dff> <8d00>\n";
+		$stream .= "<8e00> <8eff> <8e00>\n";
+		$stream .= "<8f00> <8fff> <8f00>\n";
+		$stream .= "<9000> <90ff> <9000>\n";
+		$stream .= "<9100> <91ff> <9100>\n";
+		$stream .= "<9200> <92ff> <9200>\n";
+		$stream .= "<9300> <93ff> <9300>\n";
+		$stream .= "<9400> <94ff> <9400>\n";
+		$stream .= "<9500> <95ff> <9500>\n";
+		$stream .= "<9600> <96ff> <9600>\n";
+		$stream .= "<9700> <97ff> <9700>\n";
+		$stream .= "<9800> <98ff> <9800>\n";
+		$stream .= "<9900> <99ff> <9900>\n";
+		$stream .= "<9a00> <9aff> <9a00>\n";
+		$stream .= "<9b00> <9bff> <9b00>\n";
+		$stream .= "<9c00> <9cff> <9c00>\n";
+		$stream .= "<9d00> <9dff> <9d00>\n";
+		$stream .= "<9e00> <9eff> <9e00>\n";
+		$stream .= "<9f00> <9fff> <9f00>\n";
+		$stream .= "<a000> <a0ff> <a000>\n";
+		$stream .= "<a100> <a1ff> <a100>\n";
+		$stream .= "<a200> <a2ff> <a200>\n";
+		$stream .= "<a300> <a3ff> <a300>\n";
+		$stream .= "<a400> <a4ff> <a400>\n";
+		$stream .= "<a500> <a5ff> <a500>\n";
+		$stream .= "<a600> <a6ff> <a600>\n";
+		$stream .= "<a700> <a7ff> <a700>\n";
+		$stream .= "<a800> <a8ff> <a800>\n";
+		$stream .= "<a900> <a9ff> <a900>\n";
+		$stream .= "<aa00> <aaff> <aa00>\n";
+		$stream .= "<ab00> <abff> <ab00>\n";
+		$stream .= "<ac00> <acff> <ac00>\n";
+		$stream .= "<ad00> <adff> <ad00>\n";
+		$stream .= "<ae00> <aeff> <ae00>\n";
+		$stream .= "<af00> <afff> <af00>\n";
+		$stream .= "<b000> <b0ff> <b000>\n";
+		$stream .= "<b100> <b1ff> <b100>\n";
+		$stream .= "<b200> <b2ff> <b200>\n";
+		$stream .= "<b300> <b3ff> <b300>\n";
+		$stream .= "<b400> <b4ff> <b400>\n";
+		$stream .= "<b500> <b5ff> <b500>\n";
+		$stream .= "<b600> <b6ff> <b600>\n";
+		$stream .= "<b700> <b7ff> <b700>\n";
+		$stream .= "<b800> <b8ff> <b800>\n";
+		$stream .= "<b900> <b9ff> <b900>\n";
+		$stream .= "<ba00> <baff> <ba00>\n";
+		$stream .= "<bb00> <bbff> <bb00>\n";
+		$stream .= "<bc00> <bcff> <bc00>\n";
+		$stream .= "<bd00> <bdff> <bd00>\n";
+		$stream .= "<be00> <beff> <be00>\n";
+		$stream .= "<bf00> <bfff> <bf00>\n";
+		$stream .= "<c000> <c0ff> <c000>\n";
+		$stream .= "<c100> <c1ff> <c100>\n";
+		$stream .= "<c200> <c2ff> <c200>\n";
+		$stream .= "<c300> <c3ff> <c300>\n";
+		$stream .= "<c400> <c4ff> <c400>\n";
+		$stream .= "<c500> <c5ff> <c500>\n";
+		$stream .= "<c600> <c6ff> <c600>\n";
+		$stream .= "<c700> <c7ff> <c700>\n";
+		$stream .= "endbfrange\n";
+		$stream .= "56 beginbfrange\n";
+		$stream .= "<c800> <c8ff> <c800>\n";
+		$stream .= "<c900> <c9ff> <c900>\n";
+		$stream .= "<ca00> <caff> <ca00>\n";
+		$stream .= "<cb00> <cbff> <cb00>\n";
+		$stream .= "<cc00> <ccff> <cc00>\n";
+		$stream .= "<cd00> <cdff> <cd00>\n";
+		$stream .= "<ce00> <ceff> <ce00>\n";
+		$stream .= "<cf00> <cfff> <cf00>\n";
+		$stream .= "<d000> <d0ff> <d000>\n";
+		$stream .= "<d100> <d1ff> <d100>\n";
+		$stream .= "<d200> <d2ff> <d200>\n";
+		$stream .= "<d300> <d3ff> <d300>\n";
+		$stream .= "<d400> <d4ff> <d400>\n";
+		$stream .= "<d500> <d5ff> <d500>\n";
+		$stream .= "<d600> <d6ff> <d600>\n";
+		$stream .= "<d700> <d7ff> <d700>\n";
+		$stream .= "<d800> <d8ff> <d800>\n";
+		$stream .= "<d900> <d9ff> <d900>\n";
+		$stream .= "<da00> <daff> <da00>\n";
+		$stream .= "<db00> <dbff> <db00>\n";
+		$stream .= "<dc00> <dcff> <dc00>\n";
+		$stream .= "<dd00> <ddff> <dd00>\n";
+		$stream .= "<de00> <deff> <de00>\n";
+		$stream .= "<df00> <dfff> <df00>\n";
+		$stream .= "<e000> <e0ff> <e000>\n";
+		$stream .= "<e100> <e1ff> <e100>\n";
+		$stream .= "<e200> <e2ff> <e200>\n";
+		$stream .= "<e300> <e3ff> <e300>\n";
+		$stream .= "<e400> <e4ff> <e400>\n";
+		$stream .= "<e500> <e5ff> <e500>\n";
+		$stream .= "<e600> <e6ff> <e600>\n";
+		$stream .= "<e700> <e7ff> <e700>\n";
+		$stream .= "<e800> <e8ff> <e800>\n";
+		$stream .= "<e900> <e9ff> <e900>\n";
+		$stream .= "<ea00> <eaff> <ea00>\n";
+		$stream .= "<eb00> <ebff> <eb00>\n";
+		$stream .= "<ec00> <ecff> <ec00>\n";
+		$stream .= "<ed00> <edff> <ed00>\n";
+		$stream .= "<ee00> <eeff> <ee00>\n";
+		$stream .= "<ef00> <efff> <ef00>\n";
+		$stream .= "<f000> <f0ff> <f000>\n";
+		$stream .= "<f100> <f1ff> <f100>\n";
+		$stream .= "<f200> <f2ff> <f200>\n";
+		$stream .= "<f300> <f3ff> <f300>\n";
+		$stream .= "<f400> <f4ff> <f400>\n";
+		$stream .= "<f500> <f5ff> <f500>\n";
+		$stream .= "<f600> <f6ff> <f600>\n";
+		$stream .= "<f700> <f7ff> <f700>\n";
+		$stream .= "<f800> <f8ff> <f800>\n";
+		$stream .= "<f900> <f9ff> <f900>\n";
+		$stream .= "<fa00> <faff> <fa00>\n";
+		$stream .= "<fb00> <fbff> <fb00>\n";
+		$stream .= "<fc00> <fcff> <fc00>\n";
+		$stream .= "<fd00> <fdff> <fd00>\n";
+		$stream .= "<fe00> <feff> <fe00>\n";
+		$stream .= "<ff00> <ffff> <ff00>\n";
+		$stream .= "endbfrange\n";
+		$stream .= "endcmap\n";
+		$stream .= "CMapName currentdict /CMap defineresource pop\n";
+		$stream .= "end\n";
+		$stream .= "end";
+		// ToUnicode Object
+		$this->_newobj();
+		$stream = ($this->compress) ? gzcompress($stream) : $stream;
+		$filter = ($this->compress) ? '/Filter /FlateDecode ' : '';
+		$stream = $this->_getrawstream($stream);
+		$this->_out('<<'.$filter.'/Length '.strlen($stream).'>> stream'."\n".$stream."\n".'endstream'."\n".'endobj');
+		// CIDFontType2
+		// A CIDFont whose glyph descriptions are based on TrueType font technology
+		$oid = $this->_newobj();
+		$out = '<< /Type /Font';
+		$out .= ' /Subtype /CIDFontType2';
+		$out .= ' /BaseFont /'.$fontname;
+		// A dictionary containing entries that define the character collection of the CIDFont.
+		$cidinfo = '/Registry '.$this->_datastring($font['cidinfo']['Registry'], $oid);
+		$cidinfo .= ' /Ordering '.$this->_datastring($font['cidinfo']['Ordering'], $oid);
+		$cidinfo .= ' /Supplement '.$font['cidinfo']['Supplement'];
+		$out .= ' /CIDSystemInfo << '.$cidinfo.' >>';
+		$out .= ' /FontDescriptor '.($this->n + 1).' 0 R';
+		$out .= ' /DW '.$font['dw']; // default width
+		$out .= "\n".$this->_putfontwidths($font, 0);
+		if (isset($font['ctg']) AND (!$this->empty_string($font['ctg']))) {
+			$out .= "\n".'/CIDToGIDMap '.($this->n + 2).' 0 R';
+		}
+		$out .= ' >>';
+		$out .= "\n".'endobj';
+		$this->_out($out);
+		// Font descriptor
+		// A font descriptor describing the CIDFont default metrics other than its glyph widths
+		$this->_newobj();
+		$out = '<< /Type /FontDescriptor';
+		$out .= ' /FontName /'.$fontname;
+		foreach ($font['desc'] as $key => $value) {
+			if(is_float($value)) {
+				$value = sprintf('%.3F', $value);
+			}
+			$out .= ' /'.$key.' '.$value;
+		}
+		$fontdir = false;
+		if (!$this->empty_string($font['file'])) {
+			// A stream containing a TrueType font
+			$out .= ' /FontFile2 '.$this->FontFiles[$font['file']]['n'].' 0 R';
+			$fontdir = $this->FontFiles[$font['file']]['fontdir'];
+		}
+		$out .= ' >>';
+		$out .= "\n".'endobj';
+		$this->_out($out);
+		if (isset($font['ctg']) AND (!$this->empty_string($font['ctg']))) {
+			$this->_newobj();
+			// Embed CIDToGIDMap
+			// A specification of the mapping from CIDs to glyph indices
+			// search and get CTG font file to embedd
+			$ctgfile = strtolower($font['ctg']);
+			// search and get ctg font file to embedd
+			$fontfile = '';
+			// search files on various directories
+			if (($fontdir !== false) AND file_exists($fontdir.$ctgfile)) {
+				$fontfile = $fontdir.$ctgfile;
+			} elseif (file_exists($this->_getfontpath().$ctgfile)) {
+				$fontfile = $this->_getfontpath().$ctgfile;
+			} elseif (file_exists($ctgfile)) {
+				$fontfile = $ctgfile;
+			}
+			if ($this->empty_string($fontfile)) {
+				$this->Error('Font file not found: '.$ctgfile);
+			}
+			$stream = $this->_getrawstream(file_get_contents($fontfile));
+			$out = '<< /Length '.strlen($stream).'';
+			if (substr($fontfile, -2) == '.z') { // check file extension
+				// Decompresses data encoded using the public-domain
+				// zlib/deflate compression method, reproducing the
+				// original text or binary data
+				$out .= ' /Filter /FlateDecode';
 			}
 			$out .= ' >>';
+			$out .= ' stream'."\n".$stream."\n".'endstream';
 			$out .= "\n".'endobj';
 			$this->_out($out);
 		}
+	}
+
+	/**
+	 * Output CID-0 fonts.
+	 * A Type 0 CIDFont contains glyph descriptions based on the Adobe Type 1 font format
+	 * @param $font (array) font data
+	 * @protected
+	 * @author Andrew Whitehead, Nicola Asuni, Yukihiro Nakadaira
+	 * @since 3.2.000 (2008-06-23)
+	 */
+	protected function _putcidfont0($font) {
+		$cidoffset = 0;
+		if (!isset($font['cw'][1])) {
+			$cidoffset = 31;
+		}
+		if (isset($font['cidinfo']['uni2cid'])) {
+			// convert unicode to cid.
+			$uni2cid = $font['cidinfo']['uni2cid'];
+			$cw = array();
+			foreach ($font['cw'] as $uni => $width) {
+				if (isset($uni2cid[$uni])) {
+					$cw[($uni2cid[$uni] + $cidoffset)] = $width;
+				} elseif ($uni < 256) {
+					$cw[$uni] = $width;
+				} // else unknown character
+			}
+			$font = array_merge($font, array('cw' => $cw));
+		}
+		$name = $font['name'];
+		$enc = $font['enc'];
+		if ($enc) {
+			$longname = $name.'-'.$enc;
+		} else {
+			$longname = $name;
+		}
+		$out = $this->_getobj($this->font_obj_ids[$font['fontkey']])."\n";
+		$out .= '<</Type /Font';
+		$out .= ' /Subtype /Type0';
+		$out .= ' /BaseFont /'.$longname;
+		$out .= ' /Name /F'.$font['i'];
+		if ($enc) {
+			$out .= ' /Encoding /'.$enc;
+		}
+		$out .= ' /DescendantFonts ['.($this->n + 1).' 0 R]';
+		$out .= ' >>';
+		$out .= "\n".'endobj';
+		$this->_out($out);
+		$oid = $this->_newobj();
+		$out = '<</Type /Font';
+		$out .= ' /Subtype /CIDFontType0';
+		$out .= ' /BaseFont /'.$name;
+		$cidinfo = '/Registry '.$this->_datastring($font['cidinfo']['Registry'], $oid);
+		$cidinfo .= ' /Ordering '.$this->_datastring($font['cidinfo']['Ordering'], $oid);
+		$cidinfo .= ' /Supplement '.$font['cidinfo']['Supplement'];
+		$out .= ' /CIDSystemInfo <<'.$cidinfo.'>>';
+		$out .= ' /FontDescriptor '.($this->n + 1).' 0 R';
+		$out .= ' /DW '.$font['dw'];
+		$out .= "\n".$this->_putfontwidths($font, $cidoffset);
+		$out .= ' >>';
+		$out .= "\n".'endobj';
+		$this->_out($out);
+		$this->_newobj();
+		$s = '<</Type /FontDescriptor /FontName /'.$name;
+		foreach ($font['desc'] as $k => $v) {
+			if ($k != 'Style') {
+				if(is_float($v)) {
+					$v = sprintf('%.3F', $v);
+				}
+				$s .= ' /'.$k.' '.$v.'';
+			}
+		}
+		$s .= '>>';
+		$s .= "\n".'endobj';
+		$this->_out($s);
+	}
 
-		/**
-		 * Output Resources.
-		 * @access protected
-		 */
-		protected function _putresources() {
-			$this->_putextgstates();
-			$this->_putocg();
-			$this->_putfonts();
-			$this->_putimages();
-			$this->_putspotcolors();
-			$this->_putshaders();
-			//Resource dictionary
-			$this->offsets[2] = $this->bufferlen;
-			$this->_putresourcedict();
-			$this->_putbookmarks();
-			$this->_putEmbeddedFiles();
-			$this->_putannotsobjs();
-			$this->_putjavascript();
-			// encryption
-			$this->_putencryption();
-		}
-
-		/**
-		 * Adds some Metadata information (Document Information Dictionary)
-		 * (see Chapter 14.3.3 Document Information Dictionary of PDF32000_2008.pdf Reference)
-		 * @return int object id
-		 * @access protected
-		 */
-		protected function _putinfo() {
+	/**
+	 * Output images.
+	 * @protected
+	 */
+	protected function _putimages() {
+		$filter = ($this->compress) ? '/Filter /FlateDecode ' : '';
+		foreach ($this->imagekeys as $file) {
+			$info = $this->getImageBuffer($file);
 			$oid = $this->_newobj();
-			$out = '<<';
-			if (!$this->empty_string($this->title)) {
-				// The document's title.
-				$out .= ' /Title '.$this->_textstring($this->title);
-			}
-			if (!$this->empty_string($this->author)) {
-				// The name of the person who created the document.
-				$out .= ' /Author '.$this->_textstring($this->author);
+			$this->xobjects['I'.$info['i']] = array('n' => $oid);
+			$this->setImageSubBuffer($file, 'n', $this->n);
+			$out = '<</Type /XObject';
+			$out .= ' /Subtype /Image';
+			$out .= ' /Width '.$info['w'];
+			$out .= ' /Height '.$info['h'];
+			if (array_key_exists('masked', $info)) {
+				$out .= ' /SMask '.($this->n - 1).' 0 R';
+			}
+			if ($info['cs'] == 'Indexed') {
+				$out .= ' /ColorSpace [/Indexed /DeviceRGB '.((strlen($info['pal']) / 3) - 1).' '.($this->n + 1).' 0 R]';
+			} else {
+				$out .= ' /ColorSpace /'.$info['cs'];
+				if ($info['cs'] == 'DeviceCMYK') {
+					$out .= ' /Decode [1 0 1 0 1 0 1 0]';
+				}
 			}
-			if (!$this->empty_string($this->subject)) {
-				// The subject of the document.
-				$out .= ' /Subject '.$this->_textstring($this->subject);
+			$out .= ' /BitsPerComponent '.$info['bpc'];
+			if (isset($info['f'])) {
+				$out .= ' /Filter /'.$info['f'];
 			}
-			if (!$this->empty_string($this->keywords)) {
-				// Keywords associated with the document.
-				$out .= ' /Keywords '.$this->_textstring($this->keywords.' TCP'.'DF');
+			if (isset($info['parms'])) {
+				$out .= ' '.$info['parms'];
 			}
-			if (!$this->empty_string($this->creator)) {
-				// If the document was converted to PDF from another format, the name of the conforming product that created the original document from which it was converted.
-				$out .= ' /Creator '.$this->_textstring($this->creator);
+			if (isset($info['trns']) AND is_array($info['trns'])) {
+				$trns='';
+				$count_info = count($info['trns']);
+				for ($i=0; $i < $count_info; ++$i) {
+					$trns .= $info['trns'][$i].' '.$info['trns'][$i].' ';
+				}
+				$out .= ' /Mask ['.$trns.']';
 			}
-			if (defined('PDF_PRODUCER')) {
-				// If the document was converted to PDF from another format, the name of the conforming product that converted it to PDF.
-				$out .= ' /Producer '.$this->_textstring(PDF_PRODUCER.' (TCP'.'DF)');
-			} else {
-				// default producer
-				$out .= ' /Producer '.$this->_textstring('TCP'.'DF');
-			}
-			// The date and time the document was created, in human-readable form
-			$out .= ' /CreationDate '.$this->_datestring();
-			// The date and time the document was most recently modified, in human-readable form
-			$out .= ' /ModDate '.$this->_datestring();
-			// A name object indicating whether the document has been modified to include trapping information
-			$out .= ' /Trapped /False';
-			$out .= ' >>';
+			$stream = $this->_getrawstream($info['data']);
+			$out .= ' /Length '.strlen($stream).' >>';
+			$out .= ' stream'."\n".$stream."\n".'endstream';
 			$out .= "\n".'endobj';
 			$this->_out($out);
-			return $oid;
+			//Palette
+			if ($info['cs'] == 'Indexed') {
+				$this->_newobj();
+				$pal = ($this->compress) ? gzcompress($info['pal']) : $info['pal'];
+				$pal = $this->_getrawstream($pal);
+				$this->_out('<<'.$filter.'/Length '.strlen($pal).'>> stream'."\n".$pal."\n".'endstream'."\n".'endobj');
+			}
 		}
+	}
 
-		/**
-		 * Output Catalog.
-		 * @return int object id
-		 * @access protected
-		 */
-		protected function _putcatalog() {
-			$oid = $this->_newobj();
-			$out = '<< /Type /Catalog';
-			$out .= ' /Pages 1 0 R';
-			if ($this->ZoomMode == 'fullpage') {
-				$out .= ' /OpenAction [3 0 R /Fit]';
-			} elseif ($this->ZoomMode == 'fullwidth') {
-				$out .= ' /OpenAction [3 0 R /FitH null]';
-			} elseif ($this->ZoomMode == 'real') {
-				$out .= ' /OpenAction [3 0 R /XYZ null null 1]';
-			} elseif (!is_string($this->ZoomMode)) {
-				$out .= ' /OpenAction [3 0 R /XYZ null null '.($this->ZoomMode / 100).']';
-			}
-			if (isset($this->LayoutMode) AND (!$this->empty_string($this->LayoutMode))) {
-				$out .= ' /PageLayout /'.$this->LayoutMode;
-			}
-			if (isset($this->PageMode) AND (!$this->empty_string($this->PageMode))) {
-				$out .= ' /PageMode /'.$this->PageMode;
-			}
-			if (isset($this->l['a_meta_language'])) {
-				$out .= ' /Lang '.$this->_textstring($this->l['a_meta_language']);
-			}
-			$out .= ' /Names <<';
-			if ((!empty($this->javascript)) OR (!empty($this->js_objects))) {
-				$out .= ' /JavaScript '.($this->n_js).' 0 R';
-			}
-			$out .= ' >>';
-			if (count($this->outlines) > 0) {
-				$out .= ' /Outlines '.$this->OutlineRoot.' 0 R';
-				$out .= ' /PageMode /UseOutlines';
-			}
-			$out .= ' '.$this->_putviewerpreferences();
-			$p = $this->n_ocg_print.' 0 R';
-			$v = $this->n_ocg_view.' 0 R';
-			$as = '<< /Event /Print /OCGs ['.$p.' '.$v.'] /Category [/Print] >> << /Event /View /OCGs ['.$p.' '.$v.'] /Category [/View] >>';
-			$out .= ' /OCProperties << /OCGs ['.$p.' '.$v.'] /D << /ON ['.$p.'] /OFF ['.$v.'] /AS ['.$as.'] >> >>';
-			// AcroForm
-			if (!empty($this->form_obj_id) OR ($this->sign AND isset($this->signature_data['cert_type']))) {
-				$out .= ' /AcroForm <<';
-				$objrefs = '';
-				if ($this->sign AND isset($this->signature_data['cert_type'])) {
-					$objrefs .= $this->sig_obj_id.' 0 R';
-				}
-				if (!empty($this->form_obj_id)) {
-					foreach($this->form_obj_id as $objid) {
-						$objrefs .= ' '.$objid.' 0 R';
-					}
-				}
-				$out .= ' /Fields ['.$objrefs.']';
-				if (!empty($this->form_obj_id) AND !$this->sign) {
-					$out .= ' /NeedAppearances true';
-				}
-				if ($this->sign AND isset($this->signature_data['cert_type'])) {
-					$out .= ' /SigFlags 3';
+	/**
+	 * Output Form XObjects Templates.
+	 * @author Nicola Asuni
+	 * @since 5.8.017 (2010-08-24)
+	 * @protected
+	 * @see startTemplate(), endTemplate(), printTemplate()
+	 */
+	protected function _putxobjects() {
+		foreach ($this->xobjects as $key => $data) {
+			if (isset($data['outdata'])) {
+				$stream = trim($data['outdata']);
+				$out = $this->_getobj($data['n'])."\n";
+				$out .= '<<';
+				$out .= ' /Type /XObject';
+				$out .= ' /Subtype /Form';
+				$out .= ' /FormType 1';
+				if ($this->compress) {
+					$stream = gzcompress($stream);
+					$out .= ' /Filter /FlateDecode';
 				}
-				//$out .= ' /CO ';
-				if (isset($this->annotation_fonts) AND !empty($this->annotation_fonts)) {
-					$out .= ' /DR <<';
+				$out .= sprintf(' /BBox [%.2F %.2F %.2F %.2F]', ($data['x'] * $this->k), (-$data['y'] * $this->k), (($data['w'] + $data['x']) * $this->k), (($data['h'] - $data['y']) * $this->k));
+				$out .= ' /Matrix [1 0 0 1 0 0]';
+				$out .= ' /Resources <<';
+				$out .= ' /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]';
+				// fonts
+				if (!empty($data['fonts'])) {
 					$out .= ' /Font <<';
-					foreach ($this->annotation_fonts as $font => $fontkey) {
-						$out .= ' /F'.($fontkey + 1).' '.$this->font_obj_ids[$font].' 0 R';
+					foreach ($data['fonts'] as $fontkey => $fontid) {
+						$out .= ' /F'.$fontid.' '.$this->font_obj_ids[$fontkey].' 0 R';
 					}
-					$out .= ' >> >>';
+					$out .= ' >>';
 				}
-				$out .= ' /DA (/F'.(array_search('helvetica', $this->fontkeys) + 1).' 0 Tf 0 g)';
-				$out .= ' /Q '.(($this->rtl)?'2':'0');
-				//$out .= ' /XFA ';
-				$out .= ' >>';
-				// signatures
-				if ($this->sign AND isset($this->signature_data['cert_type'])) {
-					if ($this->signature_data['cert_type'] > 0) {
-						$out .= ' /Perms << /DocMDP '.($this->sig_obj_id + 1).' 0 R >>';
-					} else {
-						$out .= ' /Perms << /UR3 '.($this->sig_obj_id + 1).' 0 R >>';
+				// images or nested xobjects
+				if (!empty($data['images']) OR !empty($data['xobjects'])) {
+					$out .= ' /XObject <<';
+					foreach ($data['images'] as $imgid) {
+						$out .= ' /I'.$imgid.' '.$this->xobjects['I'.$imgid]['n'].' 0 R';
 					}
+					foreach ($data['xobjects'] as $sub_id => $sub_objid) {
+						$out .= ' /'.$sub_id.' '.$sub_objid['n'].' 0 R';
+					}
+					$out .= ' >>';
 				}
+				$out .= ' >>';
+				$stream = $this->_getrawstream($stream);
+				$out .= ' /Length '.strlen($stream);
+				$out .= ' >>';
+				$out .= ' stream'."\n".$stream."\n".'endstream';
+				$out .= "\n".'endobj';
+				$this->_out($out);
 			}
-			$out .= ' >>';
+		}
+	}
+
+	/**
+	 * Output Spot Colors Resources.
+	 * @protected
+	 * @since 4.0.024 (2008-09-12)
+	 */
+	protected function _putspotcolors() {
+		foreach ($this->spot_colors as $name => $color) {
+			$this->_newobj();
+			$this->spot_colors[$name]['n'] = $this->n;
+			$out = '[/Separation /'.str_replace(' ', '#20', $name);
+			$out .= ' /DeviceCMYK <<';
+			$out .= ' /Range [0 1 0 1 0 1 0 1] /C0 [0 0 0 0]';
+			$out .= ' '.sprintf('/C1 [%.4F %.4F %.4F %.4F] ', ($color['c'] / 100), ($color['m'] / 100), ($color['y'] / 100), ($color['k'] / 100));
+			$out .= ' /FunctionType 2 /Domain [0 1] /N 1>>]';
 			$out .= "\n".'endobj';
 			$this->_out($out);
-			return $oid;
-		}
-
-		/**
-		 * Output viewer preferences.
-		 * @return string for viewer preferences
-		 * @author Nicola asuni
-		 * @since 3.1.000 (2008-06-09)
-		 * @access protected
-		 */
-		protected function _putviewerpreferences() {
-			$out = '/ViewerPreferences <<';
-			if ($this->rtl) {
-				$out .= ' /Direction /R2L';
+		}
+	}
+
+	/**
+	 * Return XObjects Dictionary.
+	 * @return string XObjects dictionary
+	 * @protected
+	 * @since 5.8.014 (2010-08-23)
+	 */
+	protected function _getxobjectdict() {
+		$out = '';
+		foreach ($this->xobjects as $id => $objid) {
+			$out .= ' /'.$id.' '.$objid['n'].' 0 R';
+		}
+		return $out;
+	}
+
+	/**
+	 * Output Resources Dictionary.
+	 * @protected
+	 */
+	protected function _putresourcedict() {
+		$out = $this->_getobj(2)."\n";
+		$out .= '<< /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]';
+		$out .= ' /Font <<';
+		foreach ($this->fontkeys as $fontkey) {
+			$font = $this->getFontBuffer($fontkey);
+			$out .= ' /F'.$font['i'].' '.$font['n'].' 0 R';
+		}
+		$out .= ' >>';
+		$out .= ' /XObject <<';
+		$out .= $this->_getxobjectdict();
+		$out .= ' >>';
+		// visibility
+		$out .= ' /Properties <</OC1 '.$this->n_ocg_print.' 0 R /OC2 '.$this->n_ocg_view.' 0 R>>';
+		// transparency
+		$out .= ' /ExtGState <<';
+		foreach ($this->extgstates as $k => $extgstate) {
+			if (isset($extgstate['name'])) {
+				$out .= ' /'.$extgstate['name'];
 			} else {
-				$out .= ' /Direction /L2R';
-			}
-			if (isset($this->viewer_preferences['HideToolbar']) AND ($this->viewer_preferences['HideToolbar'])) {
-				$out .= ' /HideToolbar true';
-			}
-			if (isset($this->viewer_preferences['HideMenubar']) AND ($this->viewer_preferences['HideMenubar'])) {
-				$out .= ' /HideMenubar true';
+				$out .= ' /GS'.$k;
 			}
-			if (isset($this->viewer_preferences['HideWindowUI']) AND ($this->viewer_preferences['HideWindowUI'])) {
-				$out .= ' /HideWindowUI true';
-			}
-			if (isset($this->viewer_preferences['FitWindow']) AND ($this->viewer_preferences['FitWindow'])) {
-				$out .= ' /FitWindow true';
-			}
-			if (isset($this->viewer_preferences['CenterWindow']) AND ($this->viewer_preferences['CenterWindow'])) {
-				$out .= ' /CenterWindow true';
-			}
-			if (isset($this->viewer_preferences['DisplayDocTitle']) AND ($this->viewer_preferences['DisplayDocTitle'])) {
-				$out .= ' /DisplayDocTitle true';
-			}
-			if (isset($this->viewer_preferences['NonFullScreenPageMode'])) {
-				$out .= ' /NonFullScreenPageMode /'.$this->viewer_preferences['NonFullScreenPageMode'];
-			}
-			if (isset($this->viewer_preferences['ViewArea'])) {
-				$out .= ' /ViewArea /'.$this->viewer_preferences['ViewArea'];
+			$out .= ' '.$extgstate['n'].' 0 R';
+		}
+		$out .= ' >>';
+		// gradient patterns
+		if (isset($this->gradients) AND (count($this->gradients) > 0)) {
+			$out .= ' /Pattern <<';
+			foreach ($this->gradients as $id => $grad) {
+				$out .= ' /p'.$id.' '.$grad['pattern'].' 0 R';
 			}
-			if (isset($this->viewer_preferences['ViewClip'])) {
-				$out .= ' /ViewClip /'.$this->viewer_preferences['ViewClip'];
+			$out .= ' >>';
+		}
+		// gradient shadings
+		if (isset($this->gradients) AND (count($this->gradients) > 0)) {
+			$out .= ' /Shading <<';
+			foreach ($this->gradients as $id => $grad) {
+				$out .= ' /Sh'.$id.' '.$grad['id'].' 0 R';
 			}
-			if (isset($this->viewer_preferences['PrintArea'])) {
-				$out .= ' /PrintArea /'.$this->viewer_preferences['PrintArea'];
+			$out .= ' >>';
+		}
+		// spot colors
+		if (isset($this->spot_colors) AND (count($this->spot_colors) > 0)) {
+			$out .= ' /ColorSpace <<';
+			foreach ($this->spot_colors as $color) {
+				$out .= ' /CS'.$color['i'].' '.$color['n'].' 0 R';
 			}
-			if (isset($this->viewer_preferences['PrintClip'])) {
-				$out .= ' /PrintClip /'.$this->viewer_preferences['PrintClip'];
+			$out .= ' >>';
+		}
+		$out .= ' >>';
+		$out .= "\n".'endobj';
+		$this->_out($out);
+	}
+
+	/**
+	 * Output Resources.
+	 * @protected
+	 */
+	protected function _putresources() {
+		$this->_putextgstates();
+		$this->_putocg();
+		$this->_putfonts();
+		$this->_putimages();
+		$this->_putxobjects();
+		$this->_putspotcolors();
+		$this->_putshaders();
+		$this->_putresourcedict();
+		$this->_putbookmarks();
+		$this->_putEmbeddedFiles();
+		$this->_putannotsobjs();
+		$this->_putjavascript();
+		$this->_putencryption();
+	}
+
+	/**
+	 * Adds some Metadata information (Document Information Dictionary)
+	 * (see Chapter 14.3.3 Document Information Dictionary of PDF32000_2008.pdf Reference)
+	 * @return int object id
+	 * @protected
+	 */
+	protected function _putinfo() {
+		$oid = $this->_newobj();
+		$out = '<<';
+		// store current isunicode value
+		$prev_isunicode = $this->isunicode;
+		if ($this->docinfounicode) {
+			$this->isunicode = true;
+		}
+		if (!$this->empty_string($this->title)) {
+			// The document's title.
+			$out .= ' /Title '.$this->_textstring($this->title, $oid);
+		}
+		if (!$this->empty_string($this->author)) {
+			// The name of the person who created the document.
+			$out .= ' /Author '.$this->_textstring($this->author, $oid);
+		}
+		if (!$this->empty_string($this->subject)) {
+			// The subject of the document.
+			$out .= ' /Subject '.$this->_textstring($this->subject, $oid);
+		}
+		if (!$this->empty_string($this->keywords)) {
+			// Keywords associated with the document.
+			$out .= ' /Keywords '.$this->_textstring($this->keywords.' TCPDF', $oid);
+		}
+		if (!$this->empty_string($this->creator)) {
+			// If the document was converted to PDF from another format, the name of the conforming product that created the original document from which it was converted.
+			$out .= ' /Creator '.$this->_textstring($this->creator, $oid);
+		}
+		// restore previous isunicode value
+		$this->isunicode = $prev_isunicode;
+		// default producer
+		$out .= ' /Producer '.$this->_textstring("\x54\x43\x50\x44\x46\x20".$this->tcpdf_version."\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x74\x63\x70\x64\x66\x2e\x6f\x72\x67\x29", $oid);
+		// The date and time the document was created, in human-readable form
+		$out .= ' /CreationDate '.$this->_datestring();
+		// The date and time the document was most recently modified, in human-readable form
+		$out .= ' /ModDate '.$this->_datestring();
+		// A name object indicating whether the document has been modified to include trapping information
+		$out .= ' /Trapped /False';
+		$out .= ' >>';
+		$out .= "\n".'endobj';
+		$this->_out($out);
+		return $oid;
+	}
+
+	/**
+	 * Output Catalog.
+	 * @return int object id
+	 * @protected
+	 */
+	protected function _putcatalog() {
+		$oid = $this->_newobj();
+		$out = '<< /Type /Catalog';
+		$out .= ' /Pages 1 0 R';
+		if ($this->ZoomMode == 'fullpage') {
+			$out .= ' /OpenAction ['.$this->page_obj_id[1].' 0 R /Fit]';
+		} elseif ($this->ZoomMode == 'fullwidth') {
+			$out .= ' /OpenAction ['.$this->page_obj_id[1].' 0 R /FitH null]';
+		} elseif ($this->ZoomMode == 'real') {
+			$out .= ' /OpenAction ['.$this->page_obj_id[1].' 0 R /XYZ null null 1]';
+		} elseif (!is_string($this->ZoomMode)) {
+			$out .= sprintf(' /OpenAction ['.$this->page_obj_id[1].' 0 R /XYZ null null %.2F]',($this->ZoomMode / 100));
+		}
+		if (isset($this->LayoutMode) AND (!$this->empty_string($this->LayoutMode))) {
+			$out .= ' /PageLayout /'.$this->LayoutMode;
+		}
+		if (isset($this->PageMode) AND (!$this->empty_string($this->PageMode))) {
+			$out .= ' /PageMode /'.$this->PageMode;
+		}
+		if (isset($this->l['a_meta_language'])) {
+			$out .= ' /Lang '.$this->_textstring($this->l['a_meta_language'], $oid);
+		}
+		$out .= ' /Names <<';
+		if ((!empty($this->javascript)) OR (!empty($this->js_objects))) {
+			$out .= ' /JavaScript '.($this->n_js).' 0 R';
+		}
+		$out .= ' >>';
+		if (count($this->outlines) > 0) {
+			$out .= ' /Outlines '.$this->OutlineRoot.' 0 R';
+			$out .= ' /PageMode /UseOutlines';
+		}
+		$out .= ' '.$this->_putviewerpreferences();
+		$p = $this->n_ocg_print.' 0 R';
+		$v = $this->n_ocg_view.' 0 R';
+		$as = '<< /Event /Print /OCGs ['.$p.' '.$v.'] /Category [/Print] >> << /Event /View /OCGs ['.$p.' '.$v.'] /Category [/View] >>';
+		$out .= ' /OCProperties << /OCGs ['.$p.' '.$v.'] /D << /ON ['.$p.'] /OFF ['.$v.'] /AS ['.$as.'] >> >>';
+		// AcroForm
+		if (!empty($this->form_obj_id) OR ($this->sign AND isset($this->signature_data['cert_type']))) {
+			$out .= ' /AcroForm <<';
+			$objrefs = '';
+			if ($this->sign AND isset($this->signature_data['cert_type'])) {
+				$objrefs .= $this->sig_obj_id.' 0 R';
 			}
-			if (isset($this->viewer_preferences['PrintScaling'])) {
-				$out .= ' /PrintScaling /'.$this->viewer_preferences['PrintScaling'];
+			if (!empty($this->form_obj_id)) {
+				foreach($this->form_obj_id as $objid) {
+					$objrefs .= ' '.$objid.' 0 R';
+				}
 			}
-			if (isset($this->viewer_preferences['Duplex']) AND (!$this->empty_string($this->viewer_preferences['Duplex']))) {
-				$out .= ' /Duplex /'.$this->viewer_preferences['Duplex'];
+			$out .= ' /Fields ['.$objrefs.']';
+			if (!empty($this->form_obj_id) AND !$this->sign) {
+				// It's better to turn off this value and set the appearance stream for each annotation (/AP) to avoid conflicts with signature fields.
+				$out .= ' /NeedAppearances true';
 			}
-			if (isset($this->viewer_preferences['PickTrayByPDFSize'])) {
-				if ($this->viewer_preferences['PickTrayByPDFSize']) {
-					$out .= ' /PickTrayByPDFSize true';
+			if ($this->sign AND isset($this->signature_data['cert_type'])) {
+				if ($this->signature_data['cert_type'] > 0) {
+					$out .= ' /SigFlags 3';
 				} else {
-					$out .= ' /PickTrayByPDFSize false';
+					$out .= ' /SigFlags 1';
 				}
 			}
-			if (isset($this->viewer_preferences['PrintPageRange'])) {
-				$PrintPageRangeNum = '';
-				foreach ($this->viewer_preferences['PrintPageRange'] as $k => $v) {
-					$PrintPageRangeNum .= ' '.($v - 1).'';
+			//$out .= ' /CO ';
+			if (isset($this->annotation_fonts) AND !empty($this->annotation_fonts)) {
+				$out .= ' /DR <<';
+				$out .= ' /Font <<';
+				foreach ($this->annotation_fonts as $fontkey => $fontid) {
+					$out .= ' /F'.$fontid.' '.$this->font_obj_ids[$fontkey].' 0 R';
 				}
-				$out .= ' /PrintPageRange ['.substr($PrintPageRangeNum,1).']';
-			}
-			if (isset($this->viewer_preferences['NumCopies'])) {
-				$out .= ' /NumCopies '.intval($this->viewer_preferences['NumCopies']);
+				$out .= ' >> >>';
 			}
+			$font = $this->getFontBuffer('helvetica');
+			$out .= ' /DA (/F'.$font['i'].' 0 Tf 0 g)';
+			$out .= ' /Q '.(($this->rtl)?'2':'0');
+			//$out .= ' /XFA ';
 			$out .= ' >>';
-			return $out;
-		}
-
-		/**
-		 * Output PDF header.
-		 * @access protected
-		 */
-		protected function _putheader() {
-			$this->_out('%PDF-'.$this->PDFVersion);
-		}
-
-		/**
-		 * Output end of document (EOF).
-		 * @access protected
-		 */
-		protected function _enddoc() {
-			$this->state = 1;
-			$this->_putheader();
-			$this->_putpages();
-			$this->_putresources();
-			// Signature
+			// signatures
 			if ($this->sign AND isset($this->signature_data['cert_type'])) {
-				// widget annotation for signature
-				$this->sig_obj_id = $this->_newobj();
-				// --- replace signature ID on the first page ---
-				// get the document content
-				$pdfdoc = $this->getBuffer();
-				// Remove the original buffer
-				if (isset($this->diskcache) AND $this->diskcache) {
-					// remove buffer file from cache
-					unlink($this->buffer);
-				}
-				unset($this->buffer);
-				$signature_widget_ref = sprintf('%u 0 R', $this->sig_obj_id);
-				$signature_widget_ref .= str_repeat(' ', (strlen($this->sig_annot_ref) - strlen($signature_widget_ref)));
-				$pdfdoc = str_replace($this->sig_annot_ref, $signature_widget_ref, $pdfdoc);
-				$this->diskcache = false;
-				$this->buffer = &$pdfdoc;
-				$this->bufferlen = strlen($pdfdoc);
-				// ---
-				$out = '<< /Type /Annot';
-				$out .= ' /Subtype /Widget';
-				$out .= ' /Rect ['.$this->signature_appearance['rect'].']';
-				$out .= ' /P '.$this->page_obj_id[($this->signature_appearance['page'])].' 0 R'; // link to signature appearance page
-				$out .= ' /F 4';
-				$out .= ' /FT /Sig';
-				$out .= ' /T '.$this->_textstring('Signature');
-				$out .= ' /Ff 0';
-				$out .= ' /V '.($this->sig_obj_id + 1).' 0 R';
-				$out .= ' >>';
-				$out .= "\n".'endobj';
-				$this->_out($out);
-				// signature
-				$this->_putsignature();
-			}
-			// Info
-			$objid_info = $this->_putinfo();
-			// Catalog
-			$objid_catalog = $this->_putcatalog();
-			// Normalize Object IDs
-			$buffer = $this->getBuffer(); // (requires a lot of memory)
-			// Embedded Files
-			if (isset($this->embeddedfiles) AND count($this->embeddedfiles) > 0) {
-				foreach ($this->embeddedfiles as $filename => $filedata) {
-					++$this->n;
-					$this->offsets[$this->n] = $this->offsets[$filedata['n']];
-					$newobjid = sprintf('% 6u', $this->n);
-					$buffer = str_replace(''.$filedata['n'].' 0 R', ''.$newobjid.' 0 R', $buffer);
-					$buffer = str_replace(''.$filedata['n'].' 0 obj', ''.$newobjid.' 0 obj', $buffer);
-				}
-			}
-			// Annotation Objects
-			if ($this->annot_obj_id > $this->annots_start_obj_id) {
-				for ($i = ($this->annots_start_obj_id + 1); $i <= $this->annot_obj_id; ++$i) {
-					++$this->n;
-					$this->offsets[$this->n] = $this->offsets[$i];
-					$newobjid = sprintf('% 6u', $this->n);
-					$buffer = str_replace($i.' 0 R', $newobjid.' 0 R', $buffer);
-					$buffer = str_replace($i.' 0 obj', $newobjid.' 0 obj', $buffer);
-				}
-			}
-			// Javascript Objects
-			if ($this->js_obj_id > $this->js_start_obj_id) {
-				for ($i = ($this->js_start_obj_id + 1); $i <= $this->js_obj_id; ++$i) {
-					++$this->n;
-					$this->offsets[$this->n] = $this->offsets[$i];
-					$newobjid = sprintf('% 6u', $this->n);
-					$buffer = str_replace($i.' 0 R', $newobjid.' 0 R', $buffer);
-					$buffer = str_replace($i.' 0 obj', $newobjid.' 0 obj', $buffer);
-				}
-			}
-			// Appearance streams XObjects
-			if ($this->apxo_obj_id > $this->apxo_start_obj_id) {
-				for ($i = ($this->apxo_start_obj_id + 1); $i <= $this->apxo_obj_id; ++$i) {
-					++$this->n;
-					$this->offsets[$this->n] = $this->offsets[$i];
-					$newobjid = sprintf('% 6u', $this->n);
-					$buffer = str_replace($i.' 0 R', $newobjid.' 0 R', $buffer);
-					$buffer = str_replace($i.' 0 obj', $newobjid.' 0 obj', $buffer);
-				}
-			}
-			// overwrite buffer
-			$this->replaceBuffer($buffer);
-			// Cross-ref
-			$o = $this->bufferlen;
-			// XREF section
-			$this->_out('xref');
-			$this->_out('0 '.($this->n + 1));
-			$this->_out('0000000000 65535 f ');
-			for ($i=1; $i <= $this->n; ++$i) {
-				$this->_out(sprintf('%010d 00000 n ', $this->offsets[$i]));
-			}
-			// TRAILER
-			$out = 'trailer <<';
-			$out .= ' /Size '.($this->n + 1);
-			$out .= ' /Root '.$objid_catalog.' 0 R';
-			$out .= ' /Info '.$objid_info.' 0 R';
-			if ($this->encrypted) {
-				$out .= ' /Encrypt '.$this->encryptdata['objid'].' 0 R';
-			}
-			$out .= ' /ID [ <'.$this->file_id.'> <'.$this->file_id.'> ]';
-			$out .= ' >>';
-			$this->_out($out);
-			$this->_out('startxref');
-			$this->_out($o);
-			$this->_out('%%EOF');
-			$this->state = 3; // end-of-doc
-			if ($this->diskcache) {
-				// remove temporary files used for images
-				foreach ($this->imagekeys as $key) {
-					// remove temporary files
-					unlink($this->images[$key]);
-				}
-				foreach ($this->fontkeys as $key) {
-					// remove temporary files
-					unlink($this->fonts[$key]);
-				}
-			}
-		}
-
-		/**
-		 * Initialize a new page.
-		 * @param string $orientation page orientation. Possible values are (case insensitive):<ul><li>P or PORTRAIT (default)</li><li>L or LANDSCAPE</li></ul>
-		 * @param mixed $format The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() or an array of parameters specified at setPageFormat().
-		 * @access protected
-		 * @see getPageSizeFromFormat(), setPageFormat()
-		 */
-		protected function _beginpage($orientation='', $format='') {
-			++$this->page;
-			$this->setPageBuffer($this->page, '');
-			// initialize array for graphics tranformation positions inside a page buffer
-			$this->transfmrk[$this->page] = array();
-			$this->state = 2;
-			if ($this->empty_string($orientation)) {
-				if (isset($this->CurOrientation)) {
-					$orientation = $this->CurOrientation;
-				} elseif ($this->fwPt > $this->fhPt) {
-					// landscape
-					$orientation = 'L';
+				if ($this->signature_data['cert_type'] > 0) {
+					$out .= ' /Perms << /DocMDP '.($this->sig_obj_id + 1).' 0 R >>';
 				} else {
-					// portrait
-					$orientation = 'P';
+					$out .= ' /Perms << /UR3 '.($this->sig_obj_id + 1).' 0 R >>';
 				}
 			}
-			if ($this->empty_string($format)) {
-				$this->pagedim[$this->page] = $this->pagedim[($this->page - 1)];
-				$this->setPageOrientation($orientation);
+		}
+		$out .= ' >>';
+		$out .= "\n".'endobj';
+		$this->_out($out);
+		return $oid;
+	}
+
+	/**
+	 * Output viewer preferences.
+	 * @return string for viewer preferences
+	 * @author Nicola asuni
+	 * @since 3.1.000 (2008-06-09)
+	 * @protected
+	 */
+	protected function _putviewerpreferences() {
+		$out = '/ViewerPreferences <<';
+		if ($this->rtl) {
+			$out .= ' /Direction /R2L';
+		} else {
+			$out .= ' /Direction /L2R';
+		}
+		if (isset($this->viewer_preferences['HideToolbar']) AND ($this->viewer_preferences['HideToolbar'])) {
+			$out .= ' /HideToolbar true';
+		}
+		if (isset($this->viewer_preferences['HideMenubar']) AND ($this->viewer_preferences['HideMenubar'])) {
+			$out .= ' /HideMenubar true';
+		}
+		if (isset($this->viewer_preferences['HideWindowUI']) AND ($this->viewer_preferences['HideWindowUI'])) {
+			$out .= ' /HideWindowUI true';
+		}
+		if (isset($this->viewer_preferences['FitWindow']) AND ($this->viewer_preferences['FitWindow'])) {
+			$out .= ' /FitWindow true';
+		}
+		if (isset($this->viewer_preferences['CenterWindow']) AND ($this->viewer_preferences['CenterWindow'])) {
+			$out .= ' /CenterWindow true';
+		}
+		if (isset($this->viewer_preferences['DisplayDocTitle']) AND ($this->viewer_preferences['DisplayDocTitle'])) {
+			$out .= ' /DisplayDocTitle true';
+		}
+		if (isset($this->viewer_preferences['NonFullScreenPageMode'])) {
+			$out .= ' /NonFullScreenPageMode /'.$this->viewer_preferences['NonFullScreenPageMode'];
+		}
+		if (isset($this->viewer_preferences['ViewArea'])) {
+			$out .= ' /ViewArea /'.$this->viewer_preferences['ViewArea'];
+		}
+		if (isset($this->viewer_preferences['ViewClip'])) {
+			$out .= ' /ViewClip /'.$this->viewer_preferences['ViewClip'];
+		}
+		if (isset($this->viewer_preferences['PrintArea'])) {
+			$out .= ' /PrintArea /'.$this->viewer_preferences['PrintArea'];
+		}
+		if (isset($this->viewer_preferences['PrintClip'])) {
+			$out .= ' /PrintClip /'.$this->viewer_preferences['PrintClip'];
+		}
+		if (isset($this->viewer_preferences['PrintScaling'])) {
+			$out .= ' /PrintScaling /'.$this->viewer_preferences['PrintScaling'];
+		}
+		if (isset($this->viewer_preferences['Duplex']) AND (!$this->empty_string($this->viewer_preferences['Duplex']))) {
+			$out .= ' /Duplex /'.$this->viewer_preferences['Duplex'];
+		}
+		if (isset($this->viewer_preferences['PickTrayByPDFSize'])) {
+			if ($this->viewer_preferences['PickTrayByPDFSize']) {
+				$out .= ' /PickTrayByPDFSize true';
 			} else {
-				$this->setPageFormat($format, $orientation);
+				$out .= ' /PickTrayByPDFSize false';
 			}
-			if ($this->rtl) {
-				$this->x = $this->w - $this->rMargin;
+		}
+		if (isset($this->viewer_preferences['PrintPageRange'])) {
+			$PrintPageRangeNum = '';
+			foreach ($this->viewer_preferences['PrintPageRange'] as $k => $v) {
+				$PrintPageRangeNum .= ' '.($v - 1).'';
+			}
+			$out .= ' /PrintPageRange ['.substr($PrintPageRangeNum,1).']';
+		}
+		if (isset($this->viewer_preferences['NumCopies'])) {
+			$out .= ' /NumCopies '.intval($this->viewer_preferences['NumCopies']);
+		}
+		$out .= ' >>';
+		return $out;
+	}
+
+	/**
+	 * Output PDF header.
+	 * @protected
+	 */
+	protected function _putheader() {
+		$this->_out('%PDF-'.$this->PDFVersion);
+	}
+
+	/**
+	 * Output end of document (EOF).
+	 * @protected
+	 */
+	protected function _enddoc() {
+		$this->state = 1;
+		$this->_putheader();
+		$this->_putpages();
+		$this->_putresources();
+		// Signature
+		if ($this->sign AND isset($this->signature_data['cert_type'])) {
+			// widget annotation for signature
+			$out = $this->_getobj($this->sig_obj_id)."\n";
+			$out .= '<< /Type /Annot';
+			$out .= ' /Subtype /Widget';
+			$out .= ' /Rect ['.$this->signature_appearance['rect'].']';
+			$out .= ' /P '.$this->page_obj_id[($this->signature_appearance['page'])].' 0 R'; // link to signature appearance page
+			$out .= ' /F 4';
+			$out .= ' /FT /Sig';
+			$out .= ' /T '.$this->_textstring('Signature', $this->sig_obj_id);
+			$out .= ' /Ff 0';
+			$out .= ' /V '.($this->sig_obj_id + 1).' 0 R';
+			$out .= ' >>';
+			$out .= "\n".'endobj';
+			$this->_out($out);
+			// signature
+			$this->_putsignature();
+		}
+		// Info
+		$objid_info = $this->_putinfo();
+		// Catalog
+		$objid_catalog = $this->_putcatalog();
+		// Cross-ref
+		$o = $this->bufferlen;
+		// XREF section
+		$this->_out('xref');
+		$this->_out('0 '.($this->n + 1));
+		$this->_out('0000000000 65535 f ');
+		for ($i=1; $i <= $this->n; ++$i) {
+			$this->_out(sprintf('%010d 00000 n ', $this->offsets[$i]));
+		}
+		// TRAILER
+		$out = 'trailer <<';
+		$out .= ' /Size '.($this->n + 1);
+		$out .= ' /Root '.$objid_catalog.' 0 R';
+		$out .= ' /Info '.$objid_info.' 0 R';
+		if ($this->encrypted) {
+			$out .= ' /Encrypt '.$this->encryptdata['objid'].' 0 R';
+		}
+		$out .= ' /ID [ <'.$this->file_id.'> <'.$this->file_id.'> ]';
+		$out .= ' >>';
+		$this->_out($out);
+		$this->_out('startxref');
+		$this->_out($o);
+		$this->_out('%%EOF');
+		$this->state = 3; // end-of-doc
+		if ($this->diskcache) {
+			// remove temporary files used for images
+			foreach ($this->imagekeys as $key) {
+				// remove temporary files
+				unlink($this->images[$key]);
+			}
+			foreach ($this->fontkeys as $key) {
+				// remove temporary files
+				unlink($this->fonts[$key]);
+			}
+		}
+	}
+
+	/**
+	 * Initialize a new page.
+	 * @param $orientation (string) page orientation. Possible values are (case insensitive):<ul><li>P or PORTRAIT (default)</li><li>L or LANDSCAPE</li></ul>
+	 * @param $format (mixed) The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() or an array of parameters specified at setPageFormat().
+	 * @protected
+	 * @see getPageSizeFromFormat(), setPageFormat()
+	 */
+	protected function _beginpage($orientation='', $format='') {
+		++$this->page;
+		$this->setPageBuffer($this->page, '');
+		// initialize array for graphics tranformation positions inside a page buffer
+		$this->transfmrk[$this->page] = array();
+		$this->state = 2;
+		if ($this->empty_string($orientation)) {
+			if (isset($this->CurOrientation)) {
+				$orientation = $this->CurOrientation;
+			} elseif ($this->fwPt > $this->fhPt) {
+				// landscape
+				$orientation = 'L';
 			} else {
-				$this->x = $this->lMargin;
+				// portrait
+				$orientation = 'P';
 			}
-			$this->y = $this->tMargin;
-			if (isset($this->newpagegroup[$this->page])) {
-				// start a new group
-				$n = sizeof($this->pagegroups) + 1;
-				$alias = '{nb'.$n.'}';
-				$this->pagegroups[$alias] = 1;
-				$this->currpagegroup = $alias;
-			} elseif ($this->currpagegroup) {
-				++$this->pagegroups[$this->currpagegroup];
-			}
-		}
-
-		/**
-		 * Mark end of page.
-		 * @access protected
-		 */
-		protected function _endpage() {
-			$this->setVisibility('all');
-			$this->state = 1;
-		}
-
-		/**
-		 * Begin a new object and return the object number.
-		 * @return int object number
-		 * @access protected
-		 */
-		protected function _newobj() {
+		}
+		if ($this->empty_string($format)) {
+			$this->pagedim[$this->page] = $this->pagedim[($this->page - 1)];
+			$this->setPageOrientation($orientation);
+		} else {
+			$this->setPageFormat($format, $orientation);
+		}
+		if ($this->rtl) {
+			$this->x = $this->w - $this->rMargin;
+		} else {
+			$this->x = $this->lMargin;
+		}
+		$this->y = $this->tMargin;
+		if (isset($this->newpagegroup[$this->page])) {
+			// start a new group
+			$n = sizeof($this->pagegroups) + 1;
+			$alias = '{nb'.$n.'}';
+			$this->pagegroups[$alias] = 1;
+			$this->currpagegroup = $alias;
+		} elseif ($this->currpagegroup) {
+			++$this->pagegroups[$this->currpagegroup];
+		}
+	}
+
+	/**
+	 * Mark end of page.
+	 * @protected
+	 */
+	protected function _endpage() {
+		$this->setVisibility('all');
+		$this->state = 1;
+	}
+
+	/**
+	 * Begin a new object and return the object number.
+	 * @return int object number
+	 * @protected
+	 */
+	protected function _newobj() {
+		$this->_out($this->_getobj());
+		return $this->n;
+	}
+
+	/**
+	 * Return the starting object string for the selected object ID.
+	 * @param $objid (int) Object ID (leave empty to get a new ID).
+	 * @return string the starting object string
+	 * @protected
+	 * @since 5.8.009 (2010-08-20)
+	 */
+	protected function _getobj($objid='') {
+		if ($objid === '') {
 			++$this->n;
-			$this->offsets[$this->n] = $this->bufferlen;
-			$this->_out($this->n.' 0 obj');
-			return $this->n;
-		}
-
-		/**
-		 * Underline text.
-		 * @param int $x X coordinate
-		 * @param int $y Y coordinate
-		 * @param string $txt text to underline
-		 * @access protected
-		 */
-		protected function _dounderline($x, $y, $txt) {
-			$w = $this->GetStringWidth($txt);
-			return $this->_dounderlinew($x, $y, $w);
-		}
-
-		/**
-		 * Underline for rectangular text area.
-		 * @param int $x X coordinate
-		 * @param int $y Y coordinate
-		 * @param int $w width to underline
-		 * @access protected
-		 * @since 4.8.008 (2009-09-29)
-		 */
-		protected function _dounderlinew($x, $y, $w) {
-			$linew = - $this->CurrentFont['ut'] / 1000 * $this->FontSizePt;
-			return sprintf('%.2F %.2F %.2F %.2F re f', $x * $this->k, ((($this->h - $y) * $this->k) + $linew), $w * $this->k, $linew);
-		}
-
-		/**
-		 * Line through text.
-		 * @param int $x X coordinate
-		 * @param int $y Y coordinate
-		 * @param string $txt text to linethrough
-		 * @access protected
-		 */
-		protected function _dolinethrough($x, $y, $txt) {
-			$w = $this->GetStringWidth($txt);
-			return $this->_dolinethroughw($x, $y, $w);
-		}
-
-		/**
-		 * Line through for rectangular text area.
-		 * @param int $x X coordinate
-		 * @param int $y Y coordinate
-		 * @param string $txt text to linethrough
-		 * @access protected
-		 * @since 4.9.008 (2009-09-29)
-		 */
-		protected function _dolinethroughw($x, $y, $w) {
-			$linew = - $this->CurrentFont['ut'] / 1000 * $this->FontSizePt;
-			return sprintf('%.2F %.2F %.2F %.2F re f', $x * $this->k, ((($this->h - $y) * $this->k) + $linew + ($this->FontSizePt / 3)), $w * $this->k, $linew);
-		}
-
-		/**
-		 * Overline text.
-		 * @param int $x X coordinate
-		 * @param int $y Y coordinate
-		 * @param string $txt text to overline
-		 * @access protected
-		 * @since 4.9.015 (2010-04-19)
-		 */
-		protected function _dooverline($x, $y, $txt) {
-			$w = $this->GetStringWidth($txt);
-			return $this->_dooverlinew($x, $y, $w);
-		}
-
-		/**
-		 * Overline for rectangular text area.
-		 * @param int $x X coordinate
-		 * @param int $y Y coordinate
-		 * @param int $w width to overline
-		 * @access protected
-		 * @since 4.9.015 (2010-04-19)
-		 */
-		protected function _dooverlinew($x, $y, $w) {
-			$linew = - $this->CurrentFont['ut'] / 1000 * $this->FontSizePt;
-			return sprintf('%.2F %.2F %.2F %.2F re f', $x * $this->k, (($this->h - $y + $this->FontAscent) * $this->k) - $linew, $w * $this->k, $linew);
-
-		}
-
-		/**
-		 * Read a 4-byte (32 bit) integer from file.
-		 * @param string $f file name.
-		 * @return 4-byte integer
-		 * @access protected
-		 */
-		protected function _freadint($f) {
-			$a = unpack('Ni', fread($f, 4));
-			return $a['i'];
-		}
-
-		/**
-		 * Add "\" before "\", "(" and ")"
-		 * @param string $s string to escape.
-		 * @return string escaped string.
-		 * @access protected
-		 */
-		protected function _escape($s) {
-			// the chr(13) substitution fixes the Bugs item #1421290.
-			return strtr($s, array(')' => '\\)', '(' => '\\(', '\\' => '\\\\', chr(13) => '\r'));
-		}
-
-		/**
-		 * Format a data string for meta information
-		 * @param string $s data string to escape.
-		 * @return string escaped string.
-		 * @access protected
-		 */
-		protected function _datastring($s) {
-			$s = $this->_encrypt_data($this->n, $s);
-			return '('. $this->_escape($s).')';
-		}
-
-		/**
-		 * Format a data string for annotation objects
-		 * @param string $s data string to escape.
-		 * @return string escaped string.
-		 * @access protected
-		 */
-		protected function _dataannobjstring($s) {
-			$s = $this->_encrypt_data(($this->annot_obj_id + 1), $s);
-			return '('. $this->_escape($s).')';
-		}
-
-		/**
-		 * Returns a formatted date for meta information
-		 * @return string escaped date string.
-		 * @access protected
-		 * @since 4.6.028 (2009-08-25)
-		 */
-		protected function _datestring() {
-			$current_time = substr_replace(date('YmdHisO'), '\'', (0 - 2), 0).'\'';
-			return $this->_datastring('D:'.$current_time);
-		}
-
-		/**
-		 * Format a text string for meta information
-		 * @param string $s string to escape.
-		 * @return string escaped string.
-		 * @access protected
-		 */
-		protected function _textstring($s) {
-			if ($this->isunicode) {
-				//Convert string to UTF-16BE
-				$s = $this->UTF8ToUTF16BE($s, true);
-			}
-			return $this->_datastring($s);
+			$objid = $this->n;
 		}
+		$this->offsets[$objid] = $this->bufferlen;
+		return $objid.' 0 obj';
+	}
 
-		/**
-		 * Format a UTF-8 text string for meta information on annotations
-		 * @param string $s string to escape.
-		 * @return string escaped string.
-		 * @access protected
-		 */
-		protected function _textannobjstring($s) {
-			if ($this->isunicode) {
-				//Convert string to UTF-16BE
-				$s = $this->UTF8ToUTF16BE($s, true);
+	/**
+	 * Underline text.
+	 * @param $x (int) X coordinate
+	 * @param $y (int) Y coordinate
+	 * @param $txt (string) text to underline
+	 * @protected
+	 */
+	protected function _dounderline($x, $y, $txt) {
+		$w = $this->GetStringWidth($txt);
+		return $this->_dounderlinew($x, $y, $w);
+	}
+
+	/**
+	 * Underline for rectangular text area.
+	 * @param $x (int) X coordinate
+	 * @param $y (int) Y coordinate
+	 * @param $w (int) width to underline
+	 * @protected
+	 * @since 4.8.008 (2009-09-29)
+	 */
+	protected function _dounderlinew($x, $y, $w) {
+		$linew = - $this->CurrentFont['ut'] / 1000 * $this->FontSizePt;
+		return sprintf('%.2F %.2F %.2F %.2F re f', $x * $this->k, ((($this->h - $y) * $this->k) + $linew), $w * $this->k, $linew);
+	}
+
+	/**
+	 * Line through text.
+	 * @param $x (int) X coordinate
+	 * @param $y (int) Y coordinate
+	 * @param $txt (string) text to linethrough
+	 * @protected
+	 */
+	protected function _dolinethrough($x, $y, $txt) {
+		$w = $this->GetStringWidth($txt);
+		return $this->_dolinethroughw($x, $y, $w);
+	}
+
+	/**
+	 * Line through for rectangular text area.
+	 * @param $x (int) X coordinate
+	 * @param $y (int) Y coordinate
+	 * @param $w (int) line lenght (width)
+	 * @protected
+	 * @since 4.9.008 (2009-09-29)
+	 */
+	protected function _dolinethroughw($x, $y, $w) {
+		$linew = - $this->CurrentFont['ut'] / 1000 * $this->FontSizePt;
+		return sprintf('%.2F %.2F %.2F %.2F re f', $x * $this->k, ((($this->h - $y) * $this->k) + $linew + ($this->FontSizePt / 3)), $w * $this->k, $linew);
+	}
+
+	/**
+	 * Overline text.
+	 * @param $x (int) X coordinate
+	 * @param $y (int) Y coordinate
+	 * @param $txt (string) text to overline
+	 * @protected
+	 * @since 4.9.015 (2010-04-19)
+	 */
+	protected function _dooverline($x, $y, $txt) {
+		$w = $this->GetStringWidth($txt);
+		return $this->_dooverlinew($x, $y, $w);
+	}
+
+	/**
+	 * Overline for rectangular text area.
+	 * @param $x (int) X coordinate
+	 * @param $y (int) Y coordinate
+	 * @param $w (int) width to overline
+	 * @protected
+	 * @since 4.9.015 (2010-04-19)
+	 */
+	protected function _dooverlinew($x, $y, $w) {
+		$linew = - $this->CurrentFont['ut'] / 1000 * $this->FontSizePt;
+		return sprintf('%.2F %.2F %.2F %.2F re f', $x * $this->k, (($this->h - $y + $this->FontAscent) * $this->k) - $linew, $w * $this->k, $linew);
+
+	}
+
+	/**
+	 * Read a 4-byte (32 bit) integer from file.
+	 * @param $f (string) file name.
+	 * @return 4-byte integer
+	 * @protected
+	 */
+	protected function _freadint($f) {
+		$a = unpack('Ni', fread($f, 4));
+		return $a['i'];
+	}
+
+	/**
+	 * Add "\" before "\", "(" and ")"
+	 * @param $s (string) string to escape.
+	 * @return string escaped string.
+	 * @protected
+	 */
+	protected function _escape($s) {
+		// the chr(13) substitution fixes the Bugs item #1421290.
+		return strtr($s, array(')' => '\\)', '(' => '\\(', '\\' => '\\\\', chr(13) => '\r'));
+	}
+
+	/**
+	 * Format a data string for meta information
+	 * @param $s (string) data string to escape.
+	 * @param $n (int) object ID
+	 * @return string escaped string.
+	 * @protected
+	 */
+	protected function _datastring($s, $n=0) {
+		if ($n == 0) {
+			$n = $this->n;
+		}
+		$s = $this->_encrypt_data($n, $s);
+		return '('. $this->_escape($s).')';
+	}
+
+	/**
+	 * Returns a formatted date for meta information
+	 * @param $n (int) object ID
+	 * @return string escaped date string.
+	 * @protected
+	 * @since 4.6.028 (2009-08-25)
+	 */
+	protected function _datestring($n=0) {
+		$current_time = substr_replace(date('YmdHisO'), '\'', (0 - 2), 0).'\'';
+		return $this->_datastring('D:'.$current_time, $n);
+	}
+
+	/**
+	 * Format a text string for meta information
+	 * @param $s (string) string to escape.
+	 * @param $n (int) object ID
+	 * @return string escaped string.
+	 * @protected
+	 */
+	protected function _textstring($s, $n=0) {
+		if ($this->isunicode) {
+			//Convert string to UTF-16BE
+			$s = $this->UTF8ToUTF16BE($s, true);
+		}
+		return $this->_datastring($s, $n);
+	}
+
+	/**
+	 * THIS METHOD IS DEPRECATED
+	 * Format a text string
+	 * @param $s (string) string to escape.
+	 * @return string escaped string.
+	 * @protected
+	 * @deprecated
+	 */
+	protected function _escapetext($s) {
+		if ($this->isunicode) {
+			if (($this->CurrentFont['type'] == 'core') OR ($this->CurrentFont['type'] == 'TrueType') OR ($this->CurrentFont['type'] == 'Type1')) {
+				$s = $this->UTF8ToLatin1($s);
+			} else {
+				//Convert string to UTF-16BE and reverse RTL language
+				$s = $this->utf8StrRev($s, false, $this->tmprtl);
 			}
-			return $this->_dataannobjstring($s);
 		}
+		return $this->_escape($s);
+	}
 
-		/**
-		 * Format a text string
-		 * @param string $s string to escape.
-		 * @return string escaped string.
-		 * @access protected
-		 */
-		protected function _escapetext($s) {
-			if ($this->isunicode) {
-				if (($this->CurrentFont['type'] == 'core') OR ($this->CurrentFont['type'] == 'TrueType') OR ($this->CurrentFont['type'] == 'Type1')) {
-					$s = $this->UTF8ToLatin1($s);
-				} else {
-					//Convert string to UTF-16BE and reverse RTL language
-					$s = $this->utf8StrRev($s, false, $this->tmprtl);
-				}
-			}
-			return $this->_escape($s);
-		}
-
-		/**
-		 * get raw output stream.
-		 * @param string $s string to output.
-		 * @param int $n object reference for encryption mode
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 5.5.000 (2010-06-22)
-		 */
-		protected function _getrawstream($s, $n=0) {
-			if ($n <= 0) {
-				// default to current object
-				$n = $this->n;
-			}
-			return $this->_encrypt_data($n, $s);
-		}
-
-		/**
-		 * Format output stream (DEPRECATED).
-		 * @param string $s string to output.
-		 * @param int $n object reference for encryption mode
-		 * @access protected
-		 * @deprecated
-		 */
-		protected function _getstream($s, $n=0) {
-			return 'stream'."\n".$this->_getrawstream($s, $n)."\n".'endstream';
-		}
-
-		/**
-		 * Output a stream (DEPRECATED).
-		 * @param string $s string to output.
-		 * @param int $n object reference for encryption mode
-		 * @access protected
-		 * @deprecated
-		 */
-		protected function _putstream($s, $n=0) {
-			$this->_out($this->_getstream($s, $n));
-		}
-
-		/**
-		 * Output a string to the document.
-		 * @param string $s string to output.
-		 * @access protected
-		 */
-		protected function _out($s) {
-			if ($this->state == 2) {
-				if ((!$this->InFooter) AND isset($this->footerlen[$this->page]) AND ($this->footerlen[$this->page] > 0)) {
-					// puts data before page footer
-					$pagebuff = $this->getPageBuffer($this->page);
-					$page = substr($pagebuff, 0, -$this->footerlen[$this->page]);
-					$footer = substr($pagebuff, -$this->footerlen[$this->page]);
-					$this->setPageBuffer($this->page, $page.$s."\n".$footer);
-					// update footer position
-					$this->footerpos[$this->page] += strlen($s."\n");
-				} else {
-					$this->setPageBuffer($this->page, $s."\n", true);
-				}
+	/**
+	 * get raw output stream.
+	 * @param $s (string) string to output.
+	 * @param $n (int) object reference for encryption mode
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 5.5.000 (2010-06-22)
+	 */
+	protected function _getrawstream($s, $n=0) {
+		if ($n <= 0) {
+			// default to current object
+			$n = $this->n;
+		}
+		return $this->_encrypt_data($n, $s);
+	}
+
+	/**
+	 * Format output stream (DEPRECATED).
+	 * @param $s (string) string to output.
+	 * @param $n (int) object reference for encryption mode
+	 * @protected
+	 * @deprecated
+	 */
+	protected function _getstream($s, $n=0) {
+		return 'stream'."\n".$this->_getrawstream($s, $n)."\n".'endstream';
+	}
+
+	/**
+	 * Output a stream (DEPRECATED).
+	 * @param $s (string) string to output.
+	 * @param $n (int) object reference for encryption mode
+	 * @protected
+	 * @deprecated
+	 */
+	protected function _putstream($s, $n=0) {
+		$this->_out($this->_getstream($s, $n));
+	}
+
+	/**
+	 * Output a string to the document.
+	 * @param $s (string) string to output.
+	 * @protected
+	 */
+	protected function _out($s) {
+		if ($this->state == 2) {
+			if ($this->inxobj) {
+				// we are inside an XObject template
+				$this->xobjects[$this->xobjid]['outdata'] .= $s."\n";
+			} elseif ((!$this->InFooter) AND isset($this->footerlen[$this->page]) AND ($this->footerlen[$this->page] > 0)) {
+				// puts data before page footer
+				$pagebuff = $this->getPageBuffer($this->page);
+				$page = substr($pagebuff, 0, -$this->footerlen[$this->page]);
+				$footer = substr($pagebuff, -$this->footerlen[$this->page]);
+				$this->setPageBuffer($this->page, $page.$s."\n".$footer);
+				// update footer position
+				$this->footerpos[$this->page] += strlen($s."\n");
 			} else {
-				$this->setBuffer($s."\n");
-			}
-		}
-
-		/**
-		 * Converts UTF-8 strings to codepoints array.<br>
-		 * Invalid byte sequences will be replaced with 0xFFFD (replacement character)<br>
-		 * Based on: http://www.faqs.org/rfcs/rfc3629.html
-		 * <pre>
-		 *    Char. number range  |        UTF-8 octet sequence
-		 *       (hexadecimal)    |              (binary)
-		 *    --------------------+-----------------------------------------------
-		 *    0000 0000-0000 007F | 0xxxxxxx
-		 *    0000 0080-0000 07FF | 110xxxxx 10xxxxxx
-		 *    0000 0800-0000 FFFF | 1110xxxx 10xxxxxx 10xxxxxx
-		 *    0001 0000-0010 FFFF | 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
-		 *    ---------------------------------------------------------------------
-		 *
-		 *   ABFN notation:
-		 *   ---------------------------------------------------------------------
-		 *   UTF8-octets = *( UTF8-char )
-		 *   UTF8-char   = UTF8-1 / UTF8-2 / UTF8-3 / UTF8-4
-		 *   UTF8-1      = %x00-7F
-		 *   UTF8-2      = %xC2-DF UTF8-tail
-		 *
-		 *   UTF8-3      = %xE0 %xA0-BF UTF8-tail / %xE1-EC 2( UTF8-tail ) /
-		 *                 %xED %x80-9F UTF8-tail / %xEE-EF 2( UTF8-tail )
-		 *   UTF8-4      = %xF0 %x90-BF 2( UTF8-tail ) / %xF1-F3 3( UTF8-tail ) /
-		 *                 %xF4 %x80-8F 2( UTF8-tail )
-		 *   UTF8-tail   = %x80-BF
-		 *   ---------------------------------------------------------------------
-		 * </pre>
-		 * @param string $str string to process.
-		 * @return array containing codepoints (UTF-8 characters values)
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 1.53.0.TC005 (2005-01-05)
-		 */
-		protected function UTF8StringToArray($str) {
-			if (isset($this->cache_UTF8StringToArray['_'.$str])) {
-				// return cached value
-				return($this->cache_UTF8StringToArray['_'.$str]);
-			}
-			// check cache size
-			if ($this->cache_size_UTF8StringToArray >= $this->cache_maxsize_UTF8StringToArray) {
-				// remove first element
-				array_shift($this->cache_UTF8StringToArray);
-			}
-			++$this->cache_size_UTF8StringToArray;
-			if (!$this->isunicode) {
-				// split string into array of equivalent codes
-				$strarr = array();
-				$strlen = strlen($str);
-				for ($i=0; $i < $strlen; ++$i) {
-					$strarr[] = ord($str{$i});
-				}
-				// insert new value on cache
-				$this->cache_UTF8StringToArray['_'.$str] = $strarr;
-				return $strarr;
-			}
-			$unichar = -1; // last unicode char
-			$unicode = array(); // array containing unicode values
-			$bytes  = array(); // array containing single character byte sequences
-			$numbytes  = 1; // number of octetc needed to represent the UTF-8 character
-			$str .= ''; // force $str to be a string
-			$length = strlen($str);
-			for ($i = 0; $i < $length; ++$i) {
-				$char = ord($str{$i}); // get one string character at time
-				if (count($bytes) == 0) { // get starting octect
-					if ($char <= 0x7F) {
-						$unichar = $char; // use the character "as is" because is ASCII
-						$numbytes = 1;
-					} elseif (($char >> 0x05) == 0x06) { // 2 bytes character (0x06 = 110 BIN)
-						$bytes[] = ($char - 0xC0) << 0x06;
-						$numbytes = 2;
-					} elseif (($char >> 0x04) == 0x0E) { // 3 bytes character (0x0E = 1110 BIN)
-						$bytes[] = ($char - 0xE0) << 0x0C;
-						$numbytes = 3;
-					} elseif (($char >> 0x03) == 0x1E) { // 4 bytes character (0x1E = 11110 BIN)
-						$bytes[] = ($char - 0xF0) << 0x12;
-						$numbytes = 4;
-					} else {
-						// use replacement character for other invalid sequences
-						$unichar = 0xFFFD;
-						$bytes = array();
-						$numbytes = 1;
-					}
-				} elseif (($char >> 0x06) == 0x02) { // bytes 2, 3 and 4 must start with 0x02 = 10 BIN
-					$bytes[] = $char - 0x80;
-					if (count($bytes) == $numbytes) {
-						// compose UTF-8 bytes to a single unicode value
-						$char = $bytes[0];
-						for ($j = 1; $j < $numbytes; ++$j) {
-							$char += ($bytes[$j] << (($numbytes - $j - 1) * 0x06));
-						}
-						if ((($char >= 0xD800) AND ($char <= 0xDFFF)) OR ($char >= 0x10FFFF)) {
-							/* The definition of UTF-8 prohibits encoding character numbers between
-							U+D800 and U+DFFF, which are reserved for use with the UTF-16
-							encoding form (as surrogate pairs) and do not directly represent
-							characters. */
-							$unichar = 0xFFFD; // use replacement character
-						} else {
-							$unichar = $char; // add char to array
-						}
-						// reset data for next char
-						$bytes = array();
-						$numbytes = 1;
+				$this->setPageBuffer($this->page, $s."\n", true);
+			}
+		} else {
+			$this->setBuffer($s."\n");
+		}
+	}
+
+	/**
+	 * Converts UTF-8 strings to codepoints array.<br>
+	 * Invalid byte sequences will be replaced with 0xFFFD (replacement character)<br>
+	 * Based on: http://www.faqs.org/rfcs/rfc3629.html
+	 * <pre>
+	 *    Char. number range  |        UTF-8 octet sequence
+	 *       (hexadecimal)    |              (binary)
+	 *    --------------------+-----------------------------------------------
+	 *    0000 0000-0000 007F | 0xxxxxxx
+	 *    0000 0080-0000 07FF | 110xxxxx 10xxxxxx
+	 *    0000 0800-0000 FFFF | 1110xxxx 10xxxxxx 10xxxxxx
+	 *    0001 0000-0010 FFFF | 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
+	 *    ---------------------------------------------------------------------
+	 *
+	 *   ABFN notation:
+	 *   ---------------------------------------------------------------------
+	 *   UTF8-octets = *( UTF8-char )
+	 *   UTF8-char   = UTF8-1 / UTF8-2 / UTF8-3 / UTF8-4
+	 *   UTF8-1      = %x00-7F
+	 *   UTF8-2      = %xC2-DF UTF8-tail
+	 *
+	 *   UTF8-3      = %xE0 %xA0-BF UTF8-tail / %xE1-EC 2( UTF8-tail ) /
+	 *                 %xED %x80-9F UTF8-tail / %xEE-EF 2( UTF8-tail )
+	 *   UTF8-4      = %xF0 %x90-BF 2( UTF8-tail ) / %xF1-F3 3( UTF8-tail ) /
+	 *                 %xF4 %x80-8F 2( UTF8-tail )
+	 *   UTF8-tail   = %x80-BF
+	 *   ---------------------------------------------------------------------
+	 * </pre>
+	 * @param $str (string) string to process.
+	 * @return array containing codepoints (UTF-8 characters values)
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 1.53.0.TC005 (2005-01-05)
+	 */
+	protected function UTF8StringToArray($str) {
+		// build a unique string key
+		$strkey = md5($str);
+		if (isset($this->cache_UTF8StringToArray[$strkey])) {
+			// return cached value
+			$chrarray = $this->cache_UTF8StringToArray[$strkey]['s'];
+			if (!isset($this->cache_UTF8StringToArray[$strkey]['f'][$this->CurrentFont['fontkey']])) {
+				if ($this->isunicode) {
+					foreach ($chrarray as $chr) {
+						// store this char for font subsetting
+						$this->CurrentFont['subsetchars'][$chr] = true;
 					}
+					// update font subsetchars
+					$this->setFontSubBuffer($this->CurrentFont['fontkey'], 'subsetchars', $this->CurrentFont['subsetchars']);
+				}
+				$this->cache_UTF8StringToArray[$strkey]['f'][$this->CurrentFont['fontkey']] = true;
+			}
+			return $chrarray;
+		}
+		// check cache size
+		if ($this->cache_size_UTF8StringToArray >= $this->cache_maxsize_UTF8StringToArray) {
+			// remove first element
+			array_shift($this->cache_UTF8StringToArray);
+		}
+		// new cache array for selected string
+		$this->cache_UTF8StringToArray[$strkey] = array('s' => array(), 'f' => array());
+		++$this->cache_size_UTF8StringToArray;
+		if (!$this->isunicode) {
+			// split string into array of equivalent codes
+			$strarr = array();
+			$strlen = strlen($str);
+			for ($i=0; $i < $strlen; ++$i) {
+				$strarr[] = ord($str{$i});
+			}
+			// insert new value on cache
+			$this->cache_UTF8StringToArray[$strkey]['s'] = $strarr;
+			$this->cache_UTF8StringToArray[$strkey]['f'][$this->CurrentFont['fontkey']] = true;
+			return $strarr;
+		}
+		$unichar = -1; // last unicode char
+		$unicode = array(); // array containing unicode values
+		$bytes  = array(); // array containing single character byte sequences
+		$numbytes = 1; // number of octetc needed to represent the UTF-8 character
+		$str .= ''; // force $str to be a string
+		$length = strlen($str);
+		for ($i = 0; $i < $length; ++$i) {
+			$char = ord($str{$i}); // get one string character at time
+			if (count($bytes) == 0) { // get starting octect
+				if ($char <= 0x7F) {
+					$unichar = $char; // use the character "as is" because is ASCII
+					$numbytes = 1;
+				} elseif (($char >> 0x05) == 0x06) { // 2 bytes character (0x06 = 110 BIN)
+					$bytes[] = ($char - 0xC0) << 0x06;
+					$numbytes = 2;
+				} elseif (($char >> 0x04) == 0x0E) { // 3 bytes character (0x0E = 1110 BIN)
+					$bytes[] = ($char - 0xE0) << 0x0C;
+					$numbytes = 3;
+				} elseif (($char >> 0x03) == 0x1E) { // 4 bytes character (0x1E = 11110 BIN)
+					$bytes[] = ($char - 0xF0) << 0x12;
+					$numbytes = 4;
 				} else {
 					// use replacement character for other invalid sequences
 					$unichar = 0xFFFD;
 					$bytes = array();
 					$numbytes = 1;
 				}
-				if ($unichar >= 0) {
-					// insert unicode value into array
-					$unicode[] = $unichar;
-					// store this char for font subsetting
-					$this->CurrentFont['subsetchars'][$unichar] = true;
-					$unichar = -1;
+			} elseif (($char >> 0x06) == 0x02) { // bytes 2, 3 and 4 must start with 0x02 = 10 BIN
+				$bytes[] = $char - 0x80;
+				if (count($bytes) == $numbytes) {
+					// compose UTF-8 bytes to a single unicode value
+					$char = $bytes[0];
+					for ($j = 1; $j < $numbytes; ++$j) {
+						$char += ($bytes[$j] << (($numbytes - $j - 1) * 0x06));
+					}
+					if ((($char >= 0xD800) AND ($char <= 0xDFFF)) OR ($char >= 0x10FFFF)) {
+						/* The definition of UTF-8 prohibits encoding character numbers between
+						U+D800 and U+DFFF, which are reserved for use with the UTF-16
+						encoding form (as surrogate pairs) and do not directly represent
+						characters. */
+						$unichar = 0xFFFD; // use replacement character
+					} else {
+						$unichar = $char; // add char to array
+					}
+					// reset data for next char
+					$bytes = array();
+					$numbytes = 1;
 				}
+			} else {
+				// use replacement character for other invalid sequences
+				$unichar = 0xFFFD;
+				$bytes = array();
+				$numbytes = 1;
+			}
+			if ($unichar >= 0) {
+				// insert unicode value into array
+				$unicode[] = $unichar;
+				// store this char for font subsetting
+				$this->CurrentFont['subsetchars'][$unichar] = true;
+				$unichar = -1;
+			}
+		}
+		// update font subsetchars
+		$this->setFontSubBuffer($this->CurrentFont['fontkey'], 'subsetchars', $this->CurrentFont['subsetchars']);
+		// insert new value on cache
+		$this->cache_UTF8StringToArray[$strkey]['s'] = $unicode;
+		$this->cache_UTF8StringToArray[$strkey]['f'][$this->CurrentFont['fontkey']] = true;
+		return $unicode;
+	}
+
+	/**
+	 * Converts UTF-8 strings to UTF16-BE.<br>
+	 * @param $str (string) string to process.
+	 * @param $setbom (boolean) if true set the Byte Order Mark (BOM = 0xFEFF)
+	 * @return string
+	 * @author Nicola Asuni
+	 * @since 1.53.0.TC005 (2005-01-05)
+	 * @see UTF8StringToArray(), arrUTF8ToUTF16BE()
+	 * @protected
+	 */
+	protected function UTF8ToUTF16BE($str, $setbom=true) {
+		if (!$this->isunicode) {
+			return $str; // string is not in unicode
+		}
+		$unicode = $this->UTF8StringToArray($str); // array containing UTF-8 unicode values
+		return $this->arrUTF8ToUTF16BE($unicode, $setbom);
+	}
+
+	/**
+	 * Converts UTF-8 strings to Latin1 when using the standard 14 core fonts.<br>
+	 * @param $str (string) string to process.
+	 * @return string
+	 * @author Andrew Whitehead, Nicola Asuni
+	 * @protected
+	 * @since 3.2.000 (2008-06-23)
+	 */
+	protected function UTF8ToLatin1($str) {
+		if (!$this->isunicode) {
+			return $str; // string is not in unicode
+		}
+		$outstr = ''; // string to be returned
+		$unicode = $this->UTF8StringToArray($str); // array containing UTF-8 unicode values
+		foreach ($unicode as $char) {
+			if ($char < 256) {
+				$outstr .= chr($char);
+			} elseif (array_key_exists($char, $this->unicode->uni_utf8tolatin)) {
+				// map from UTF-8
+				$outstr .= chr($this->unicode->uni_utf8tolatin[$char]);
+			} elseif ($char == 0xFFFD) {
+				// skip
+			} else {
+				$outstr .= '?';
 			}
-			// update font subsetchars
-			$this->setFontSubBuffer($this->CurrentFont['fontkey'], 'subsetchars', $this->CurrentFont['subsetchars']);
-			// insert new value on cache
-			$this->cache_UTF8StringToArray['_'.$str] = $unicode;
+		}
+		return $outstr;
+	}
+
+	/**
+	 * Converts UTF-8 characters array to array of Latin1 characters<br>
+	 * @param $unicode (array) array containing UTF-8 unicode values
+	 * @return array
+	 * @author Nicola Asuni
+	 * @protected
+	 * @since 4.8.023 (2010-01-15)
+	 */
+	protected function UTF8ArrToLatin1($unicode) {
+		if ((!$this->isunicode) OR $this->isUnicodeFont()) {
 			return $unicode;
 		}
+		$outarr = array(); // array to be returned
+		foreach ($unicode as $char) {
+			if ($char < 256) {
+				$outarr[] = $char;
+			} elseif (array_key_exists($char, $this->unicode->uni_utf8tolatin)) {
+				// map from UTF-8
+				$outarr[] = $this->unicode->uni_utf8tolatin[$char];
+			} elseif ($char == 0xFFFD) {
+				// skip
+			} else {
+				$outarr[] = 63; // '?' character
+			}
+		}
+		return $outarr;
+	}
 
-		/**
-		 * Converts UTF-8 strings to UTF16-BE.<br>
-		 * @param string $str string to process.
-		 * @param boolean $setbom if true set the Byte Order Mark (BOM = 0xFEFF)
-		 * @return string
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 1.53.0.TC005 (2005-01-05)
-		 * @uses UTF8StringToArray(), arrUTF8ToUTF16BE()
-		 */
-		protected function UTF8ToUTF16BE($str, $setbom=true) {
-			if (!$this->isunicode) {
-				return $str; // string is not in unicode
-			}
-			$unicode = $this->UTF8StringToArray($str); // array containing UTF-8 unicode values
-			return $this->arrUTF8ToUTF16BE($unicode, $setbom);
-		}
-
-		/**
-		 * Converts UTF-8 strings to Latin1 when using the standard 14 core fonts.<br>
-		 * @param string $str string to process.
-		 * @return string
-		 * @author Andrew Whitehead, Nicola Asuni
-		 * @access protected
-		 * @since 3.2.000 (2008-06-23)
-		 */
-		protected function UTF8ToLatin1($str) {
-			global $utf8tolatin;
-			if (!$this->isunicode) {
-				return $str; // string is not in unicode
-			}
-			$outstr = ''; // string to be returned
-			$unicode = $this->UTF8StringToArray($str); // array containing UTF-8 unicode values
-			foreach ($unicode as $char) {
-				if ($char < 256) {
-					$outstr .= chr($char);
-				} elseif (array_key_exists($char, $utf8tolatin)) {
-					// map from UTF-8
-					$outstr .= chr($utf8tolatin[$char]);
-				} elseif ($char == 0xFFFD) {
-					// skip
-				} else {
-					$outstr .= '?';
-				}
-			}
-			return $outstr;
-		}
-
-		/**
-		 * Converts UTF-8 characters array to array of Latin1 characters<br>
-		 * @param array $unicode array containing UTF-8 unicode values
-		 * @return array
-		 * @author Nicola Asuni
-		 * @access protected
-		 * @since 4.8.023 (2010-01-15)
-		 */
-		protected function UTF8ArrToLatin1($unicode) {
-			global $utf8tolatin;
-			if ((!$this->isunicode) OR ($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) {
-				return $unicode; // string is not in unicode
-			}
-			$outarr = array(); // array to be returned
-			foreach ($unicode as $char) {
-				if ($char < 256) {
-					$outarr[] = $char;
-				} elseif (array_key_exists($char, $utf8tolatin)) {
-					// map from UTF-8
-					$outarr[] = $utf8tolatin[$char];
-				} elseif ($char == 0xFFFD) {
-					// skip
+	/**
+	 * Converts array of UTF-8 characters to UTF16-BE string.<br>
+	 * Based on: http://www.faqs.org/rfcs/rfc2781.html
+	 * <pre>
+	 *   Encoding UTF-16:
+	 *
+	 *   Encoding of a single character from an ISO 10646 character value to
+	 *    UTF-16 proceeds as follows. Let U be the character number, no greater
+	 *    than 0x10FFFF.
+	 *
+	 *    1) If U < 0x10000, encode U as a 16-bit unsigned integer and
+	 *       terminate.
+	 *
+	 *    2) Let U' = U - 0x10000. Because U is less than or equal to 0x10FFFF,
+	 *       U' must be less than or equal to 0xFFFFF. That is, U' can be
+	 *       represented in 20 bits.
+	 *
+	 *    3) Initialize two 16-bit unsigned integers, W1 and W2, to 0xD800 and
+	 *       0xDC00, respectively. These integers each have 10 bits free to
+	 *       encode the character value, for a total of 20 bits.
+	 *
+	 *    4) Assign the 10 high-order bits of the 20-bit U' to the 10 low-order
+	 *       bits of W1 and the 10 low-order bits of U' to the 10 low-order
+	 *       bits of W2. Terminate.
+	 *
+	 *    Graphically, steps 2 through 4 look like:
+	 *    U' = yyyyyyyyyyxxxxxxxxxx
+	 *    W1 = 110110yyyyyyyyyy
+	 *    W2 = 110111xxxxxxxxxx
+	 * </pre>
+	 * @param $unicode (array) array containing UTF-8 unicode values
+	 * @param $setbom (boolean) if true set the Byte Order Mark (BOM = 0xFEFF)
+	 * @return string
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 2.1.000 (2008-01-08)
+	 * @see UTF8ToUTF16BE()
+	 */
+	protected function arrUTF8ToUTF16BE($unicode, $setbom=true) {
+		$outstr = ''; // string to be returned
+		if ($setbom) {
+			$outstr .= "\xFE\xFF"; // Byte Order Mark (BOM)
+		}
+		foreach ($unicode as $char) {
+			if ($char == 0x200b) {
+				// skip Unicode Character 'ZERO WIDTH SPACE' (DEC:8203, U+200B)
+			} elseif ($char == 0xFFFD) {
+				$outstr .= "\xFF\xFD"; // replacement character
+			} elseif ($char < 0x10000) {
+				$outstr .= chr($char >> 0x08);
+				$outstr .= chr($char & 0xFF);
+			} else {
+				$char -= 0x10000;
+				$w1 = 0xD800 | ($char >> 0x10);
+				$w2 = 0xDC00 | ($char & 0x3FF);
+				$outstr .= chr($w1 >> 0x08);
+				$outstr .= chr($w1 & 0xFF);
+				$outstr .= chr($w2 >> 0x08);
+				$outstr .= chr($w2 & 0xFF);
+			}
+		}
+		return $outstr;
+	}
+	// ====================================================
+
+	/**
+	 * Set header font.
+	 * @param $font (array) font
+	 * @public
+	 * @since 1.1
+	 */
+	public function setHeaderFont($font) {
+		$this->header_font = $font;
+	}
+
+	/**
+	 * Get header font.
+	 * @return array()
+	 * @public
+	 * @since 4.0.012 (2008-07-24)
+	 */
+	public function getHeaderFont() {
+		return $this->header_font;
+	}
+
+	/**
+	 * Set footer font.
+	 * @param $font (array) font
+	 * @public
+	 * @since 1.1
+	 */
+	public function setFooterFont($font) {
+		$this->footer_font = $font;
+	}
+
+	/**
+	 * Get Footer font.
+	 * @return array()
+	 * @public
+	 * @since 4.0.012 (2008-07-24)
+	 */
+	public function getFooterFont() {
+		return $this->footer_font;
+	}
+
+	/**
+	 * Set language array.
+	 * @param $language (array)
+	 * @public
+	 * @since 1.1
+	 */
+	public function setLanguageArray($language) {
+		$this->l = $language;
+		if (isset($this->l['a_meta_dir'])) {
+			$this->rtl = $this->l['a_meta_dir']=='rtl' ? true : false;
+		} else {
+			$this->rtl = false;
+		}
+	}
+
+	/**
+	 * Returns the PDF data.
+	 * @public
+	 */
+	public function getPDFData() {
+		if ($this->state < 3) {
+			$this->Close();
+		}
+		return $this->buffer;
+	}
+
+	/**
+	 * Output anchor link.
+	 * @param $url (string) link URL or internal link (i.e.: &lt;a href="#23,4.5"&gt;link to page 23 at 4.5 Y position&lt;/a&gt;)
+	 * @param $name (string) link name
+	 * @param $fill (boolean) Indicates if the cell background must be painted (true) or transparent (false).
+	 * @param $firstline (boolean) if true prints only the first line and return the remaining string.
+	 * @param $color (array) array of RGB text color
+	 * @param $style (string) font style (U, D, B, I)
+	 * @param $firstblock (boolean) if true the string is the starting of a line.
+	 * @return the number of cells used or the remaining text if $firstline = true;
+	 * @public
+	 */
+	public function addHtmlLink($url, $name, $fill=false, $firstline=false, $color='', $style=-1, $firstblock=false) {
+		if (!$this->empty_string($url) AND ($url{0} == '#')) {
+			// convert url to internal link
+			$lnkdata = explode(',', $url);
+			if (isset($lnkdata[0])) {
+				$page = intval(substr($lnkdata[0], 1));
+				if (empty($page) OR ($page <= 0)) {
+					$page = $this->page;
+				}
+				if (isset($lnkdata[1]) AND (strlen($lnkdata[1]) > 0)) {
+					$lnky = floatval($lnkdata[1]);
 				} else {
-					$outarr[] = 63; // '?' character
-				}
-			}
-			return $outarr;
-		}
-
-		/**
-		 * Converts array of UTF-8 characters to UTF16-BE string.<br>
-		 * Based on: http://www.faqs.org/rfcs/rfc2781.html
-	 	 * <pre>
-		 *   Encoding UTF-16:
-		 *
-		 *   Encoding of a single character from an ISO 10646 character value to
-		 *    UTF-16 proceeds as follows. Let U be the character number, no greater
-		 *    than 0x10FFFF.
-		 *
-		 *    1) If U < 0x10000, encode U as a 16-bit unsigned integer and
-		 *       terminate.
-		 *
-		 *    2) Let U' = U - 0x10000. Because U is less than or equal to 0x10FFFF,
-		 *       U' must be less than or equal to 0xFFFFF. That is, U' can be
-		 *       represented in 20 bits.
-		 *
-		 *    3) Initialize two 16-bit unsigned integers, W1 and W2, to 0xD800 and
-		 *       0xDC00, respectively. These integers each have 10 bits free to
-		 *       encode the character value, for a total of 20 bits.
-		 *
-		 *    4) Assign the 10 high-order bits of the 20-bit U' to the 10 low-order
-		 *       bits of W1 and the 10 low-order bits of U' to the 10 low-order
-		 *       bits of W2. Terminate.
-		 *
-		 *    Graphically, steps 2 through 4 look like:
-		 *    U' = yyyyyyyyyyxxxxxxxxxx
-		 *    W1 = 110110yyyyyyyyyy
-		 *    W2 = 110111xxxxxxxxxx
-		 * </pre>
-		 * @param array $unicode array containing UTF-8 unicode values
-		 * @param boolean $setbom if true set the Byte Order Mark (BOM = 0xFEFF)
-		 * @return string
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 2.1.000 (2008-01-08)
-		 * @see UTF8ToUTF16BE()
-		 */
-		protected function arrUTF8ToUTF16BE($unicode, $setbom=true) {
-			$outstr = ''; // string to be returned
-			if ($setbom) {
-				$outstr .= "\xFE\xFF"; // Byte Order Mark (BOM)
-			}
-			foreach ($unicode as $char) {
-				if ($char == 0x200b) {
-					// skip Unicode Character 'ZERO WIDTH SPACE' (DEC:8203, U+200B)
-				} elseif ($char == 0xFFFD) {
-					$outstr .= "\xFF\xFD"; // replacement character
-				} elseif ($char < 0x10000) {
-					$outstr .= chr($char >> 0x08);
-					$outstr .= chr($char & 0xFF);
+					$lnky = 0;
+				}
+				$url = $this->AddLink();
+				$this->SetLink($url, $lnky, $page);
+			}
+		}
+		// store current settings
+		$prevcolor = $this->fgcolor;
+		$prevstyle = $this->FontStyle;
+		if (empty($color)) {
+			$this->SetTextColorArray($this->htmlLinkColorArray);
+		} else {
+			$this->SetTextColorArray($color);
+		}
+		if ($style == -1) {
+			$this->SetFont('', $this->FontStyle.$this->htmlLinkFontStyle);
+		} else {
+			$this->SetFont('', $this->FontStyle.$style);
+		}
+		$ret = $this->Write($this->lasth, $name, $url, $fill, '', false, 0, $firstline, $firstblock, 0);
+		// restore settings
+		$this->SetFont('', $prevstyle);
+		$this->SetTextColorArray($prevcolor);
+		return $ret;
+	}
+
+	/**
+	 * Returns an array (RGB or CMYK) from an html color name or a six-digit (i.e. #3FE5AA) or three-digit (i.e. #7FF) hexadecimal color representation.
+	 * @param $hcolor (string) html color
+	 * @return array RGB or CMYK color, or false in case of error.
+	 * @public
+	 */
+	public function convertHTMLColorToDec($hcolor='#FFFFFF') {
+		$returncolor = false;
+		$color = preg_replace('/[\s]*/', '', $hcolor); // remove extra spaces
+		$color = strtolower($color);
+		if (($dotpos = strpos($color, '.')) !== false) {
+			// remove class parent (i.e.: color.red)
+			$color = substr($color, ($dotpos + 1));
+		}
+		if (strlen($color) == 0) {
+			return false;
+		}
+		// RGB ARRAY
+		if (substr($color, 0, 3) == 'rgb') {
+			$codes = substr($color, 4);
+			$codes = str_replace(')', '', $codes);
+			$returncolor = explode(',', $codes);
+			foreach ($returncolor as $key => $val) {
+				if (strpos($val, '%') > 0) {
+					// percentage
+					$returncolor[$key] = (255 * intval($val) / 100);
 				} else {
-					$char -= 0x10000;
-					$w1 = 0xD800 | ($char >> 0x10);
-					$w2 = 0xDC00 | ($char & 0x3FF);
-					$outstr .= chr($w1 >> 0x08);
-					$outstr .= chr($w1 & 0xFF);
-					$outstr .= chr($w2 >> 0x08);
-					$outstr .= chr($w2 & 0xFF);
-				}
-			}
-			return $outstr;
-		}
-		// ====================================================
-
-		/**
-	 	 * Set header font.
-		 * @param array $font font
-		 * @access public
-		 * @since 1.1
-		 */
-		public function setHeaderFont($font) {
-			$this->header_font = $font;
-		}
-
-		/**
-	 	 * Get header font.
-	 	 * @return array()
-		 * @access public
-		 * @since 4.0.012 (2008-07-24)
-		 */
-		public function getHeaderFont() {
-			return $this->header_font;
-		}
-
-		/**
-	 	 * Set footer font.
-		 * @param array $font font
-		 * @access public
-		 * @since 1.1
-		 */
-		public function setFooterFont($font) {
-			$this->footer_font = $font;
-		}
-
-		/**
-	 	 * Get Footer font.
-	 	 * @return array()
-		 * @access public
-		 * @since 4.0.012 (2008-07-24)
-		 */
-		public function getFooterFont() {
-			return $this->footer_font;
-		}
-
-		/**
-	 	 * Set language array.
-		 * @param array $language
-		 * @access public
-		 * @since 1.1
-		 */
-		public function setLanguageArray($language) {
-			$this->l = $language;
-			if (isset($this->l['a_meta_dir'])) {
-				$this->rtl = $this->l['a_meta_dir']=='rtl' ? true : false;
-			} else {
-				$this->rtl = false;
+					$returncolor[$key] = intval($val);
+				}
+				// normalize value
+				$returncolor[$key] = max(0, min(255, $returncolor[$key]));
 			}
+			return $returncolor;
 		}
-
-		/**
-		 * Returns the PDF data.
-		 * @access public
-		 */
-		public function getPDFData() {
-			if ($this->state < 3) {
-				$this->Close();
+		// CMYK ARRAY
+		if (substr($color, 0, 4) == 'cmyk') {
+			$codes = substr($color, 5);
+			$codes = str_replace(')', '', $codes);
+			$returncolor = explode(',', $codes);
+			foreach ($returncolor as $key => $val) {
+				if (strpos($val, '%') !== false) {
+					// percentage
+					$returncolor[$key] = (100 * intval($val) / 100);
+				} else {
+					$returncolor[$key] = intval($val);
+				}
+				// normalize value
+				$returncolor[$key] = max(0, min(100, $returncolor[$key]));
 			}
-			return $this->buffer;
+			return $returncolor;
 		}
-
-		/**
-		 * Output anchor link.
-		 * @param string $url link URL or internal link (i.e.: &lt;a href="#23"&gt;link to page 23&lt;/a&gt;)
-		 * @param string $name link name
-		 * @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0.
-		 * @param boolean $firstline if true prints only the first line and return the remaining string.
-		 * @param array $color array of RGB text color
-		 * @param string $style font style (U, D, B, I)
-		 * @param boolean $firstblock if true the string is the starting of a line.
-		 * @return the number of cells used or the remaining text if $firstline = true;
-		 * @access public
-		 */
-		public function addHtmlLink($url, $name, $fill=0, $firstline=false, $color='', $style=-1, $firstblock=false) {
-			if (!$this->empty_string($url) AND ($url{0} == '#')) {
-				// convert url to internal link
-				$page = intval(substr($url, 1));
-				$url = $this->AddLink();
-				$this->SetLink($url, 0, $page);
-			}
-			// store current settings
-			$prevcolor = $this->fgcolor;
-			$prevstyle = $this->FontStyle;
-			if (empty($color)) {
-				$this->SetTextColorArray($this->htmlLinkColorArray);
-			} else {
-				$this->SetTextColorArray($color);
-			}
-			if ($style == -1) {
-				$this->SetFont('', $this->FontStyle.$this->htmlLinkFontStyle);
+		// COLOR NAME
+		if (substr($color, 0, 1) != '#') {
+			// decode color name
+			if (isset($this->webcolor[$color])) {
+				// web color
+				$color_code = $this->webcolor[$color];
+			} elseif (isset($this->spot_colors[$hcolor])) {
+				// custom defined spot color
+				return array($this->spot_colors[$hcolor]['c'], $this->spot_colors[$hcolor]['m'], $this->spot_colors[$hcolor]['y'], $this->spot_colors[$hcolor]['k'], $hcolor);
+			} elseif (isset($this->spotcolor[$color])) {
+				// spot color from configuration file
+				return $this->spotcolor[$color];
 			} else {
-				$this->SetFont('', $this->FontStyle.$style);
-			}
-			$ret = $this->Write($this->lasth, $name, $url, $fill, '', false, 0, $firstline, $firstblock, 0);
-			// restore settings
-			$this->SetFont('', $prevstyle);
-			$this->SetTextColorArray($prevcolor);
-			return $ret;
-		}
-
-		/**
-		 * Returns an associative array (keys: R,G,B) from an html color name or a six-digit or three-digit hexadecimal color representation (i.e. #3FE5AA or #7FF).
-		 * @param string $color html color
-		 * @return array RGB color or false in case of error.
-		 * @access public
-		 */
-		public function convertHTMLColorToDec($color='#FFFFFF') {
-			global $webcolor;
-			$returncolor = false;
-			$color = preg_replace('/[\s]*/', '', $color); // remove extra spaces
-			$color = strtolower($color);
-			if (($dotpos = strpos($color, '.')) !== false) {
-				// remove class parent (i.e.: color.red)
-				$color = substr($color, ($dotpos + 1));
-			}
-			if (strlen($color) == 0) {
 				return false;
 			}
-			// RGB ARRAY
-			if (substr($color, 0, 3) == 'rgb') {
-				$codes = substr($color, 4);
-				$codes = str_replace(')', '', $codes);
-				$returncolor = explode(',', $codes);
-				return $returncolor;
-			}
-			// CMYK ARRAY
-			if (substr($color, 0, 4) == 'cmyk') {
-				$codes = substr($color, 5);
-				$codes = str_replace(')', '', $codes);
-				$returncolor = explode(',', $codes);
-				return $returncolor;
-			}
-			// COLOR NAME
-			if (substr($color, 0, 1) != '#') {
-				// decode color name
-				if (isset($webcolor[$color])) {
-					$color_code = $webcolor[$color];
-				} else {
-					return false;
-				}
-			} else {
-				$color_code = substr($color, 1);
-			}
-			// RGB VALUE
-			switch (strlen($color_code)) {
-				case 3: {
-					// three-digit hexadecimal representation
-					$r = substr($color_code, 0, 1);
-					$g = substr($color_code, 1, 1);
-					$b = substr($color_code, 2, 1);
-					$returncolor['R'] = hexdec($r.$r);
-					$returncolor['G'] = hexdec($g.$g);
-					$returncolor['B'] = hexdec($b.$b);
-					break;
-				}
-				case 6: {
-					// six-digit hexadecimal representation
-					$returncolor['R'] = hexdec(substr($color_code, 0, 2));
-					$returncolor['G'] = hexdec(substr($color_code, 2, 2));
-					$returncolor['B'] = hexdec(substr($color_code, 4, 2));
-					break;
-				}
-			}
-			return $returncolor;
+		} else {
+			$color_code = substr($color, 1);
+		}
+		// RGB VALUE
+		switch (strlen($color_code)) {
+			case 3: {
+				// three-digit hexadecimal representation
+				$r = substr($color_code, 0, 1);
+				$g = substr($color_code, 1, 1);
+				$b = substr($color_code, 2, 1);
+				$returncolor = array();
+				$returncolor['R'] = max(0, min(255, hexdec($r.$r)));
+				$returncolor['G'] = max(0, min(255, hexdec($g.$g)));
+				$returncolor['B'] = max(0, min(255, hexdec($b.$b)));
+				break;
+			}
+			case 6: {
+				// six-digit hexadecimal representation
+				$returncolor = array();
+				$returncolor['R'] = max(0, min(255, hexdec(substr($color_code, 0, 2))));
+				$returncolor['G'] = max(0, min(255, hexdec(substr($color_code, 2, 2))));
+				$returncolor['B'] = max(0, min(255, hexdec(substr($color_code, 4, 2))));
+				break;
+			}
+		}
+		return $returncolor;
+	}
+
+	/**
+	 * Converts pixels to User's Units.
+	 * @param $px (int) pixels
+	 * @return float value in user's unit
+	 * @public
+	 * @see setImageScale(), getImageScale()
+	 */
+	public function pixelsToUnits($px) {
+		return ($px / ($this->imgscale * $this->k));
+	}
+
+	/**
+	 * Reverse function for htmlentities.
+	 * Convert entities in UTF-8.
+	 * @param $text_to_convert (string) Text to convert.
+	 * @return string converted text string
+	 * @public
+	 */
+	public function unhtmlentities($text_to_convert) {
+		return html_entity_decode($text_to_convert, ENT_QUOTES, $this->encoding);
+	}
+
+	// ENCRYPTION METHODS ----------------------------------
+
+	/**
+	 * Returns a string containing random data to be used as a seed for encryption methods.
+	 * @param $seed (string) starting seed value
+	 * @return string containing random data
+	 * @author Nicola Asuni
+	 * @since 5.9.006 (2010-10-19)
+	 * @protected
+	 */
+	protected function getRandomSeed($seed='') {
+		$seed .= microtime();
+		if (function_exists('openssl_random_pseudo_bytes')) {
+			$seed .= openssl_random_pseudo_bytes(512);
 		}
+		$seed .= uniqid('', true);
+		$seed .= rand();
+		$seed .= getmypid();
+		$seed .= __FILE__;
+		$seed .= $this->bufferlen;
+		if (isset($_SERVER['REMOTE_ADDR'])) {
+			$seed .= $_SERVER['REMOTE_ADDR'];
+		}
+		if (isset($_SERVER['HTTP_USER_AGENT'])) {
+			$seed .= $_SERVER['HTTP_USER_AGENT'];
+		}
+		if (isset($_SERVER['HTTP_ACCEPT'])) {
+			$seed .= $_SERVER['HTTP_ACCEPT'];
+		}
+		if (isset($_SERVER['HTTP_ACCEPT_ENCODING'])) {
+			$seed .= $_SERVER['HTTP_ACCEPT_ENCODING'];
+		}
+		if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
+			$seed .= $_SERVER['HTTP_ACCEPT_LANGUAGE'];
+		}
+		if (isset($_SERVER['HTTP_ACCEPT_CHARSET'])) {
+			$seed .= $_SERVER['HTTP_ACCEPT_CHARSET'];
+		}
+		$seed .= rand();
+		$seed .= uniqid('', true);
+		$seed .= microtime();
+		return $seed;
+	}
 
-		/**
-		 * Converts pixels to User's Units.
-		 * @param int $px pixels
-		 * @return float value in user's unit
-		 * @access public
-		 * @see setImageScale(), getImageScale()
-		 */
-		public function pixelsToUnits($px) {
-			return ($px / ($this->imgscale * $this->k));
-		}
-
-		/**
-		 * Reverse function for htmlentities.
-		 * Convert entities in UTF-8.
-		 * @param $text_to_convert Text to convert.
-		 * @return string converted
-		 * @access public
-		 */
-		public function unhtmlentities($text_to_convert) {
-			return html_entity_decode($text_to_convert, ENT_QUOTES, $this->encoding);
-		}
-
-		// ENCRYPTION METHODS ----------------------------------
-
-		/**
-		 * Compute encryption key depending on object number where the encrypted data is stored.
-		 * This is used for all strings and streams without crypt filter specifier.
-		 * @param int $n object number
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 2.0.000 (2008-01-02)
-		 */
-		protected function _objectkey($n) {
-			$objkey = $this->encryptdata['key'].pack('VXxx', $n);
-			if ($this->encryptdata['mode'] == 2) {
-				// AES padding
-				$objkey .= "\x73\x41\x6C\x54";
-			}
-			$objkey = substr($this->_md5_16($objkey), 0, (($this->encryptdata['Length'] / 8) + 5));
-			$objkey = substr($objkey, 0, 16);
-			return $objkey;
-		}
-
-		/**
-		 * Encrypt the input string.
-		 * @param int $n object number
-		 * @param string $s data string to encrypt
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 5.0.005 (2010-05-11)
-		 */
-		protected function _encrypt_data($n, $s) {
-			if (!$this->encrypted) {
-				return $s;
-			}
-			switch ($this->encryptdata['mode']) {
-				case 0:   // RC4 40 bit
-				case 1: { // RC4 128 bit
-					$s = $this->_RC4($this->_objectkey($n), $s);
-					break;
-				}
-				case 2: { // AES 128 bit
-					$s = $this->_AES($this->_objectkey($n), $s);
-					break;
-				}
-			}
-			return $s;
+	/**
+	 * Compute encryption key depending on object number where the encrypted data is stored.
+	 * This is used for all strings and streams without crypt filter specifier.
+	 * @param $n (int) object number
+	 * @return int object key
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 2.0.000 (2008-01-02)
+	 */
+	protected function _objectkey($n) {
+		$objkey = $this->encryptdata['key'].pack('VXxx', $n);
+		if ($this->encryptdata['mode'] == 2) { // AES-128
+			// AES padding
+			$objkey .= "\x73\x41\x6C\x54"; // sAlT
 		}
+		$objkey = substr($this->_md5_16($objkey), 0, (($this->encryptdata['Length'] / 8) + 5));
+		$objkey = substr($objkey, 0, 16);
+		return $objkey;
+	}
 
-		/**
-		 * Put encryption on PDF document.
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 2.0.000 (2008-01-02)
-		 */
-		protected function _putencryption() {
-			if (!$this->encrypted) {
-				return;
-			}
-			$this->_newobj();
-			$this->encryptdata['objid'] = $this->n;
-			$out = '<<';
-			if (!isset($this->encryptdata['Filter']) OR empty($this->encryptdata['Filter'])) {
-				$this->encryptdata['Filter'] = 'Standard';
+	/**
+	 * Encrypt the input string.
+	 * @param $n (int) object number
+	 * @param $s (string) data string to encrypt
+	 * @return encrypted string
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 5.0.005 (2010-05-11)
+	 */
+	protected function _encrypt_data($n, $s) {
+		if (!$this->encrypted) {
+			return $s;
+		}
+		switch ($this->encryptdata['mode']) {
+			case 0:   // RC4-40
+			case 1: { // RC4-128
+				$s = $this->_RC4($this->_objectkey($n), $s);
+				break;
 			}
-			$out .= ' /Filter /'.$this->encryptdata['Filter'];
-			if (isset($this->encryptdata['SubFilter']) AND !empty($this->encryptdata['SubFilter'])) {
-				$out .= ' /SubFilter /'.$this->encryptdata['SubFilter'];
+			case 2: { // AES-128
+				$s = $this->_AES($this->_objectkey($n), $s);
+				break;
 			}
-			if (!isset($this->encryptdata['V']) OR empty($this->encryptdata['V'])) {
-				$this->encryptdata['V'] = 1;
+			case 3: { // AES-256
+				$s = $this->_AES($this->encryptdata['key'], $s);
+				break;
 			}
-			// V is a code specifying the algorithm to be used in encrypting and decrypting the document
-			$out .= ' /V '.$this->encryptdata['V'];
-			if (($this->encryptdata['V'] == 2) OR ($this->encryptdata['V'] == 3)) {
-				if (isset($this->encryptdata['Length']) AND !empty($this->encryptdata['Length'])) {
-					// The length of the encryption key, in bits. The value shall be a multiple of 8, in the range 40 to 128
-					$out .= ' /Length '.$this->encryptdata['Length'];
-				} else {
-					$out .= ' /Length 40';
-				}
-			} elseif ($this->encryptdata['V'] == 4) {
-				if (!isset($this->encryptdata['StmF']) OR empty($this->encryptdata['StmF'])) {
-					$this->encryptdata['StmF'] = 'Identity';
-				}
-				if (!isset($this->encryptdata['StrF']) OR empty($this->encryptdata['StrF'])) {
-					// The name of the crypt filter that shall be used when decrypting all strings in the document.
-					$this->encryptdata['StrF'] = 'Identity';
-				}
-				// A dictionary whose keys shall be crypt filter names and whose values shall be the corresponding crypt filter dictionaries.
-				if (isset($this->encryptdata['CF']) AND !empty($this->encryptdata['CF'])) {
-					$out .= ' /CF <<';
-					$out .= ' /'.$this->encryptdata['StmF'].' <<';
-					$out .= ' /Type /CryptFilter';
-					if (isset($this->encryptdata['CF']['CFM']) AND !empty($this->encryptdata['CF']['CFM'])) {
-						// The method used
-						$out .= ' /CFM /'.$this->encryptdata['CF']['CFM'];
-						if ($this->encryptdata['pubkey']) {
-							$out .= ' /Recipients [';
-							foreach ($this->encryptdata['Recipients'] as $rec) {
-								$out .= ' <'.$rec.'>';
-							}
-							$out .= ' ]';
-							if (isset($this->encryptdata['CF']['EncryptMetadata']) AND (!$this->encryptdata['CF']['EncryptMetadata'])) {
-								$out .= ' /EncryptMetadata false';
-							} else {
-								$out .= ' /EncryptMetadata true';
-							}
-						}
-					} else {
-						$out .= ' /CFM /None';
-					}
-					if (isset($this->encryptdata['CF']['AuthEvent']) AND !empty($this->encryptdata['CF']['AuthEvent'])) {
-						// The event to be used to trigger the authorization that is required to access encryption keys used by this filter.
-						$out .= ' /AuthEvent /'.$this->encryptdata['CF']['AuthEvent'];
-					} else {
-						$out .= ' /AuthEvent /DocOpen';
-					}
-					if (isset($this->encryptdata['CF']['Length']) AND !empty($this->encryptdata['CF']['Length'])) {
-						// The bit length of the encryption key.
-						$out .= ' /Length '.$this->encryptdata['CF']['Length'];
-					}
-					$out .= ' >> >>';
-				}
-				// The name of the crypt filter that shall be used by default when decrypting streams.
-				$out .= ' /StmF /'.$this->encryptdata['StmF'];
+		}
+		return $s;
+	}
+
+	/**
+	 * Put encryption on PDF document.
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 2.0.000 (2008-01-02)
+	 */
+	protected function _putencryption() {
+		if (!$this->encrypted) {
+			return;
+		}
+		$this->encryptdata['objid'] = $this->_newobj();
+		$out = '<<';
+		if (!isset($this->encryptdata['Filter']) OR empty($this->encryptdata['Filter'])) {
+			$this->encryptdata['Filter'] = 'Standard';
+		}
+		$out .= ' /Filter /'.$this->encryptdata['Filter'];
+		if (isset($this->encryptdata['SubFilter']) AND !empty($this->encryptdata['SubFilter'])) {
+			$out .= ' /SubFilter /'.$this->encryptdata['SubFilter'];
+		}
+		if (!isset($this->encryptdata['V']) OR empty($this->encryptdata['V'])) {
+			$this->encryptdata['V'] = 1;
+		}
+		// V is a code specifying the algorithm to be used in encrypting and decrypting the document
+		$out .= ' /V '.$this->encryptdata['V'];
+		if (isset($this->encryptdata['Length']) AND !empty($this->encryptdata['Length'])) {
+			// The length of the encryption key, in bits. The value shall be a multiple of 8, in the range 40 to 256
+			$out .= ' /Length '.$this->encryptdata['Length'];
+		} else {
+			$out .= ' /Length 40';
+		}
+		if ($this->encryptdata['V'] >= 4) {
+			if (!isset($this->encryptdata['StmF']) OR empty($this->encryptdata['StmF'])) {
+				$this->encryptdata['StmF'] = 'Identity';
+			}
+			if (!isset($this->encryptdata['StrF']) OR empty($this->encryptdata['StrF'])) {
 				// The name of the crypt filter that shall be used when decrypting all strings in the document.
-				$out .= ' /StrF /'.$this->encryptdata['StrF'];
-				if (isset($this->encryptdata['EFF']) AND !empty($this->encryptdata['EFF'])) {
-					// The name of the crypt filter that shall be used when encrypting embedded file streams that do not have their own crypt filter specifier.
-					$out .= ' /EFF /'.$this->encryptdata[''];
-				}
-			}
-			// Additional encryption dictionary entries for the standard security handler
-			if ($this->encryptdata['pubkey']) {
-				if (($this->encryptdata['V'] < 4) AND isset($this->encryptdata['Recipients']) AND !empty($this->encryptdata['Recipients'])) {
-					$out .= ' /Recipients [';
-					foreach ($this->encryptdata['Recipients'] as $rec) {
-						$out .= ' <'.$rec.'>';
+				$this->encryptdata['StrF'] = 'Identity';
+			}
+			// A dictionary whose keys shall be crypt filter names and whose values shall be the corresponding crypt filter dictionaries.
+			if (isset($this->encryptdata['CF']) AND !empty($this->encryptdata['CF'])) {
+				$out .= ' /CF <<';
+				$out .= ' /'.$this->encryptdata['StmF'].' <<';
+				$out .= ' /Type /CryptFilter';
+				if (isset($this->encryptdata['CF']['CFM']) AND !empty($this->encryptdata['CF']['CFM'])) {
+					// The method used
+					$out .= ' /CFM /'.$this->encryptdata['CF']['CFM'];
+					if ($this->encryptdata['pubkey']) {
+						$out .= ' /Recipients [';
+						foreach ($this->encryptdata['Recipients'] as $rec) {
+							$out .= ' <'.$rec.'>';
+						}
+						$out .= ' ]';
+						if (isset($this->encryptdata['CF']['EncryptMetadata']) AND (!$this->encryptdata['CF']['EncryptMetadata'])) {
+							$out .= ' /EncryptMetadata false';
+						} else {
+							$out .= ' /EncryptMetadata true';
+						}
 					}
-					$out .= ' ]';
-				}
-			} else {
-				$out .= ' /R';
-				if ($this->encryptdata['V'] == 4) {
-					$out .= ' 4';
-				} elseif ($this->encryptdata['V'] < 2) {
-					$out .= ' 2';
 				} else {
-					$out .= ' 3';
+					$out .= ' /CFM /None';
 				}
-				$out .= ' /O ('.$this->_escape($this->encryptdata['O']).')';
-				$out .= ' /U ('.$this->_escape($this->encryptdata['U']).')';
-				$out .= ' /P '.$this->encryptdata['P'];
-				if (isset($this->encryptdata['EncryptMetadata']) AND (!$this->encryptdata['EncryptMetadata'])) {
-					$out .= ' /EncryptMetadata false';
+				if (isset($this->encryptdata['CF']['AuthEvent']) AND !empty($this->encryptdata['CF']['AuthEvent'])) {
+					// The event to be used to trigger the authorization that is required to access encryption keys used by this filter.
+					$out .= ' /AuthEvent /'.$this->encryptdata['CF']['AuthEvent'];
 				} else {
-					$out .= ' /EncryptMetadata true';
-				}
+					$out .= ' /AuthEvent /DocOpen';
+				}
+				if (isset($this->encryptdata['CF']['Length']) AND !empty($this->encryptdata['CF']['Length'])) {
+					// The bit length of the encryption key.
+					$out .= ' /Length '.$this->encryptdata['CF']['Length'];
+				}
+				$out .= ' >> >>';
+			}
+			// The name of the crypt filter that shall be used by default when decrypting streams.
+			$out .= ' /StmF /'.$this->encryptdata['StmF'];
+			// The name of the crypt filter that shall be used when decrypting all strings in the document.
+			$out .= ' /StrF /'.$this->encryptdata['StrF'];
+			if (isset($this->encryptdata['EFF']) AND !empty($this->encryptdata['EFF'])) {
+				// The name of the crypt filter that shall be used when encrypting embedded file streams that do not have their own crypt filter specifier.
+				$out .= ' /EFF /'.$this->encryptdata[''];
+			}
+		}
+		// Additional encryption dictionary entries for the standard security handler
+		if ($this->encryptdata['pubkey']) {
+			if (($this->encryptdata['V'] < 4) AND isset($this->encryptdata['Recipients']) AND !empty($this->encryptdata['Recipients'])) {
+				$out .= ' /Recipients [';
+				foreach ($this->encryptdata['Recipients'] as $rec) {
+					$out .= ' <'.$rec.'>';
+				}
+				$out .= ' ]';
+			}
+		} else {
+			$out .= ' /R';
+			if ($this->encryptdata['V'] == 5) { // AES-256
+				$out .= ' 5';
+				$out .= ' /OE ('.$this->_escape($this->encryptdata['OE']).')';
+				$out .= ' /UE ('.$this->_escape($this->encryptdata['UE']).')';
+				$out .= ' /Perms ('.$this->_escape($this->encryptdata['perms']).')';
+			} elseif ($this->encryptdata['V'] == 4) { // AES-128
+				$out .= ' 4';
+			} elseif ($this->encryptdata['V'] < 2) { // RC-40
+				$out .= ' 2';
+			} else { // RC-128
+				$out .= ' 3';
+			}
+			$out .= ' /O ('.$this->_escape($this->encryptdata['O']).')';
+			$out .= ' /U ('.$this->_escape($this->encryptdata['U']).')';
+			$out .= ' /P '.$this->encryptdata['P'];
+			if (isset($this->encryptdata['EncryptMetadata']) AND (!$this->encryptdata['EncryptMetadata'])) {
+				$out .= ' /EncryptMetadata false';
+			} else {
+				$out .= ' /EncryptMetadata true';
 			}
-			$out .= ' >>';
-			$out .= "\n".'endobj';
-			$this->_out($out);
 		}
+		$out .= ' >>';
+		$out .= "\n".'endobj';
+		$this->_out($out);
+	}
 
-		/**
-		 * Returns the input text exrypted using RC4 algorithm and the specified key.
-		 * RC4 is the standard encryption algorithm used in PDF format
-		 * @param string $key encryption key
-		 * @param String $text input text to be encrypted
-		 * @return String encrypted text
-		 * @access protected
-		 * @since 2.0.000 (2008-01-02)
-		 * @author Klemen Vodopivec, Nicola Asuni
-		 */
-		protected function _RC4($key, $text) {
-			if (function_exists('mcrypt_decrypt') AND ($out = @mcrypt_decrypt(@MCRYPT_ARCFOUR, $key, $text, @MCRYPT_MODE_STREAM))) {
-				// try to use mcrypt function if exist
-				return $out;
-			}
-			if ($this->last_enc_key != $key) {
-				$k = str_repeat($key, ((256 / strlen($key)) + 1));
-				$rc4 = range(0, 255);
-				$j = 0;
-				for ($i = 0; $i < 256; ++$i) {
-					$t = $rc4[$i];
-					$j = ($j + $t + ord($k{$i})) % 256;
-					$rc4[$i] = $rc4[$j];
-					$rc4[$j] = $t;
-				}
-				$this->last_enc_key = $key;
-				$this->last_enc_key_c = $rc4;
-			} else {
-				$rc4 = $this->last_enc_key_c;
-			}
-			$len = strlen($text);
-			$a = 0;
-			$b = 0;
-			$out = '';
-			for ($i = 0; $i < $len; ++$i) {
-				$a = ($a + 1) % 256;
-				$t = $rc4[$a];
-				$b = ($b + $t) % 256;
-				$rc4[$a] = $rc4[$b];
-				$rc4[$b] = $t;
-				$k = $rc4[($rc4[$a] + $rc4[$b]) % 256];
-				$out .= chr(ord($text{$i}) ^ $k);
-			}
+	/**
+	 * Returns the input text encrypted using RC4 algorithm and the specified key.
+	 * RC4 is the standard encryption algorithm used in PDF format
+	 * @param $key (string) encryption key
+	 * @param $text (String) input text to be encrypted
+	 * @return String encrypted text
+	 * @protected
+	 * @since 2.0.000 (2008-01-02)
+	 * @author Klemen Vodopivec, Nicola Asuni
+	 */
+	protected function _RC4($key, $text) {
+		if (function_exists('mcrypt_decrypt') AND ($out = @mcrypt_decrypt(MCRYPT_ARCFOUR, $key, $text, MCRYPT_MODE_STREAM, ''))) {
+			// try to use mcrypt function if exist
 			return $out;
 		}
+		if ($this->last_enc_key != $key) {
+			$k = str_repeat($key, ((256 / strlen($key)) + 1));
+			$rc4 = range(0, 255);
+			$j = 0;
+			for ($i = 0; $i < 256; ++$i) {
+				$t = $rc4[$i];
+				$j = ($j + $t + ord($k{$i})) % 256;
+				$rc4[$i] = $rc4[$j];
+				$rc4[$j] = $t;
+			}
+			$this->last_enc_key = $key;
+			$this->last_enc_key_c = $rc4;
+		} else {
+			$rc4 = $this->last_enc_key_c;
+		}
+		$len = strlen($text);
+		$a = 0;
+		$b = 0;
+		$out = '';
+		for ($i = 0; $i < $len; ++$i) {
+			$a = ($a + 1) % 256;
+			$t = $rc4[$a];
+			$b = ($b + $t) % 256;
+			$rc4[$a] = $rc4[$b];
+			$rc4[$b] = $t;
+			$k = $rc4[($rc4[$a] + $rc4[$b]) % 256];
+			$out .= chr(ord($text{$i}) ^ $k);
+		}
+		return $out;
+	}
+
+	/**
+	 * Returns the input text exrypted using AES algorithm and the specified key.
+	 * This method requires mcrypt.
+	 * @param $key (string) encryption key
+	 * @param $text (String) input text to be encrypted
+	 * @return String encrypted text
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 5.0.005 (2010-05-11)
+	 */
+	protected function _AES($key, $text) {
+		// padding (RFC 2898, PKCS #5: Password-Based Cryptography Specification Version 2.0)
+		$padding = 16 - (strlen($text) % 16);
+		$text .= str_repeat(chr($padding), $padding);
+		$iv = mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC), MCRYPT_RAND);
+		$text = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $text, MCRYPT_MODE_CBC, $iv);
+		$text = $iv.$text;
+		return $text;
+	}
+
+	/**
+	 * Encrypts a string using MD5 and returns it's value as a binary string.
+	 * @param $str (string) input string
+	 * @return String MD5 encrypted binary string
+	 * @protected
+	 * @since 2.0.000 (2008-01-02)
+	 * @author Klemen Vodopivec
+	 */
+	protected function _md5_16($str) {
+		return pack('H*', md5($str));
+	}
+
+	/**
+	 * Compute U value (used for encryption)
+	 * @return string U value
+	 * @protected
+	 * @since 2.0.000 (2008-01-02)
+	 * @author Nicola Asuni
+	 */
+	protected function _Uvalue() {
+		if ($this->encryptdata['mode'] == 0) { // RC4-40
+			return $this->_RC4($this->encryptdata['key'], $this->enc_padding);
+		} elseif ($this->encryptdata['mode'] < 3) { // RC4-128, AES-128
+			$tmp = $this->_md5_16($this->enc_padding.$this->encryptdata['fileid']);
+			$enc = $this->_RC4($this->encryptdata['key'], $tmp);
+			$len = strlen($tmp);
+			for ($i = 1; $i <= 19; ++$i) {
+				$ek = '';
+				for ($j = 0; $j < $len; ++$j) {
+					$ek .= chr(ord($this->encryptdata['key']{$j}) ^ $i);
+				}
+				$enc = $this->_RC4($ek, $enc);
+			}
+			$enc .= str_repeat("\x00", 16);
+			return substr($enc, 0, 32);
+		} elseif ($this->encryptdata['mode'] == 3) { // AES-256
+			$seed = $this->_md5_16($this->getRandomSeed());
+			// User Validation Salt
+			$this->encryptdata['UVS'] = substr($seed, 0, 8);
+			// User Key Salt
+			$this->encryptdata['UKS'] = substr($seed, 8, 16);
+			return hash('sha256', $this->encryptdata['user_password'].$this->encryptdata['UVS'], true).$this->encryptdata['UVS'].$this->encryptdata['UKS'];
+		}
+	}
+
+	/**
+	 * Compute UE value (used for encryption)
+	 * @return string UE value
+	 * @protected
+	 * @since 5.9.006 (2010-10-19)
+	 * @author Nicola Asuni
+	 */
+	protected function _UEvalue() {
+		$hashkey = hash('sha256', $this->encryptdata['user_password'].$this->encryptdata['UKS'], true);
+		$iv = str_repeat("\x00", mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC));
+		return mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $hashkey, $this->encryptdata['key'], MCRYPT_MODE_CBC, $iv);
+	}
 
-		/**
-		 * Returns the input text exrypted using AES algorithm and the specified key.
-		 * This method requires mcrypt.
-		 * @param string $key encryption key
-		 * @param String $text input text to be encrypted
-		 * @return String encrypted text
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 5.0.005 (2010-05-11)
-		 */
-		protected function _AES($key, $text) {
-			// padding (RFC 2898, PKCS #5: Password-Based Cryptography Specification Version 2.0)
-			$padding = 16 - (strlen($text) % 16);
-			$text .= str_repeat(chr($padding), $padding);
-			$iv = mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC), MCRYPT_RAND);
-			$text = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $text, MCRYPT_MODE_CBC, $iv);
-			$text = $iv.$text;
-			return $text;
-		}
-
-		/**
-		 * Encrypts a string using MD5 and returns it's value as a binary string.
-		 * @param string $str input string
-		 * @return String MD5 encrypted binary string
-		 * @access protected
-		 * @since 2.0.000 (2008-01-02)
-		 * @author Klemen Vodopivec
-		 */
-		protected function _md5_16($str) {
-			return pack('H*', md5($str));
-		}
-
-		/**
-		 * Compute O value (used for encryption)
-		 * @param String $user_pass user password
-		 * @param String $owner_pass user password
-		 * @return String O value
-		 * @access protected
-		 * @since 2.0.000 (2008-01-02)
-		 * @author Nicola Asuni
-		 */
-		protected function _Ovalue($user_pass, $owner_pass) {
-			$tmp = $this->_md5_16($owner_pass);
+	/**
+	 * Compute O value (used for encryption)
+	 * @return string O value
+	 * @protected
+	 * @since 2.0.000 (2008-01-02)
+	 * @author Nicola Asuni
+	 */
+	protected function _Ovalue() {
+		if ($this->encryptdata['mode'] < 3) { // RC4-40, RC4-128, AES-128
+			$tmp = $this->_md5_16($this->encryptdata['owner_password']);
 			if ($this->encryptdata['mode'] > 0) {
 				for ($i = 0; $i < 50; ++$i) {
 					$tmp = $this->_md5_16($tmp);
 				}
 			}
 			$owner_key = substr($tmp, 0, ($this->encryptdata['Length'] / 8));
-			$enc = $this->_RC4($owner_key, $user_pass);
+			$enc = $this->_RC4($owner_key, $this->encryptdata['user_password']);
 			if ($this->encryptdata['mode'] > 0) {
 				$len = strlen($owner_key);
 				for ($i = 1; $i <= 19; ++$i) {
@@ -10924,54 +11966,93 @@ if (!class_exists('TCPDF', false)) {
 				}
 			}
 			return $enc;
+		} elseif ($this->encryptdata['mode'] == 3) { // AES-256
+			$seed = $this->_md5_16($this->getRandomSeed());
+			// Owner Validation Salt
+			$this->encryptdata['OVS'] = substr($seed, 0, 8);
+			// Owner Key Salt
+			$this->encryptdata['OKS'] = substr($seed, 8, 16);
+			return hash('sha256', $this->encryptdata['owner_password'].$this->encryptdata['OVS'].$this->encryptdata['U'], true).$this->encryptdata['OVS'].$this->encryptdata['OKS'];
 		}
+	}
 
-		/**
-		 * Compute U value (used for encryption)
-		 * @return String U value
-		 * @access protected
-		 * @since 2.0.000 (2008-01-02)
-		 * @author Nicola Asuni
-		 */
-		protected function _Uvalue() {
-			if ($this->encryptdata['mode'] == 0) {
-				return $this->_RC4($this->encryptdata['key'], $this->enc_padding);
-			}
-			$tmp = $this->_md5_16($this->enc_padding.$this->encryptdata['fileid']);
-			$enc = $this->_RC4($this->encryptdata['key'], $tmp);
-			$len = strlen($tmp);
-			for ($i = 1; $i <= 19; ++$i) {
-				$ek = '';
-				for ($j = 0; $j < $len; ++$j) {
-					$ek .= chr(ord($this->encryptdata['key']{$j}) ^ $i);
-				}
-				$enc = $this->_RC4($ek, $enc);
-			}
-			$enc .= str_repeat("\x00", 16);
-			return substr($enc, 0, 32);
+	/**
+	 * Compute OE value (used for encryption)
+	 * @return string OE value
+	 * @protected
+	 * @since 5.9.006 (2010-10-19)
+	 * @author Nicola Asuni
+	 */
+	protected function _OEvalue() {
+		$hashkey = hash('sha256', $this->encryptdata['owner_password'].$this->encryptdata['OKS'].$this->encryptdata['U'], true);
+		$iv = str_repeat("\x00", mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC));
+		return mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $hashkey, $this->encryptdata['key'], MCRYPT_MODE_CBC, $iv);
+	}
+
+	/**
+	 * Convert password for AES-256 encryption mode
+	 * @param $password (string) password
+	 * @return string password
+	 * @protected
+	 * @since 5.9.006 (2010-10-19)
+	 * @author Nicola Asuni
+	 */
+	protected function _fixAES256Password($password) {
+		$psw = ''; // password to be returned
+		$psw_array = $this->utf8Bidi($this->UTF8StringToArray($password), $password, $this->rtl);
+		foreach ($psw_array as $c) {
+			$psw .= $this->unichr($c);
 		}
+		return substr($psw, 0, 127);
+	}
 
-		/**
-		 * Compute encryption key
-		 * @param String $user_pass user password
-		 * @param String $owner_pass user password
-		 * @param String $protection protection type
-		 * @access protected
-		 * @since 2.0.000 (2008-01-02)
-		 * @author Nicola Asuni
-		 */
-		protected function _generateencryptionkey($user_pass, $owner_pass, $protection) {
-			$keybytelen = ($this->encryptdata['Length'] / 8);
-			if (!$this->encryptdata['pubkey']) { // standard mode
+	/**
+	 * Compute encryption key
+	 * @protected
+	 * @since 2.0.000 (2008-01-02)
+	 * @author Nicola Asuni
+	 */
+	protected function _generateencryptionkey() {
+		$keybytelen = ($this->encryptdata['Length'] / 8);
+		if (!$this->encryptdata['pubkey']) { // standard mode
+			if ($this->encryptdata['mode'] == 3) { // AES-256
+				// generate 256 bit random key
+				$this->encryptdata['key'] = substr(hash('sha256', $this->getRandomSeed(), true), 0, $keybytelen);
+				// truncate passwords
+				$this->encryptdata['user_password'] = $this->_fixAES256Password($this->encryptdata['user_password']);
+				$this->encryptdata['owner_password'] = $this->_fixAES256Password($this->encryptdata['owner_password']);
+				// Compute U value
+				$this->encryptdata['U'] = $this->_Uvalue();
+				// Compute UE value
+				$this->encryptdata['UE'] = $this->_UEvalue();
+				// Compute O value
+				$this->encryptdata['O'] = $this->_Ovalue();
+				// Compute OE value
+				$this->encryptdata['OE'] = $this->_OEvalue();
+				// Compute P value
+				$this->encryptdata['P'] = $this->encryptdata['protection'];
+				// Computing the encryption dictionary's Perms (permissions) value
+				$perms = $this->getEncPermissionsString($this->encryptdata['protection']); // bytes 0-3
+				$perms .= chr(255).chr(255).chr(255).chr(255); // bytes 4-7
+				if (isset($this->encryptdata['CF']['EncryptMetadata']) AND (!$this->encryptdata['CF']['EncryptMetadata'])) { // byte 8
+					$perms .= 'F';
+				} else {
+					$perms .= 'T';
+				}
+				$perms .= 'adb'; // bytes 9-11
+				$perms .= 'nick'; // bytes 12-15
+				$iv = str_repeat("\x00", mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB));
+				$this->encryptdata['perms'] = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $this->encryptdata['key'], $perms, MCRYPT_MODE_ECB, $iv);
+			} else { // RC4-40, RC4-128, AES-128
 				// Pad passwords
-				$user_pass = substr($user_pass.$this->enc_padding, 0, 32);
-				$owner_pass = substr($owner_pass.$this->enc_padding, 0, 32);
+				$this->encryptdata['user_password'] = substr($this->encryptdata['user_password'].$this->enc_padding, 0, 32);
+				$this->encryptdata['owner_password'] = substr($this->encryptdata['owner_password'].$this->enc_padding, 0, 32);
 				// Compute O value
-				$this->encryptdata['O'] = $this->_Ovalue($user_pass, $owner_pass);
+				$this->encryptdata['O'] = $this->_Ovalue();
 				// get default permissions (reverse byte order)
-				$permissions = $this->getEncPermissionsString($protection);
+				$permissions = $this->getEncPermissionsString($this->encryptdata['protection']);
 				// Compute encryption key
-				$tmp = $this->_md5_16($user_pass.$this->encryptdata['O'].$permissions.$this->encryptdata['fileid']);
+				$tmp = $this->_md5_16($this->encryptdata['user_password'].$this->encryptdata['O'].$permissions.$this->encryptdata['fileid']);
 				if ($this->encryptdata['mode'] > 0) {
 					for ($i = 0; $i < 50; ++$i) {
 						$tmp = $this->_md5_16(substr($tmp, 0, $keybytelen));
@@ -10981,2074 +12062,2152 @@ if (!class_exists('TCPDF', false)) {
 				// Compute U value
 				$this->encryptdata['U'] = $this->_Uvalue();
 				// Compute P value
-				$this->encryptdata['P'] = $protection;
-			} else { // Public-Key mode
-				// random 20-byte seed
-				$seed = sha1(microtime().uniqid(''.rand()).$this->file_id, true);
-				$recipient_bytes = '';
-				foreach ($this->encryptdata['pubkeys'] as $pubkey) {
-					// for each public certificate
-					if (isset($pubkey['p'])) {
-						$pkprotection = $this->getUserPermissionCode($pubkey['p'], $this->encryptdata['mode']);
-					} else {
-						$pkprotection = $protection;
-					}
-					// get default permissions (reverse byte order)
-					$pkpermissions = $this->getEncPermissionsString($pkprotection);
-					// envelope data
-					$envelope = $seed.$pkpermissions;
-					// write the envelope data to a temporary file
-					$tempkeyfile = tempnam(K_PATH_CACHE, 'tmpkey_');
-					$f = fopen($tempkeyfile, 'wb');
-					if (!$f) {
-						$this->Error('Unable to create temporary key file: '.$tempkeyfile);
-					}
-					$envelope_lenght = strlen($envelope);
-					fwrite($f, $envelope, $envelope_lenght);
-					fclose($f);
-					$tempencfile = tempnam(K_PATH_CACHE, 'tmpenc_');
-					if (!openssl_pkcs7_encrypt($tempkeyfile, $tempencfile, $pubkey['c'], array(), PKCS7_DETACHED | PKCS7_BINARY)) {
-						$this->Error('Unable to encrypt the file: '.$tempkeyfile);
-					}
-					unlink($tempkeyfile);
-					// read encryption signature
-					$signature = file_get_contents($tempencfile, false, null, $envelope_lenght);
-					unlink($tempencfile);
-					// extract signature
-					$signature = substr($signature, strpos($signature, 'Content-Disposition'));
-					$tmparr = explode("\n\n", $signature);
-					$signature = trim($tmparr[1]);
-					unset($tmparr);
-					// decode signature
-					$signature = base64_decode($signature);
-					// convert signature to hex
-					$hexsignature = current(unpack('H*', $signature));
-					// store signature on recipients array
-					$this->encryptdata['Recipients'][] = $hexsignature;
-					// The bytes of each item in the Recipients array of PKCS#7 objects in the order in which they appear in the array
-					$recipient_bytes .= $signature;
-				}
-				// calculate encryption key
+				$this->encryptdata['P'] = $this->encryptdata['protection'];
+			}
+		} else { // Public-Key mode
+			// random 20-byte seed
+			$seed = sha1($this->getRandomSeed(), true);
+			$recipient_bytes = '';
+			foreach ($this->encryptdata['pubkeys'] as $pubkey) {
+				// for each public certificate
+				if (isset($pubkey['p'])) {
+					$pkprotection = $this->getUserPermissionCode($pubkey['p'], $this->encryptdata['mode']);
+				} else {
+					$pkprotection = $this->encryptdata['protection'];
+				}
+				// get default permissions (reverse byte order)
+				$pkpermissions = $this->getEncPermissionsString($pkprotection);
+				// envelope data
+				$envelope = $seed.$pkpermissions;
+				// write the envelope data to a temporary file
+				$tempkeyfile = tempnam(K_PATH_CACHE, 'tmpkey_');
+				$f = fopen($tempkeyfile, 'wb');
+				if (!$f) {
+					$this->Error('Unable to create temporary key file: '.$tempkeyfile);
+				}
+				$envelope_lenght = strlen($envelope);
+				fwrite($f, $envelope, $envelope_lenght);
+				fclose($f);
+				$tempencfile = tempnam(K_PATH_CACHE, 'tmpenc_');
+				if (!openssl_pkcs7_encrypt($tempkeyfile, $tempencfile, $pubkey['c'], array(), PKCS7_DETACHED | PKCS7_BINARY)) {
+					$this->Error('Unable to encrypt the file: '.$tempkeyfile);
+				}
+				unlink($tempkeyfile);
+				// read encryption signature
+				$signature = file_get_contents($tempencfile, false, null, $envelope_lenght);
+				unlink($tempencfile);
+				// extract signature
+				$signature = substr($signature, strpos($signature, 'Content-Disposition'));
+				$tmparr = explode("\n\n", $signature);
+				$signature = trim($tmparr[1]);
+				unset($tmparr);
+				// decode signature
+				$signature = base64_decode($signature);
+				// convert signature to hex
+				$hexsignature = current(unpack('H*', $signature));
+				// store signature on recipients array
+				$this->encryptdata['Recipients'][] = $hexsignature;
+				// The bytes of each item in the Recipients array of PKCS#7 objects in the order in which they appear in the array
+				$recipient_bytes .= $signature;
+			}
+			// calculate encryption key
+			if ($this->encryptdata['mode'] == 3) { // AES-256
+				$this->encryptdata['key'] = substr(hash('sha256', $seed.$recipient_bytes, true), 0, $keybytelen);
+			} else { // RC4-40, RC4-128, AES-128
 				$this->encryptdata['key'] = substr(sha1($seed.$recipient_bytes, true), 0, $keybytelen);
 			}
 		}
+	}
+
+	/**
+	 * Return the premission code used on encryption (P value).
+	 * @param $permissions (Array) the set of permissions (specify the ones you want to block).
+	 * @param $mode (int) encryption strength: 0 = RC4 40 bit; 1 = RC4 128 bit; 2 = AES 128 bit; 3 = AES 256 bit.
+	 * @protected
+	 * @since 5.0.005 (2010-05-12)
+	 * @author Nicola Asuni
+	 */
+	protected function getUserPermissionCode($permissions, $mode=0) {
+		$options = array(
+			'owner' => 2, // bit 2 -- inverted logic: cleared by default
+			'print' => 4, // bit 3
+			'modify' => 8, // bit 4
+			'copy' => 16, // bit 5
+			'annot-forms' => 32, // bit 6
+			'fill-forms' => 256, // bit 9
+			'extract' => 512, // bit 10
+			'assemble' => 1024,// bit 11
+			'print-high' => 2048 // bit 12
+			);
+		$protection = 2147422012; // 32 bit: (01111111 11111111 00001111 00111100)
+		foreach ($permissions as $permission) {
+			if (!isset($options[$permission])) {
+				$this->Error('Incorrect permission: '.$permission);
+			}
+			if (($mode > 0) OR ($options[$permission] <= 32)) {
+				// set only valid permissions
+				if ($options[$permission] == 2) {
+					// the logic for bit 2 is inverted (cleared by default)
+					$protection += $options[$permission];
+				} else {
+					$protection -= $options[$permission];
+				}
+			}
+		}
+		return $protection;
+	}
+
+	/**
+	 * Set document protection
+	 * Remark: the protection against modification is for people who have the full Acrobat product.
+	 * If you don't set any password, the document will open as usual. If you set a user password, the PDF viewer will ask for it before displaying the document. The master password, if different from the user one, can be used to get full access.
+	 * Note: protecting a document requires to encrypt it, which increases the processing time a lot. This can cause a PHP time-out in some cases, especially if the document contains images or fonts.
+	 * @param $permissions (Array) the set of permissions (specify the ones you want to block):<ul><li>print : Print the document;</li><li>modify : Modify the contents of the document by operations other than those controlled by 'fill-forms', 'extract' and 'assemble';</li><li>copy : Copy or otherwise extract text and graphics from the document;</li><li>annot-forms : Add or modify text annotations, fill in interactive form fields, and, if 'modify' is also set, create or modify interactive form fields (including signature fields);</li><li>fill-forms : Fill in existing interactive form fields (including signature fields), even if 'annot-forms' is not specified;</li><li>extract : Extract text and graphics (in support of accessibility to users with disabilities or for other purposes);</li><li>assemble : Assemble the document (insert, rotate, or delete pages and create bookmarks or thumbnail images), even if 'modify' is not set;</li><li>print-high : Print the document to a representation from which a faithful digital copy of the PDF content could be generated. When this is not set, printing is limited to a low-level representation of the appearance, possibly of degraded quality.</li><li>owner : (inverted logic - only for public-key) when set permits change of encryption and enables all other permissions.</li></ul>
+	 * @param $user_pass (String) user password. Empty by default.
+	 * @param $owner_pass (String) owner password. If not specified, a random value is used.
+	 * @param $mode (int) encryption strength: 0 = RC4 40 bit; 1 = RC4 128 bit; 2 = AES 128 bit; 3 = AES 256 bit.
+	 * @param $pubkeys (String) array of recipients containing public-key certificates ('c') and permissions ('p'). For example: array(array('c' => 'file://../tcpdf.crt', 'p' => array('print')))
+	 * @public
+	 * @since 2.0.000 (2008-01-02)
+	 * @author Nicola Asuni
+	 */
+	public function SetProtection($permissions=array('print', 'modify', 'copy', 'annot-forms', 'fill-forms', 'extract', 'assemble', 'print-high'), $user_pass='', $owner_pass=null, $mode=0, $pubkeys=null) {
+		$this->encryptdata['protection'] = $this->getUserPermissionCode($permissions, $mode);
+		if (($pubkeys !== null) AND (is_array($pubkeys))) {
+			// public-key mode
+			$this->encryptdata['pubkeys'] = $pubkeys;
+			if ($mode == 0) {
+				// public-Key Security requires at least 128 bit
+				$mode = 1;
+			}
+			if (!function_exists('openssl_pkcs7_encrypt')) {
+				$this->Error('Public-Key Security requires openssl library.');
+			}
+			// Set Public-Key filter (availabe are: Entrust.PPKEF, Adobe.PPKLite, Adobe.PubSec)
+			$this->encryptdata['pubkey'] = true;
+			$this->encryptdata['Filter'] = 'Adobe.PubSec';
+			$this->encryptdata['StmF'] = 'DefaultCryptFilter';
+			$this->encryptdata['StrF'] = 'DefaultCryptFilter';
+		} else {
+			// standard mode (password mode)
+			$this->encryptdata['pubkey'] = false;
+			$this->encryptdata['Filter'] = 'Standard';
+			$this->encryptdata['StmF'] = 'StdCF';
+			$this->encryptdata['StrF'] = 'StdCF';
+		}
+		if ($mode > 1) { // AES
+			if (!extension_loaded('mcrypt')) {
+				$this->Error('AES encryption requires mcrypt library (http://www.php.net/manual/en/mcrypt.requirements.php).');
+			}
+			if (mcrypt_get_cipher_name(MCRYPT_RIJNDAEL_128) === false) {
+				$this->Error('AES encryption requires MCRYPT_RIJNDAEL_128 cypher.');
+			}
+			if (($mode == 3) AND !function_exists('hash')) {
+				// the Hash extension requires no external libraries and is enabled by default as of PHP 5.1.2.
+				$this->Error('AES 256 encryption requires HASH Message Digest Framework (http://www.php.net/manual/en/book.hash.php).');
+			}
+		}
+		if ($owner_pass === null) {
+			$owner_pass = md5($this->getRandomSeed());
+		}
+		$this->encryptdata['user_password'] = $user_pass;
+		$this->encryptdata['owner_password'] = $owner_pass;
+		$this->encryptdata['mode'] = $mode;
+		switch ($mode) {
+			case 0: { // RC4 40 bit
+				$this->encryptdata['V'] = 1;
+				$this->encryptdata['Length'] = 40;
+				$this->encryptdata['CF']['CFM'] = 'V2';
+				break;
+			}
+			case 1: { // RC4 128 bit
+				$this->encryptdata['V'] = 2;
+				$this->encryptdata['Length'] = 128;
+				$this->encryptdata['CF']['CFM'] = 'V2';
+				if ($this->encryptdata['pubkey']) {
+					$this->encryptdata['SubFilter'] = 'adbe.pkcs7.s4';
+					$this->encryptdata['Recipients'] = array();
+				}
+				break;
+			}
+			case 2: { // AES 128 bit
+				$this->encryptdata['V'] = 4;
+				$this->encryptdata['Length'] = 128;
+				$this->encryptdata['CF']['CFM'] = 'AESV2';
+				$this->encryptdata['CF']['Length'] = 128;
+				if ($this->encryptdata['pubkey']) {
+					$this->encryptdata['SubFilter'] = 'adbe.pkcs7.s5';
+					$this->encryptdata['Recipients'] = array();
+				}
+				break;
+			}
+			case 3: { // AES 256 bit
+				$this->encryptdata['V'] = 5;
+				$this->encryptdata['Length'] = 256;
+				$this->encryptdata['CF']['CFM'] = 'AESV3';
+				$this->encryptdata['CF']['Length'] = 256;
+				if ($this->encryptdata['pubkey']) {
+					$this->encryptdata['SubFilter'] = 'adbe.pkcs7.s5';
+					$this->encryptdata['Recipients'] = array();
+				}
+				break;
+			}
+		}
+		$this->encrypted = true;
+		$this->encryptdata['fileid'] = $this->convertHexStringToString($this->file_id);
+		$this->_generateencryptionkey();
+	}
+
+	/**
+	 * Convert hexadecimal string to string
+	 * @param $bs (string) byte-string to convert
+	 * @return String
+	 * @protected
+	 * @since 5.0.005 (2010-05-12)
+	 * @author Nicola Asuni
+	 */
+	protected function convertHexStringToString($bs) {
+		$string = ''; // string to be returned
+		$bslenght = strlen($bs);
+		if (($bslenght % 2) != 0) {
+			// padding
+			$bs .= '0';
+			++$bslenght;
+		}
+		for ($i = 0; $i < $bslenght; $i += 2) {
+			$string .= chr(hexdec($bs{$i}.$bs{($i + 1)}));
+		}
+		return $string;
+	}
+
+	/**
+	 * Convert string to hexadecimal string (byte string)
+	 * @param $s (string) string to convert
+	 * @return byte string
+	 * @protected
+	 * @since 5.0.010 (2010-05-17)
+	 * @author Nicola Asuni
+	 */
+	protected function convertStringToHexString($s) {
+		$bs = '';
+		$chars = preg_split('//', $s, -1, PREG_SPLIT_NO_EMPTY);
+		foreach ($chars as $c) {
+			$bs .= sprintf('%02s', dechex(ord($c)));
+		}
+		return $bs;
+	}
+
+	/**
+	 * Convert encryption P value to a string of bytes, low-order byte first.
+	 * @param $protection (string) 32bit encryption permission value (P value)
+	 * @return String
+	 * @protected
+	 * @since 5.0.005 (2010-05-12)
+	 * @author Nicola Asuni
+	 */
+	protected function getEncPermissionsString($protection) {
+		$binprot = sprintf('%032b', $protection);
+		$str = chr(bindec(substr($binprot, 24, 8)));
+		$str .= chr(bindec(substr($binprot, 16, 8)));
+		$str .= chr(bindec(substr($binprot, 8, 8)));
+		$str .= chr(bindec(substr($binprot, 0, 8)));
+		return $str;
+	}
+
+	// END OF ENCRYPTION FUNCTIONS -------------------------
+
+	// START TRANSFORMATIONS SECTION -----------------------
+
+	/**
+	 * Starts a 2D tranformation saving current graphic state.
+	 * This function must be called before scaling, mirroring, translation, rotation and skewing.
+	 * Use StartTransform() before, and StopTransform() after the transformations to restore the normal behavior.
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function StartTransform() {
+		$this->_out('q');
+		if ($this->inxobj) {
+			// we are inside an XObject template
+			$this->xobjects[$this->xobjid]['transfmrk'][] = strlen($this->xobjects[$this->xobjid]['outdata']);
+		} else {
+			$this->transfmrk[$this->page][] = $this->pagelen[$this->page];
+		}
+		++$this->transfmatrix_key;
+		$this->transfmatrix[$this->transfmatrix_key] = array();
+	}
+
+	/**
+	 * Stops a 2D tranformation restoring previous graphic state.
+	 * This function must be called after scaling, mirroring, translation, rotation and skewing.
+	 * Use StartTransform() before, and StopTransform() after the transformations to restore the normal behavior.
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function StopTransform() {
+		$this->_out('Q');
+		if (isset($this->transfmatrix[$this->transfmatrix_key])) {
+			array_pop($this->transfmatrix[$this->transfmatrix_key]);
+			--$this->transfmatrix_key;
+		}
+		if ($this->inxobj) {
+			// we are inside an XObject template
+			array_pop($this->xobjects[$this->xobjid]['transfmrk']);
+		} else {
+			array_pop($this->transfmrk[$this->page]);
+		}
+	}
+	/**
+	 * Horizontal Scaling.
+	 * @param $s_x (float) scaling factor for width as percent. 0 is not allowed.
+	 * @param $x (int) abscissa of the scaling center. Default is current x position
+	 * @param $y (int) ordinate of the scaling center. Default is current y position
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function ScaleX($s_x, $x='', $y='') {
+		$this->Scale($s_x, 100, $x, $y);
+	}
+
+	/**
+	 * Vertical Scaling.
+	 * @param $s_y (float) scaling factor for height as percent. 0 is not allowed.
+	 * @param $x (int) abscissa of the scaling center. Default is current x position
+	 * @param $y (int) ordinate of the scaling center. Default is current y position
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function ScaleY($s_y, $x='', $y='') {
+		$this->Scale(100, $s_y, $x, $y);
+	}
+
+	/**
+	 * Vertical and horizontal proportional Scaling.
+	 * @param $s (float) scaling factor for width and height as percent. 0 is not allowed.
+	 * @param $x (int) abscissa of the scaling center. Default is current x position
+	 * @param $y (int) ordinate of the scaling center. Default is current y position
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function ScaleXY($s, $x='', $y='') {
+		$this->Scale($s, $s, $x, $y);
+	}
+
+	/**
+	 * Vertical and horizontal non-proportional Scaling.
+	 * @param $s_x (float) scaling factor for width as percent. 0 is not allowed.
+	 * @param $s_y (float) scaling factor for height as percent. 0 is not allowed.
+	 * @param $x (int) abscissa of the scaling center. Default is current x position
+	 * @param $y (int) ordinate of the scaling center. Default is current y position
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function Scale($s_x, $s_y, $x='', $y='') {
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		if (($s_x == 0) OR ($s_y == 0)) {
+			$this->Error('Please do not use values equal to zero for scaling');
+		}
+		$y = ($this->h - $y) * $this->k;
+		$x *= $this->k;
+		//calculate elements of transformation matrix
+		$s_x /= 100;
+		$s_y /= 100;
+		$tm = array();
+		$tm[0] = $s_x;
+		$tm[1] = 0;
+		$tm[2] = 0;
+		$tm[3] = $s_y;
+		$tm[4] = $x * (1 - $s_x);
+		$tm[5] = $y * (1 - $s_y);
+		//scale the coordinate system
+		$this->Transform($tm);
+	}
+
+	/**
+	 * Horizontal Mirroring.
+	 * @param $x (int) abscissa of the point. Default is current x position
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function MirrorH($x='') {
+		$this->Scale(-100, 100, $x);
+	}
+
+	/**
+	 * Verical Mirroring.
+	 * @param $y (int) ordinate of the point. Default is current y position
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function MirrorV($y='') {
+		$this->Scale(100, -100, '', $y);
+	}
+
+	/**
+	 * Point reflection mirroring.
+	 * @param $x (int) abscissa of the point. Default is current x position
+	 * @param $y (int) ordinate of the point. Default is current y position
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function MirrorP($x='',$y='') {
+		$this->Scale(-100, -100, $x, $y);
+	}
+
+	/**
+	 * Reflection against a straight line through point (x, y) with the gradient angle (angle).
+	 * @param $angle (float) gradient angle of the straight line. Default is 0 (horizontal line).
+	 * @param $x (int) abscissa of the point. Default is current x position
+	 * @param $y (int) ordinate of the point. Default is current y position
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function MirrorL($angle=0, $x='',$y='') {
+		$this->Scale(-100, 100, $x, $y);
+		$this->Rotate(-2*($angle-90), $x, $y);
+	}
+
+	/**
+	 * Translate graphic object horizontally.
+	 * @param $t_x (int) movement to the right (or left for RTL)
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function TranslateX($t_x) {
+		$this->Translate($t_x, 0);
+	}
+
+	/**
+	 * Translate graphic object vertically.
+	 * @param $t_y (int) movement to the bottom
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function TranslateY($t_y) {
+		$this->Translate(0, $t_y);
+	}
+
+	/**
+	 * Translate graphic object horizontally and vertically.
+	 * @param $t_x (int) movement to the right
+	 * @param $t_y (int) movement to the bottom
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function Translate($t_x, $t_y) {
+		//calculate elements of transformation matrix
+		$tm = array();
+		$tm[0] = 1;
+		$tm[1] = 0;
+		$tm[2] = 0;
+		$tm[3] = 1;
+		$tm[4] = $t_x * $this->k;
+		$tm[5] = -$t_y * $this->k;
+		//translate the coordinate system
+		$this->Transform($tm);
+	}
+
+	/**
+	 * Rotate object.
+	 * @param $angle (float) angle in degrees for counter-clockwise rotation
+	 * @param $x (int) abscissa of the rotation center. Default is current x position
+	 * @param $y (int) ordinate of the rotation center. Default is current y position
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function Rotate($angle, $x='', $y='') {
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		$y = ($this->h - $y) * $this->k;
+		$x *= $this->k;
+		//calculate elements of transformation matrix
+		$tm = array();
+		$tm[0] = cos(deg2rad($angle));
+		$tm[1] = sin(deg2rad($angle));
+		$tm[2] = -$tm[1];
+		$tm[3] = $tm[0];
+		$tm[4] = $x + ($tm[1] * $y) - ($tm[0] * $x);
+		$tm[5] = $y - ($tm[0] * $y) - ($tm[1] * $x);
+		//rotate the coordinate system around ($x,$y)
+		$this->Transform($tm);
+	}
+
+	/**
+	 * Skew horizontally.
+	 * @param $angle_x (float) angle in degrees between -90 (skew to the left) and 90 (skew to the right)
+	 * @param $x (int) abscissa of the skewing center. default is current x position
+	 * @param $y (int) ordinate of the skewing center. default is current y position
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function SkewX($angle_x, $x='', $y='') {
+		$this->Skew($angle_x, 0, $x, $y);
+	}
+
+	/**
+	 * Skew vertically.
+	 * @param $angle_y (float) angle in degrees between -90 (skew to the bottom) and 90 (skew to the top)
+	 * @param $x (int) abscissa of the skewing center. default is current x position
+	 * @param $y (int) ordinate of the skewing center. default is current y position
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function SkewY($angle_y, $x='', $y='') {
+		$this->Skew(0, $angle_y, $x, $y);
+	}
+
+	/**
+	 * Skew.
+	 * @param $angle_x (float) angle in degrees between -90 (skew to the left) and 90 (skew to the right)
+	 * @param $angle_y (float) angle in degrees between -90 (skew to the bottom) and 90 (skew to the top)
+	 * @param $x (int) abscissa of the skewing center. default is current x position
+	 * @param $y (int) ordinate of the skewing center. default is current y position
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	public function Skew($angle_x, $angle_y, $x='', $y='') {
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		if (($angle_x <= -90) OR ($angle_x >= 90) OR ($angle_y <= -90) OR ($angle_y >= 90)) {
+			$this->Error('Please use values between -90 and +90 degrees for Skewing.');
+		}
+		$x *= $this->k;
+		$y = ($this->h - $y) * $this->k;
+		//calculate elements of transformation matrix
+		$tm = array();
+		$tm[0] = 1;
+		$tm[1] = tan(deg2rad($angle_y));
+		$tm[2] = tan(deg2rad($angle_x));
+		$tm[3] = 1;
+		$tm[4] = -$tm[2] * $y;
+		$tm[5] = -$tm[1] * $x;
+		//skew the coordinate system
+		$this->Transform($tm);
+	}
+
+	/**
+	 * Apply graphic transformations.
+	 * @param $tm (array) transformation matrix
+	 * @protected
+	 * @since 2.1.000 (2008-01-07)
+	 * @see StartTransform(), StopTransform()
+	 */
+	protected function Transform($tm) {
+		$this->_out(sprintf('%.3F %.3F %.3F %.3F %.3F %.3F cm', $tm[0], $tm[1], $tm[2], $tm[3], $tm[4], $tm[5]));
+		// add tranformation matrix
+		$this->transfmatrix[$this->transfmatrix_key][] = array('a' => $tm[0], 'b' => $tm[1], 'c' => $tm[2], 'd' => $tm[3], 'e' => $tm[4], 'f' => $tm[5]);
+		// update transformation mark
+		if ($this->inxobj) {
+			// we are inside an XObject template
+			if (end($this->xobjects[$this->xobjid]['transfmrk']) !== false) {
+				$key = key($this->xobjects[$this->xobjid]['transfmrk']);
+				$this->xobjects[$this->xobjid]['transfmrk'][$key] = strlen($this->xobjects[$this->xobjid]['outdata']);
+			}
+		} elseif (end($this->transfmrk[$this->page]) !== false) {
+			$key = key($this->transfmrk[$this->page]);
+			$this->transfmrk[$this->page][$key] = $this->pagelen[$this->page];
+		}
+	}
+
+	// END TRANSFORMATIONS SECTION -------------------------
+
+	// START GRAPHIC FUNCTIONS SECTION ---------------------
+	// The following section is based on the code provided by David Hernandez Sanz
+
+	/**
+	 * Defines the line width. By default, the value equals 0.2 mm. The method can be called before the first page is created and the value is retained from page to page.
+	 * @param $width (float) The width.
+	 * @public
+	 * @since 1.0
+	 * @see Line(), Rect(), Cell(), MultiCell()
+	 */
+	public function SetLineWidth($width) {
+		//Set line width
+		$this->LineWidth = $width;
+		$this->linestyleWidth = sprintf('%.2F w', ($width * $this->k));
+		if ($this->page > 0) {
+			$this->_out($this->linestyleWidth);
+		}
+	}
 
-		/**
-		 * Return the premission code used on encryption (P value).
-		 * @param Array $permissions the set of permissions (specify the ones you want to block).
-		 * @param int $mode encryption strength: 0 = RC4 40 bit; 1 = RC4 128 bit; 2 = AES 128 bit.
-		 * @access protected
-		 * @since 5.0.005 (2010-05-12)
-		 * @author Nicola Asuni
-		 */
-		protected function getUserPermissionCode($permissions, $mode=0) {
-			$options = array(
-				'owner' => 2, // bit 2 -- inverted logic: cleared by default
-				'print' => 4, // bit 3
-				'modify' => 8, // bit 4
-				'copy' => 16, // bit 5
-				'annot-forms' => 32, // bit 6
-				'fill-forms' => 256, // bit 9
-				'extract' => 512, // bit 10
-				'assemble' => 1024,// bit 11
-				'print-high' => 2048 // bit 12
-				);
-			$protection = 2147422012; // (01111111111111110000111100111100)
-			foreach ($permissions as $permission) {
-				if (!isset($options[$permission])) {
-					$this->Error('Incorrect permission: '.$permission);
-				}
-				if (($mode > 0) OR ($options[$permission] <= 32)) {
-					// set only valid permissions
-					if ($options[$permission] == 2) {
-						// the logic for bit 2 is inverted (cleared by default)
-						$protection += $options[$permission];
-					} else {
-						$protection -= $options[$permission];
-					}
-				}
-			}
-			return $protection;
-		}
-
-		/**
-		 * Set document protection
-		 * Remark: the protection against modification is for people who have the full Acrobat product.
-		 * If you don't set any password, the document will open as usual. If you set a user password, the PDF viewer will ask for it before displaying the document. The master password, if different from the user one, can be used to get full access.
-		 * Note: protecting a document requires to encrypt it, which increases the processing time a lot. This can cause a PHP time-out in some cases, especially if the document contains images or fonts.
-		 * @param Array $permissions the set of permissions (specify the ones you want to block):<ul><li>print : Print the document;</li><li>modify : Modify the contents of the document by operations other than those controlled by 'fill-forms', 'extract' and 'assemble';</li><li>copy : Copy or otherwise extract text and graphics from the document;</li><li>annot-forms : Add or modify text annotations, fill in interactive form fields, and, if 'modify' is also set, create or modify interactive form fields (including signature fields);</li><li>fill-forms : Fill in existing interactive form fields (including signature fields), even if 'annot-forms' is not specified;</li><li>extract : Extract text and graphics (in support of accessibility to users with disabilities or for other purposes);</li><li>assemble : Assemble the document (insert, rotate, or delete pages and create bookmarks or thumbnail images), even if 'modify' is not set;</li><li>print-high : Print the document to a representation from which a faithful digital copy of the PDF content could be generated. When this is not set, printing is limited to a low-level representation of the appearance, possibly of degraded quality.</li><li>owner : (inverted logic - only for public-key) when set permits change of encryption and enables all other permissions.</li></ul>
-		 * @param String $user_pass user password. Empty by default.
-		 * @param String $owner_pass owner password. If not specified, a random value is used.
-		 * @param int $mode encryption strength: 0 = RC4 40 bit; 1 = RC4 128 bit; 2 = AES 128 bit.
-		 * @param String $pubkeys array of recipients containing public-key certificates ('c') and permissions ('p'). For example: array(array('c' => 'file://../tcpdf.crt', 'p' => array('print')))
-		 * @access public
-		 * @since 2.0.000 (2008-01-02)
-		 * @author Nicola Asuni
-		 */
-		public function SetProtection($permissions=array('print', 'modify', 'copy', 'annot-forms', 'fill-forms', 'extract', 'assemble', 'print-high'), $user_pass='', $owner_pass=null, $mode=0, $pubkeys=null) {
-			$protection = $this->getUserPermissionCode($permissions, $mode);
-			if (($pubkeys !== null) AND (is_array($pubkeys))) {
-				// public-key mode
-				$this->encryptdata['pubkeys'] = $pubkeys;
-				if ($mode == 0) {
-					// public-Key Security requires at least 128 bit
-					$mode = 1;
-				}
-				if (!function_exists('openssl_pkcs7_encrypt')) {
-					$this->Error('Public-Key Security requires openssl library.');
-				}
-				// Set Public-Key filter (availabe are: Entrust.PPKEF, Adobe.PPKLite, Adobe.PubSec)
-				$this->encryptdata['pubkey'] = true;
-				$this->encryptdata['Filter'] = 'Adobe.PubSec';
-				$this->encryptdata['StmF'] = 'DefaultCryptFilter';
-				$this->encryptdata['StrF'] = 'DefaultCryptFilter';
-			} else {
-				// standard mode (password mode)
-				$this->encryptdata['pubkey'] = false;
-				$this->encryptdata['Filter'] = 'Standard';
-				$this->encryptdata['StmF'] = 'StdCF';
-				$this->encryptdata['StrF'] = 'StdCF';
-			}
-			if ($mode > 1) { // AES
-				if (!extension_loaded('mcrypt')) {
-					$this->Error('AES encryption requires mcrypt library.');
-				}
-				if (mcrypt_get_cipher_name(MCRYPT_RIJNDAEL_128) === false) {
-					$this->Error('AES encryption requires MCRYPT_RIJNDAEL_128 cypher.');
-				}
+	/**
+	 * Returns the current the line width.
+	 * @return int Line width
+	 * @public
+	 * @since 2.1.000 (2008-01-07)
+	 * @see Line(), SetLineWidth()
+	 */
+	public function GetLineWidth() {
+		return $this->LineWidth;
+	}
+
+	/**
+	 * Set line style.
+	 * @param $style (array) Line style. Array with keys among the following:
+	 * <ul>
+	 *	 <li>width (float): Width of the line in user units.</li>
+	 *	 <li>cap (string): Type of cap to put on the line. Possible values are:
+	 * butt, round, square. The difference between "square" and "butt" is that
+	 * "square" projects a flat end past the end of the line.</li>
+	 *	 <li>join (string): Type of join. Possible values are: miter, round,
+	 * bevel.</li>
+	 *	 <li>dash (mixed): Dash pattern. Is 0 (without dash) or string with
+	 * series of length values, which are the lengths of the on and off dashes.
+	 * For example: "2" represents 2 on, 2 off, 2 on, 2 off, ...; "2,1" is 2 on,
+	 * 1 off, 2 on, 1 off, ...</li>
+	 *	 <li>phase (integer): Modifier on the dash pattern which is used to shift
+	 * the point at which the pattern starts.</li>
+	 *	 <li>color (array): Draw color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K).</li>
+	 * </ul>
+	 * @param $ret (boolean) if true do not send the command.
+	 * @return string the PDF command
+	 * @public
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	public function SetLineStyle($style, $ret=false) {
+		$s = ''; // string to be returned
+		if (!is_array($style)) {
+			return;
+		}
+		extract($style);
+		if (isset($width)) {
+			$this->LineWidth = $width;
+			$this->linestyleWidth = sprintf('%.2F w', ($width * $this->k));
+			$s .= $this->linestyleWidth.' ';
+		}
+		if (isset($cap)) {
+			$ca = array('butt' => 0, 'round'=> 1, 'square' => 2);
+			if (isset($ca[$cap])) {
+				$this->linestyleCap = $ca[$cap].' J';
+				$s .= $this->linestyleCap.' ';
 			}
-			if ($owner_pass === null) {
-				$owner_pass = uniqid(''.rand());
+		}
+		if (isset($join)) {
+			$ja = array('miter' => 0, 'round' => 1, 'bevel' => 2);
+			if (isset($ja[$join])) {
+				$this->linestyleJoin = $ja[$join].' j';
+				$s .= $this->linestyleJoin.' ';
 			}
-			$this->encryptdata['mode'] = $mode;
-			switch ($mode) {
-				case 0: { // RC4 40 bit
-					$this->encryptdata['V'] = 1;
-					$this->encryptdata['Length'] = 40;
-					$this->encryptdata['CF']['CFM'] = 'V2';
-					break;
-				}
-				case 1: { // RC4 128 bit
-					$this->encryptdata['V'] = 2;
-					$this->encryptdata['Length'] = 128;
-					$this->encryptdata['CF']['CFM'] = 'V2';
-					if ($this->encryptdata['pubkey']) {
-						$this->encryptdata['SubFilter'] = 'adbe.pkcs7.s4';
-						$this->encryptdata['Recipients'] = array();
-					}
-					break;
+		}
+		if (isset($dash)) {
+			$dash_string = '';
+			if ($dash) {
+				if (preg_match('/^.+,/', $dash) > 0) {
+					$tab = explode(',', $dash);
+				} else {
+					$tab = array($dash);
 				}
-				case 2: { // AES 128 bit
-					$this->encryptdata['V'] = 4;
-					$this->encryptdata['Length'] = 128;
-					$this->encryptdata['CF']['CFM'] = 'AESV2';
-					if ($this->encryptdata['pubkey']) {
-						$this->encryptdata['SubFilter'] = 'adbe.pkcs7.s5';
-						$this->encryptdata['Recipients'] = array();
+				$dash_string = '';
+				foreach ($tab as $i => $v) {
+					if ($i) {
+						$dash_string .= ' ';
 					}
-					break;
+					$dash_string .= sprintf('%.2F', $v);
 				}
 			}
-			$this->encrypted = true;
-			$this->encryptdata['fileid'] = $this->convertHexStringToString($this->file_id);
-			$this->_generateencryptionkey($user_pass, $owner_pass, $protection);
-		}
-
-		/**
-		 * Convert hexadecimal string to string
-		 * @param string $bs byte-string to convert
-		 * @return String
-		 * @access protected
-		 * @since 5.0.005 (2010-05-12)
-		 * @author Nicola Asuni
-		 */
-		protected function convertHexStringToString($bs) {
-			$string = ''; // string to be returned
-			$bslenght = strlen($bs);
-			if (($bslenght % 2) != 0) {
-				// padding
-				$bs .= '0';
-				++$bslenght;
-			}
-			for ($i = 0; $i < $bslenght; $i += 2) {
-				$string .= chr(hexdec($bs{$i}.$bs{($i + 1)}));
-			}
-			return $string;
-		}
-
-		/**
-		 * Convert string to  hexadecimal string (byte string)
-		 * @param string $s string to convert
-		 * @return byte string
-		 * @access protected
-		 * @since 5.0.010 (2010-05-17)
-		 * @author Nicola Asuni
-		 */
-		protected function convertStringToHexString($s) {
-			$bs = '';
-			$chars = preg_split('//', $s, -1, PREG_SPLIT_NO_EMPTY);
-			foreach ($chars as $c) {
-				$bs .= sprintf('%02s', dechex(ord($c)));
-			}
-			return $bs;
-		}
-
-		/**
-		 * Convert encryption P value to a string of bytes, low-order byte first.
-		 * @param string $protection 32bit encryption permission value (P value)
-		 * @return String
-		 * @access protected
-		 * @since 5.0.005 (2010-05-12)
-		 * @author Nicola Asuni
-		 */
-		protected function getEncPermissionsString($protection) {
-			$binprot = sprintf('%032b', $protection);
-			$str = chr(bindec(substr($binprot, 24, 8)));
-			$str .= chr(bindec(substr($binprot, 16, 8)));
-			$str .= chr(bindec(substr($binprot, 8, 8)));
-			$str .= chr(bindec(substr($binprot, 0, 8)));
-			return $str;
-		}
-
-		// END OF ENCRYPTION FUNCTIONS -------------------------
-
-		// START TRANSFORMATIONS SECTION -----------------------
-
-		/**
-		 * Starts a 2D tranformation saving current graphic state.
-		 * This function must be called before scaling, mirroring, translation, rotation and skewing.
-		 * Use StartTransform() before, and StopTransform() after the transformations to restore the normal behavior.
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function StartTransform() {
-			$this->_out('q');
-			$this->transfmrk[$this->page][] = $this->pagelen[$this->page];
-			++$this->transfmatrix_key;
-			$this->transfmatrix[$this->transfmatrix_key] = array();
-		}
-
-		/**
-		 * Stops a 2D tranformation restoring previous graphic state.
-		 * This function must be called after scaling, mirroring, translation, rotation and skewing.
-		 * Use StartTransform() before, and StopTransform() after the transformations to restore the normal behavior.
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function StopTransform() {
-			$this->_out('Q');
-			if (isset($this->transfmatrix[$this->transfmatrix_key])) {
-				array_pop($this->transfmatrix[$this->transfmatrix_key]);
-				--$this->transfmatrix_key;
+			if (!isset($phase) OR !$dash) {
+				$phase = 0;
 			}
-			array_pop($this->transfmrk[$this->page]);
+			$this->linestyleDash = sprintf('[%s] %.2F d', $dash_string, $phase);
+			$s .= $this->linestyleDash.' ';
 		}
-		/**
-		 * Horizontal Scaling.
-		 * @param float $s_x scaling factor for width as percent. 0 is not allowed.
-		 * @param int $x abscissa of the scaling center. Default is current x position
-		 * @param int $y ordinate of the scaling center. Default is current y position
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function ScaleX($s_x, $x='', $y='') {
-			$this->Scale($s_x, 100, $x, $y);
-		}
-
-		/**
-		 * Vertical Scaling.
-		 * @param float $s_y scaling factor for height as percent. 0 is not allowed.
-		 * @param int $x abscissa of the scaling center. Default is current x position
-		 * @param int $y ordinate of the scaling center. Default is current y position
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function ScaleY($s_y, $x='', $y='') {
-			$this->Scale(100, $s_y, $x, $y);
-		}
-
-		/**
-		 * Vertical and horizontal proportional Scaling.
-		 * @param float $s scaling factor for width and height as percent. 0 is not allowed.
-		 * @param int $x abscissa of the scaling center. Default is current x position
-		 * @param int $y ordinate of the scaling center. Default is current y position
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function ScaleXY($s, $x='', $y='') {
-			$this->Scale($s, $s, $x, $y);
-		}
-
-		/**
-		 * Vertical and horizontal non-proportional Scaling.
-		 * @param float $s_x scaling factor for width as percent. 0 is not allowed.
-		 * @param float $s_y scaling factor for height as percent. 0 is not allowed.
-		 * @param int $x abscissa of the scaling center. Default is current x position
-		 * @param int $y ordinate of the scaling center. Default is current y position
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function Scale($s_x, $s_y, $x='', $y='') {
-			if ($x === '') {
-				$x = $this->x;
-			}
-			if ($y === '') {
-				$y = $this->y;
-			}
-			if (($s_x == 0) OR ($s_y == 0)) {
-				$this->Error('Please do not use values equal to zero for scaling');
-			}
-			$y = ($this->h - $y) * $this->k;
-			$x *= $this->k;
-			//calculate elements of transformation matrix
-			$s_x /= 100;
-			$s_y /= 100;
-			$tm[0] = $s_x;
-			$tm[1] = 0;
-			$tm[2] = 0;
-			$tm[3] = $s_y;
-			$tm[4] = $x * (1 - $s_x);
-			$tm[5] = $y * (1 - $s_y);
-			//scale the coordinate system
-			$this->Transform($tm);
-		}
-
-		/**
-		 * Horizontal Mirroring.
-		 * @param int $x abscissa of the point. Default is current x position
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function MirrorH($x='') {
-			$this->Scale(-100, 100, $x);
-		}
-
-		/**
-		 * Verical Mirroring.
-		 * @param int $y ordinate of the point. Default is current y position
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function MirrorV($y='') {
-			$this->Scale(100, -100, '', $y);
-		}
-
-		/**
-		 * Point reflection mirroring.
-		 * @param int $x abscissa of the point. Default is current x position
-		 * @param int $y ordinate of the point. Default is current y position
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function MirrorP($x='',$y='') {
-			$this->Scale(-100, -100, $x, $y);
-		}
-
-		/**
-		 * Reflection against a straight line through point (x, y) with the gradient angle (angle).
-		 * @param float $angle gradient angle of the straight line. Default is 0 (horizontal line).
-		 * @param int $x abscissa of the point. Default is current x position
-		 * @param int $y ordinate of the point. Default is current y position
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function MirrorL($angle=0, $x='',$y='') {
-			$this->Scale(-100, 100, $x, $y);
-			$this->Rotate(-2*($angle-90), $x, $y);
-		}
-
-		/**
-		 * Translate graphic object horizontally.
-		 * @param int $t_x movement to the right (or left for RTL)
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function TranslateX($t_x) {
-			$this->Translate($t_x, 0);
-		}
-
-		/**
-		 * Translate graphic object vertically.
-		 * @param int $t_y movement to the bottom
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function TranslateY($t_y) {
-			$this->Translate(0, $t_y);
-		}
-
-		/**
-		 * Translate graphic object horizontally and vertically.
-		 * @param int $t_x movement to the right
-		 * @param int $t_y movement to the bottom
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function Translate($t_x, $t_y) {
-			//calculate elements of transformation matrix
-			$tm[0] = 1;
-			$tm[1] = 0;
-			$tm[2] = 0;
-			$tm[3] = 1;
-			$tm[4] = $t_x * $this->k;
-			$tm[5] = -$t_y * $this->k;
-			//translate the coordinate system
-			$this->Transform($tm);
-		}
-
-		/**
-		 * Rotate object.
-		 * @param float $angle angle in degrees for counter-clockwise rotation
-		 * @param int $x abscissa of the rotation center. Default is current x position
-		 * @param int $y ordinate of the rotation center. Default is current y position
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function Rotate($angle, $x='', $y='') {
-			if ($x === '') {
-				$x = $this->x;
-			}
-			if ($y === '') {
-				$y = $this->y;
-			}
-			$y = ($this->h - $y) * $this->k;
-			$x *= $this->k;
-			//calculate elements of transformation matrix
-			$tm[0] = cos(deg2rad($angle));
-			$tm[1] = sin(deg2rad($angle));
-			$tm[2] = -$tm[1];
-			$tm[3] = $tm[0];
-			$tm[4] = $x + ($tm[1] * $y) - ($tm[0] * $x);
-			$tm[5] = $y - ($tm[0] * $y) - ($tm[1] * $x);
-			//rotate the coordinate system around ($x,$y)
-			$this->Transform($tm);
-		}
-
-		/**
-		 * Skew horizontally.
-		 * @param float $angle_x angle in degrees between -90 (skew to the left) and 90 (skew to the right)
-		 * @param int $x abscissa of the skewing center. default is current x position
-		 * @param int $y ordinate of the skewing center. default is current y position
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function SkewX($angle_x, $x='', $y='') {
-			$this->Skew($angle_x, 0, $x, $y);
-		}
-
-		/**
-		 * Skew vertically.
-		 * @param float $angle_y angle in degrees between -90 (skew to the bottom) and 90 (skew to the top)
-		 * @param int $x abscissa of the skewing center. default is current x position
-		 * @param int $y ordinate of the skewing center. default is current y position
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function SkewY($angle_y, $x='', $y='') {
-			$this->Skew(0, $angle_y, $x, $y);
-		}
-
-		/**
-		 * Skew.
-		 * @param float $angle_x angle in degrees between -90 (skew to the left) and 90 (skew to the right)
-		 * @param float $angle_y angle in degrees between -90 (skew to the bottom) and 90 (skew to the top)
-		 * @param int $x abscissa of the skewing center. default is current x position
-		 * @param int $y ordinate of the skewing center. default is current y position
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		public function Skew($angle_x, $angle_y, $x='', $y='') {
-			if ($x === '') {
-				$x = $this->x;
+		if (isset($color)) {
+			$s .= $this->SetDrawColorArray($color, true).' ';
+		}
+		if (!$ret) {
+			$this->_out($s);
+		}
+		return $s;
+	}
+
+	/**
+	 * Begin a new subpath by moving the current point to coordinates (x, y), omitting any connecting line segment.
+	 * @param $x (float) Abscissa of point.
+	 * @param $y (float) Ordinate of point.
+	 * @protected
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	protected function _outPoint($x, $y) {
+		$this->_out(sprintf('%.2F %.2F m', $x * $this->k, ($this->h - $y) * $this->k));
+	}
+
+	/**
+	 * Append a straight line segment from the current point to the point (x, y).
+	 * The new current point shall be (x, y).
+	 * @param $x (float) Abscissa of end point.
+	 * @param $y (float) Ordinate of end point.
+	 * @protected
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	protected function _outLine($x, $y) {
+		$this->_out(sprintf('%.2F %.2F l', $x * $this->k, ($this->h - $y) * $this->k));
+	}
+
+	/**
+	 * Append a rectangle to the current path as a complete subpath, with lower-left corner (x, y) and dimensions widthand height in user space.
+	 * @param $x (float) Abscissa of upper-left corner.
+	 * @param $y (float) Ordinate of upper-left corner.
+	 * @param $w (float) Width.
+	 * @param $h (float) Height.
+	 * @param $op (string) options
+	 * @protected
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	protected function _outRect($x, $y, $w, $h, $op) {
+		$this->_out(sprintf('%.2F %.2F %.2F %.2F re %s', $x * $this->k, ($this->h - $y) * $this->k, $w * $this->k, -$h * $this->k, $op));
+	}
+
+	/**
+	 * Append a cubic Bézier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1) and (x2, y2) as the Bézier control points.
+	 * The new current point shall be (x3, y3).
+	 * @param $x1 (float) Abscissa of control point 1.
+	 * @param $y1 (float) Ordinate of control point 1.
+	 * @param $x2 (float) Abscissa of control point 2.
+	 * @param $y2 (float) Ordinate of control point 2.
+	 * @param $x3 (float) Abscissa of end point.
+	 * @param $y3 (float) Ordinate of end point.
+	 * @protected
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	protected function _outCurve($x1, $y1, $x2, $y2, $x3, $y3) {
+		$this->_out(sprintf('%.2F %.2F %.2F %.2F %.2F %.2F c', $x1 * $this->k, ($this->h - $y1) * $this->k, $x2 * $this->k, ($this->h - $y2) * $this->k, $x3 * $this->k, ($this->h - $y3) * $this->k));
+	}
+
+	/**
+	 * Append a cubic Bézier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using the current point and (x2, y2) as the Bézier control points.
+	 * The new current point shall be (x3, y3).
+	 * @param $x2 (float) Abscissa of control point 2.
+	 * @param $y2 (float) Ordinate of control point 2.
+	 * @param $x3 (float) Abscissa of end point.
+	 * @param $y3 (float) Ordinate of end point.
+	 * @protected
+	 * @since 4.9.019 (2010-04-26)
+	 */
+	protected function _outCurveV($x2, $y2, $x3, $y3) {
+		$this->_out(sprintf('%.2F %.2F %.2F %.2F v', $x2 * $this->k, ($this->h - $y2) * $this->k, $x3 * $this->k, ($this->h - $y3) * $this->k));
+	}
+
+	/**
+	 * Append a cubic Bézier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1) and (x3, y3) as the Bézier control points.
+	 * The new current point shall be (x3, y3).
+	 * @param $x1 (float) Abscissa of control point 1.
+	 * @param $y1 (float) Ordinate of control point 1.
+	 * @param $x3 (float) Abscissa of end point.
+	 * @param $y3 (float) Ordinate of end point.
+	 * @protected
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	protected function _outCurveY($x1, $y1, $x3, $y3) {
+		$this->_out(sprintf('%.2F %.2F %.2F %.2F y', $x1 * $this->k, ($this->h - $y1) * $this->k, $x3 * $this->k, ($this->h - $y3) * $this->k));
+	}
+
+	/**
+	 * Draws a line between two points.
+	 * @param $x1 (float) Abscissa of first point.
+	 * @param $y1 (float) Ordinate of first point.
+	 * @param $x2 (float) Abscissa of second point.
+	 * @param $y2 (float) Ordinate of second point.
+	 * @param $style (array) Line style. Array like for SetLineStyle(). Default value: default line style (empty array).
+	 * @public
+	 * @since 1.0
+	 * @see SetLineWidth(), SetDrawColor(), SetLineStyle()
+	 */
+	public function Line($x1, $y1, $x2, $y2, $style=array()) {
+		if (is_array($style)) {
+			$this->SetLineStyle($style);
+		}
+		$this->_outPoint($x1, $y1);
+		$this->_outLine($x2, $y2);
+		$this->_out('S');
+	}
+
+	/**
+	 * Draws a rectangle.
+	 * @param $x (float) Abscissa of upper-left corner.
+	 * @param $y (float) Ordinate of upper-left corner.
+	 * @param $w (float) Width.
+	 * @param $h (float) Height.
+	 * @param $style (string) Style of rendering. See the getPathPaintOperator() function for more information.
+	 * @param $border_style (array) Border style of rectangle. Array with keys among the following:
+	 * <ul>
+	 *	 <li>all: Line style of all borders. Array like for SetLineStyle().</li>
+	 *	 <li>L, T, R, B or combinations: Line style of left, top, right or bottom border. Array like for SetLineStyle().</li>
+	 * </ul>
+	 * If a key is not present or is null, not draws the border. Default value: default line style (empty array).
+	 * @param $border_style (array) Border style of rectangle. Array like for SetLineStyle(). Default value: default line style (empty array).
+	 * @param $fill_color (array) Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
+	 * @public
+	 * @since 1.0
+	 * @see SetLineStyle()
+	 */
+	public function Rect($x, $y, $w, $h, $style='', $border_style=array(), $fill_color=array()) {
+		if (!(false === strpos($style, 'F')) AND !empty($fill_color)) {
+			$this->SetFillColorArray($fill_color);
+		}
+		$op = $this->getPathPaintOperator($style);
+		if ((!$border_style) OR (isset($border_style['all']))) {
+			if (isset($border_style['all']) AND $border_style['all']) {
+				$this->SetLineStyle($border_style['all']);
+				$border_style = array();
 			}
-			if ($y === '') {
-				$y = $this->y;
+		}
+		$this->_outRect($x, $y, $w, $h, $op);
+		if ($border_style) {
+			$border_style2 = array();
+			foreach ($border_style as $line => $value) {
+				$length = strlen($line);
+				for ($i = 0; $i < $length; ++$i) {
+					$border_style2[$line[$i]] = $value;
+				}
 			}
-			if (($angle_x <= -90) OR ($angle_x >= 90) OR ($angle_y <= -90) OR ($angle_y >= 90)) {
-				$this->Error('Please use values between -90 and +90 degrees for Skewing.');
-			}
-			$x *= $this->k;
-			$y = ($this->h - $y) * $this->k;
-			//calculate elements of transformation matrix
-			$tm[0] = 1;
-			$tm[1] = tan(deg2rad($angle_y));
-			$tm[2] = tan(deg2rad($angle_x));
-			$tm[3] = 1;
-			$tm[4] = -$tm[2] * $y;
-			$tm[5] = -$tm[1] * $x;
-			//skew the coordinate system
-			$this->Transform($tm);
-		}
-
-		/**
-		 * Apply graphic transformations.
-		 * @param array $tm transformation matrix
-		 * @access protected
-		 * @since 2.1.000 (2008-01-07)
-		 * @see StartTransform(), StopTransform()
-		 */
-		protected function Transform($tm) {
-			$this->_out(sprintf('%.3F %.3F %.3F %.3F %.3F %.3F cm', $tm[0], $tm[1], $tm[2], $tm[3], $tm[4], $tm[5]));
-			// add tranformation matrix
-			$this->transfmatrix[$this->transfmatrix_key][] = array('a' => $tm[0], 'b' => $tm[1], 'c' => $tm[2], 'd' => $tm[3], 'e' => $tm[4], 'f' => $tm[5]);
-			// update tranformation mark
-			if (end($this->transfmrk[$this->page]) !== false) {
-				$key = key($this->transfmrk[$this->page]);
-				$this->transfmrk[$this->page][$key] = $this->pagelen[$this->page];
-			}
-		}
-
-		// END TRANSFORMATIONS SECTION -------------------------
-
-
-		// START GRAPHIC FUNCTIONS SECTION ---------------------
-		// The following section is based on the code provided by David Hernandez Sanz
-
-		/**
-		 * Defines the line width. By default, the value equals 0.2 mm. The method can be called before the first page is created and the value is retained from page to page.
-		 * @param float $width The width.
-		 * @access public
-		 * @since 1.0
-		 * @see Line(), Rect(), Cell(), MultiCell()
-		 */
-		public function SetLineWidth($width) {
-			//Set line width
-			$this->LineWidth = $width;
-			$this->linestyleWidth = sprintf('%.2F w', ($width * $this->k));
-			if ($this->page > 0) {
-				$this->_out($this->linestyleWidth);
-			}
-		}
-
-		/**
-		 * Returns the current the line width.
-		 * @return int Line width
-		 * @access public
-		 * @since 2.1.000 (2008-01-07)
-		 * @see Line(), SetLineWidth()
-		 */
-		public function GetLineWidth() {
-			return $this->LineWidth;
-		}
-
-		/**
-		 * Set line style.
-		 * @param array $style Line style. Array with keys among the following:
-		 * <ul>
-		 *	 <li>width (float): Width of the line in user units.</li>
-		 *	 <li>cap (string): Type of cap to put on the line. Possible values are:
-		 * butt, round, square. The difference between "square" and "butt" is that
-		 * "square" projects a flat end past the end of the line.</li>
-		 *	 <li>join (string): Type of join. Possible values are: miter, round,
-		 * bevel.</li>
-		 *	 <li>dash (mixed): Dash pattern. Is 0 (without dash) or string with
-		 * series of length values, which are the lengths of the on and off dashes.
-		 * For example: "2" represents 2 on, 2 off, 2 on, 2 off, ...; "2,1" is 2 on,
-		 * 1 off, 2 on, 1 off, ...</li>
-		 *	 <li>phase (integer): Modifier on the dash pattern which is used to shift
-		 * the point at which the pattern starts.</li>
-		 *	 <li>color (array): Draw color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K).</li>
-		 * </ul>
-		 * @access public
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		public function SetLineStyle($style) {
-			if (!is_array($style)) {
-				return;
+			$border_style = $border_style2;
+			if (isset($border_style['L']) AND $border_style['L']) {
+				$this->Line($x, $y, $x, $y + $h, $border_style['L']);
 			}
-			extract($style);
-			if (isset($width)) {
-				$width_prev = $this->LineWidth;
-				$this->SetLineWidth($width);
-				$this->LineWidth = $width_prev;
+			if (isset($border_style['T']) AND $border_style['T']) {
+				$this->Line($x, $y, $x + $w, $y, $border_style['T']);
 			}
-			if (isset($cap)) {
-				$ca = array('butt' => 0, 'round'=> 1, 'square' => 2);
-				if (isset($ca[$cap])) {
-					$this->linestyleCap = $ca[$cap].' J';
-					$this->_out($this->linestyleCap);
-				}
+			if (isset($border_style['R']) AND $border_style['R']) {
+				$this->Line($x + $w, $y, $x + $w, $y + $h, $border_style['R']);
 			}
-			if (isset($join)) {
-				$ja = array('miter' => 0, 'round' => 1, 'bevel' => 2);
-				if (isset($ja[$join])) {
-					$this->linestyleJoin = $ja[$join].' j';
-					$this->_out($this->linestyleJoin);
-				}
+			if (isset($border_style['B']) AND $border_style['B']) {
+				$this->Line($x, $y + $h, $x + $w, $y + $h, $border_style['B']);
 			}
-			if (isset($dash)) {
-				$dash_string = '';
-				if ($dash) {
-					if (preg_match('/^.+,/', $dash) > 0) {
-						$tab = explode(',', $dash);
-					} else {
-						$tab = array($dash);
-					}
-					$dash_string = '';
-					foreach ($tab as $i => $v) {
-						if ($i) {
-							$dash_string .= ' ';
-						}
-						$dash_string .= sprintf('%.2F', $v);
-					}
-				}
-				if (!isset($phase) OR !$dash) {
-					$phase = 0;
-				}
-				$this->linestyleDash = sprintf('[%s] %.2F d', $dash_string, $phase);
-				$this->_out($this->linestyleDash);
-			}
-			if (isset($color)) {
-				$this->SetDrawColorArray($color);
-			}
-		}
-
-		/**
-		 * Begin a new subpath by moving the current point to coordinates (x, y), omitting any connecting line segment.
-		 * @param float $x Abscissa of point.
-		 * @param float $y Ordinate of point.
-		 * @access protected
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		protected function _outPoint($x, $y) {
-			$this->_out(sprintf('%.2F %.2F m', $x * $this->k, ($this->h - $y) * $this->k));
-		}
-
-		/**
-		 * Append a straight line segment from the current point to the point (x, y).
-		 * The new current point shall be (x, y).
-		 * @param float $x Abscissa of end point.
-		 * @param float $y Ordinate of end point.
-		 * @access protected
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		protected function _outLine($x, $y) {
-			$this->_out(sprintf('%.2F %.2F l', $x * $this->k, ($this->h - $y) * $this->k));
-		}
-
-		/**
-		 * Append a rectangle to the current path as a complete subpath, with lower-left corner (x, y) and dimensions widthand height in user space.
-		 * @param float $x Abscissa of upper-left corner (or upper-right corner for RTL language).
-		 * @param float $y Ordinate of upper-left corner (or upper-right corner for RTL language).
-		 * @param float $w Width.
-		 * @param float $h Height.
-		 * @param string $op options
-		 * @access protected
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		protected function _outRect($x, $y, $w, $h, $op) {
-			$this->_out(sprintf('%.2F %.2F %.2F %.2F re %s', $x * $this->k, ($this->h - $y) * $this->k, $w * $this->k, -$h * $this->k, $op));
-		}
-
-		/**
-		 * Append a cubic B�zier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1) and (x2, y2) as the B�zier control points.
-		 * The new current point shall be (x3, y3).
-		 * @param float $x1 Abscissa of control point 1.
-		 * @param float $y1 Ordinate of control point 1.
-		 * @param float $x2 Abscissa of control point 2.
-		 * @param float $y2 Ordinate of control point 2.
-		 * @param float $x3 Abscissa of end point.
-		 * @param float $y3 Ordinate of end point.
-		 * @access protected
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		protected function _outCurve($x1, $y1, $x2, $y2, $x3, $y3) {
-			$this->_out(sprintf('%.2F %.2F %.2F %.2F %.2F %.2F c', $x1 * $this->k, ($this->h - $y1) * $this->k, $x2 * $this->k, ($this->h - $y2) * $this->k, $x3 * $this->k, ($this->h - $y3) * $this->k));
-		}
-
-		/**
-		 * Append a cubic B�zier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using the current point and (x2, y2) as the B�zier control points.
-		 * The new current point shall be (x3, y3).
-		 * @param float $x2 Abscissa of control point 2.
-		 * @param float $y2 Ordinate of control point 2.
-		 * @param float $x3 Abscissa of end point.
-		 * @param float $y3 Ordinate of end point.
-		 * @access protected
-		 * @since 4.9.019 (2010-04-26)
-		 */
-		protected function _outCurveV($x2, $y2, $x3, $y3) {
-			$this->_out(sprintf('%.2F %.2F %.2F %.2F v', $x2 * $this->k, ($this->h - $y2) * $this->k, $x3 * $this->k, ($this->h - $y3) * $this->k));
-		}
-
-		/**
-		 * Append a cubic B�zier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1) and (x3, y3) as the B�zier control points.
-		 * The new current point shall be (x3, y3).
-		 * @param float $x1 Abscissa of control point 1.
-		 * @param float $y1 Ordinate of control point 1.
-		 * @param float $x2 Abscissa of control point 2.
-		 * @param float $y2 Ordinate of control point 2.
-		 * @param float $x3 Abscissa of end point.
-		 * @param float $y3 Ordinate of end point.
-		 * @access protected
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		protected function _outCurveY($x1, $y1, $x3, $y3) {
-			$this->_out(sprintf('%.2F %.2F %.2F %.2F y', $x1 * $this->k, ($this->h - $y1) * $this->k, $x3 * $this->k, ($this->h - $y3) * $this->k));
-		}
-
-		/**
-		 * Draws a line between two points.
-		 * @param float $x1 Abscissa of first point.
-		 * @param float $y1 Ordinate of first point.
-		 * @param float $x2 Abscissa of second point.
-		 * @param float $y2 Ordinate of second point.
-		 * @param array $style Line style. Array like for {@link SetLineStyle SetLineStyle}. Default value: default line style (empty array).
-		 * @access public
-		 * @since 1.0
-		 * @see SetLineWidth(), SetDrawColor(), SetLineStyle()
-		 */
-		public function Line($x1, $y1, $x2, $y2, $style=array()) {
-			if (is_array($style)) {
-				$this->SetLineStyle($style);
-			}
-			$this->_outPoint($x1, $y1);
-			$this->_outLine($x2, $y2);
-			$this->_out('S');
-		}
-
-		/**
-		 * Draws a rectangle.
-		 * @param float $x Abscissa of upper-left corner (or upper-right corner for RTL language).
-		 * @param float $y Ordinate of upper-left corner (or upper-right corner for RTL language).
-		 * @param float $w Width.
-		 * @param float $h Height.
-		 * @param string $style Style of rendering. See the getPathPaintOperator() function for more information.
-		 * @param array $border_style Border style of rectangle. Array with keys among the following:
-		 * <ul>
-		 *	 <li>all: Line style of all borders. Array like for {@link SetLineStyle SetLineStyle}.</li>
-		 *	 <li>L, T, R, B or combinations: Line style of left, top, right or bottom border. Array like for {@link SetLineStyle SetLineStyle}.</li>
-		 * </ul>
-		 * If a key is not present or is null, not draws the border. Default value: default line style (empty array).
-		 * @param array $border_style Border style of rectangle. Array like for {@link SetLineStyle SetLineStyle}. Default value: default line style (empty array).
-		 * @param array $fill_color Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
-		 * @access public
-		 * @since 1.0
-		 * @see SetLineStyle()
-		 */
-		public function Rect($x, $y, $w, $h, $style='', $border_style=array(), $fill_color=array()) {
-			if (!(false === strpos($style, 'F')) AND !empty($fill_color)) {
-				$this->SetFillColorArray($fill_color);
-			}
-			$op = $this->getPathPaintOperator($style);
-			if ((!$border_style) OR (isset($border_style['all']))) {
-				if (isset($border_style['all']) AND $border_style['all']) {
-					$this->SetLineStyle($border_style['all']);
-					$border_style = array();
-				}
-			}
-			$this->_outRect($x, $y, $w, $h, $op);
-			if ($border_style) {
-				$border_style2 = array();
-				foreach ($border_style as $line => $value) {
-					$length = strlen($line);
-					for ($i = 0; $i < $length; ++$i) {
-						$border_style2[$line[$i]] = $value;
-					}
-				}
-				$border_style = $border_style2;
-				if (isset($border_style['L']) AND $border_style['L']) {
-					$this->Line($x, $y, $x, $y + $h, $border_style['L']);
-				}
-				if (isset($border_style['T']) AND $border_style['T']) {
-					$this->Line($x, $y, $x + $w, $y, $border_style['T']);
-				}
-				if (isset($border_style['R']) AND $border_style['R']) {
-					$this->Line($x + $w, $y, $x + $w, $y + $h, $border_style['R']);
-				}
-				if (isset($border_style['B']) AND $border_style['B']) {
-					$this->Line($x, $y + $h, $x + $w, $y + $h, $border_style['B']);
-				}
-			}
-		}
-
-		/**
-		 * Draws a Bezier curve.
-		 * The Bezier curve is a tangent to the line between the control points at
-		 * either end of the curve.
-		 * @param float $x0 Abscissa of start point.
-		 * @param float $y0 Ordinate of start point.
-		 * @param float $x1 Abscissa of control point 1.
-		 * @param float $y1 Ordinate of control point 1.
-		 * @param float $x2 Abscissa of control point 2.
-		 * @param float $y2 Ordinate of control point 2.
-		 * @param float $x3 Abscissa of end point.
-		 * @param float $y3 Ordinate of end point.
-		 * @param string $style Style of rendering. See the getPathPaintOperator() function for more information.
-		 * @param array $line_style Line style of curve. Array like for {@link SetLineStyle SetLineStyle}. Default value: default line style (empty array).
-		 * @param array $fill_color Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
-		 * @access public
-		 * @see SetLineStyle()
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		public function Curve($x0, $y0, $x1, $y1, $x2, $y2, $x3, $y3, $style='', $line_style=array(), $fill_color=array()) {
-			if (!(false === strpos($style, 'F')) AND isset($fill_color)) {
-				$this->SetFillColorArray($fill_color);
-			}
-			$op = $this->getPathPaintOperator($style);
-			if ($line_style) {
-				$this->SetLineStyle($line_style);
-			}
-			$this->_outPoint($x0, $y0);
-			$this->_outCurve($x1, $y1, $x2, $y2, $x3, $y3);
-			$this->_out($op);
 		}
+	}
 
-		/**
-		 * Draws a poly-Bezier curve.
-		 * Each Bezier curve segment is a tangent to the line between the control points at
-		 * either end of the curve.
-		 * @param float $x0 Abscissa of start point.
-		 * @param float $y0 Ordinate of start point.
-		 * @param float $segments An array of bezier descriptions. Format: array(x1, y1, x2, y2, x3, y3).
-		 * @param string $style Style of rendering. See the getPathPaintOperator() function for more information.
-		 * @param array $line_style Line style of curve. Array like for {@link SetLineStyle SetLineStyle}. Default value: default line style (empty array).
-		 * @param array $fill_color Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
-		 * @access public
-		 * @see SetLineStyle()
-		 * @since 3.0008 (2008-05-12)
-		 */
-		public function Polycurve($x0, $y0, $segments, $style='', $line_style=array(), $fill_color=array()) {
-			if (!(false === strpos($style, 'F')) AND isset($fill_color)) {
-				$this->SetFillColorArray($fill_color);
-			}
-			$op = $this->getPathPaintOperator($style);
-			if ($op == 'f') {
-				$line_style = array();
-			}
-			if ($line_style) {
-				$this->SetLineStyle($line_style);
-			}
-			$this->_outPoint($x0, $y0);
-			foreach ($segments as $segment) {
-				list($x1, $y1, $x2, $y2, $x3, $y3) = $segment;
-				$this->_outCurve($x1, $y1, $x2, $y2, $x3, $y3);
-			}
-			$this->_out($op);
+	/**
+	 * Draws a Bezier curve.
+	 * The Bezier curve is a tangent to the line between the control points at
+	 * either end of the curve.
+	 * @param $x0 (float) Abscissa of start point.
+	 * @param $y0 (float) Ordinate of start point.
+	 * @param $x1 (float) Abscissa of control point 1.
+	 * @param $y1 (float) Ordinate of control point 1.
+	 * @param $x2 (float) Abscissa of control point 2.
+	 * @param $y2 (float) Ordinate of control point 2.
+	 * @param $x3 (float) Abscissa of end point.
+	 * @param $y3 (float) Ordinate of end point.
+	 * @param $style (string) Style of rendering. See the getPathPaintOperator() function for more information.
+	 * @param $line_style (array) Line style of curve. Array like for SetLineStyle(). Default value: default line style (empty array).
+	 * @param $fill_color (array) Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
+	 * @public
+	 * @see SetLineStyle()
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	public function Curve($x0, $y0, $x1, $y1, $x2, $y2, $x3, $y3, $style='', $line_style=array(), $fill_color=array()) {
+		if (!(false === strpos($style, 'F')) AND isset($fill_color)) {
+			$this->SetFillColorArray($fill_color);
+		}
+		$op = $this->getPathPaintOperator($style);
+		if ($line_style) {
+			$this->SetLineStyle($line_style);
 		}
+		$this->_outPoint($x0, $y0);
+		$this->_outCurve($x1, $y1, $x2, $y2, $x3, $y3);
+		$this->_out($op);
+	}
 
-		/**
-		 * Draws an ellipse.
-		 * An ellipse is formed from n Bezier curves.
-		 * @param float $x0 Abscissa of center point.
-		 * @param float $y0 Ordinate of center point.
-		 * @param float $rx Horizontal radius.
-		 * @param float $ry Vertical radius (if ry = 0 then is a circle, see {@link Circle Circle}). Default value: 0.
-		 * @param float $angle: Angle oriented (anti-clockwise). Default value: 0.
-		 * @param float $astart: Angle start of draw line. Default value: 0.
-		 * @param float $afinish: Angle finish of draw line. Default value: 360.
-		 * @param string $style Style of rendering. See the getPathPaintOperator() function for more information.
-		 * @param array $line_style Line style of ellipse. Array like for {@link SetLineStyle SetLineStyle}. Default value: default line style (empty array).
-		 * @param array $fill_color Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
-		 * @param integer $nc Number of curves used to draw a 90 degrees portion of ellipse.
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		public function Ellipse($x0, $y0, $rx, $ry='', $angle=0, $astart=0, $afinish=360, $style='', $line_style=array(), $fill_color=array(), $nc=2) {
-			if ($this->empty_string($ry) OR ($ry == 0)) {
-				$ry = $rx;
-			}
-			if (!(false === strpos($style, 'F')) AND isset($fill_color)) {
-				$this->SetFillColorArray($fill_color);
-			}
-			$op = $this->getPathPaintOperator($style);
-			if ($op == 'f') {
-				$line_style = array();
-			}
-			if ($line_style) {
-				$this->SetLineStyle($line_style);
-			}
-			$this->_outellipticalarc($x0, $y0, $rx, $ry, $angle, $astart, $afinish, false, $nc);
-			$this->_out($op);
+	/**
+	 * Draws a poly-Bezier curve.
+	 * Each Bezier curve segment is a tangent to the line between the control points at
+	 * either end of the curve.
+	 * @param $x0 (float) Abscissa of start point.
+	 * @param $y0 (float) Ordinate of start point.
+	 * @param $segments (float) An array of bezier descriptions. Format: array(x1, y1, x2, y2, x3, y3).
+	 * @param $style (string) Style of rendering. See the getPathPaintOperator() function for more information.
+	 * @param $line_style (array) Line style of curve. Array like for SetLineStyle(). Default value: default line style (empty array).
+	 * @param $fill_color (array) Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
+	 * @public
+	 * @see SetLineStyle()
+	 * @since 3.0008 (2008-05-12)
+	 */
+	public function Polycurve($x0, $y0, $segments, $style='', $line_style=array(), $fill_color=array()) {
+		if (!(false === strpos($style, 'F')) AND isset($fill_color)) {
+			$this->SetFillColorArray($fill_color);
+		}
+		$op = $this->getPathPaintOperator($style);
+		if ($op == 'f') {
+			$line_style = array();
+		}
+		if ($line_style) {
+			$this->SetLineStyle($line_style);
 		}
+		$this->_outPoint($x0, $y0);
+		foreach ($segments as $segment) {
+			list($x1, $y1, $x2, $y2, $x3, $y3) = $segment;
+			$this->_outCurve($x1, $y1, $x2, $y2, $x3, $y3);
+		}
+		$this->_out($op);
+	}
 
-		/**
-		 * Append an elliptical arc to the current path.
-		 * An ellipse is formed from n Bezier curves.
-		 * @param float $xc Abscissa of center point.
-		 * @param float $yc Ordinate of center point.
-		 * @param float $rx Horizontal radius.
-		 * @param float $ry Vertical radius (if ry = 0 then is a circle, see {@link Circle Circle}). Default value: 0.
-		 * @param float $xang: Angle between the X-axis and the major axis of the ellipse. Default value: 0.
-		 * @param float $angs: Angle start of draw line. Default value: 0.
-		 * @param float $angf: Angle finish of draw line. Default value: 360.
-		 * @param boolean $pie if true do not mark the border point (used to draw pie sectors).
-		 * @param integer $nc Number of curves used to draw a 90 degrees portion of ellipse.
-		 * @author Nicola Asuni
-		 * @access protected
-		 * @since 4.9.019 (2010-04-26)
-		 */
-		protected function _outellipticalarc($xc, $yc, $rx, $ry, $xang=0, $angs=0, $angf=360, $pie=false, $nc=2) {
-			$k = $this->k;
-			if ($nc < 2) {
-				$nc = 2;
-			}
-			if ($pie) {
-				// center of the arc
-				$this->_outPoint($xc, $yc);
-			}
-			$xang = deg2rad((float) $xang);
-			$angs = deg2rad((float) $angs);
-			$angf = deg2rad((float) $angf);
-			$as = atan2((sin($angs) / $ry), (cos($angs) / $rx));
-			$af = atan2((sin($angf) / $ry), (cos($angf) / $rx));
-			if ($as < 0) {
-				$as += (2 * M_PI);
-			}
-			if ($af < 0) {
-				$af += (2 * M_PI);
-			}
-			if ($as > $af) {
-				// reverse rotation go clockwise
-				$as -= (2 * M_PI);
-			}
-			$total_angle = ($af - $as);
-			if ($nc < 2) {
-				$nc = 2;
-			}
-			// total arcs to draw
-			$nc *= (2 * abs($total_angle) / M_PI);
-			$nc = round($nc) + 1;
-			// angle of each arc
-			$arcang = $total_angle / $nc;
-			// center point in PDF coordiantes
-			$x0 = $xc;
-			$y0 = ($this->h - $yc);
+	/**
+	 * Draws an ellipse.
+	 * An ellipse is formed from n Bezier curves.
+	 * @param $x0 (float) Abscissa of center point.
+	 * @param $y0 (float) Ordinate of center point.
+	 * @param $rx (float) Horizontal radius.
+	 * @param $ry (float) Vertical radius (if ry = 0 then is a circle, see Circle()). Default value: 0.
+	 * @param $angle: (float) Angle oriented (anti-clockwise). Default value: 0.
+	 * @param $astart: (float) Angle start of draw line. Default value: 0.
+	 * @param $afinish: (float) Angle finish of draw line. Default value: 360.
+	 * @param $style (string) Style of rendering. See the getPathPaintOperator() function for more information.
+	 * @param $line_style (array) Line style of ellipse. Array like for SetLineStyle(). Default value: default line style (empty array).
+	 * @param $fill_color (array) Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
+	 * @param $nc (integer) Number of curves used to draw a 90 degrees portion of ellipse.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	public function Ellipse($x0, $y0, $rx, $ry='', $angle=0, $astart=0, $afinish=360, $style='', $line_style=array(), $fill_color=array(), $nc=2) {
+		if ($this->empty_string($ry) OR ($ry == 0)) {
+			$ry = $rx;
+		}
+		if (!(false === strpos($style, 'F')) AND isset($fill_color)) {
+			$this->SetFillColorArray($fill_color);
+		}
+		$op = $this->getPathPaintOperator($style);
+		if ($op == 'f') {
+			$line_style = array();
+		}
+		if ($line_style) {
+			$this->SetLineStyle($line_style);
+		}
+		$this->_outellipticalarc($x0, $y0, $rx, $ry, $angle, $astart, $afinish, false, $nc);
+		$this->_out($op);
+	}
+
+	/**
+	 * Append an elliptical arc to the current path.
+	 * An ellipse is formed from n Bezier curves.
+	 * @param $xc (float) Abscissa of center point.
+	 * @param $yc (float) Ordinate of center point.
+	 * @param $rx (float) Horizontal radius.
+	 * @param $ry (float) Vertical radius (if ry = 0 then is a circle, see Circle()). Default value: 0.
+	 * @param $xang: (float) Angle between the X-axis and the major axis of the ellipse. Default value: 0.
+	 * @param $angs: (float) Angle start of draw line. Default value: 0.
+	 * @param $angf: (float) Angle finish of draw line. Default value: 360.
+	 * @param $pie (boolean) if true do not mark the border point (used to draw pie sectors).
+	 * @param $nc (integer) Number of curves used to draw a 90 degrees portion of ellipse.
+	 * @param $startpoint (boolean) if true output a starting point
+	 * @param $ccw (boolean) if true draws in counter-clockwise
+	 * @return array bounding box coordinates (x min, y min, x max, y max)
+	 * @author Nicola Asuni
+	 * @protected
+	 * @since 4.9.019 (2010-04-26)
+	 */
+	protected function _outellipticalarc($xc, $yc, $rx, $ry, $xang=0, $angs=0, $angf=360, $pie=false, $nc=2, $startpoint=true, $ccw=true) {
+		$k = $this->k;
+		if ($nc < 2) {
+			$nc = 2;
+		}
+		$xmin = 2147483647;
+		$ymin = 2147483647;
+		$xmax = 0;
+		$ymax = 0;
+		if ($pie) {
+			// center of the arc
+			$this->_outPoint($xc, $yc);
+		}
+		$xang = deg2rad((float) $xang);
+		$angs = deg2rad((float) $angs);
+		$angf = deg2rad((float) $angf);
+		$as = atan2((sin($angs) / $ry), (cos($angs) / $rx));
+		$af = atan2((sin($angf) / $ry), (cos($angf) / $rx));
+		if ($as < 0) {
+			$as += (2 * M_PI);
+		}
+		if ($af < 0) {
+			$af += (2 * M_PI);
+		}
+		if ($ccw AND ($as > $af)) {
+			// reverse rotation
+			$as -= (2 * M_PI);
+		} elseif (!$ccw AND ($as < $af)) {
+			// reverse rotation
+			$af -= (2 * M_PI);
+		}
+		$total_angle = ($af - $as);
+		if ($nc < 2) {
+			$nc = 2;
+		}
+		// total arcs to draw
+		$nc *= (2 * abs($total_angle) / M_PI);
+		$nc = round($nc) + 1;
+		// angle of each arc
+		$arcang = $total_angle / $nc;
+		// center point in PDF coordiantes
+		$x0 = $xc;
+		$y0 = ($this->h - $yc);
+		// starting angle
+		$ang = $as;
+		$alpha = sin($arcang) * ((sqrt(4 + (3 * pow(tan(($arcang) / 2), 2))) - 1) / 3);
+		$cos_xang = cos($xang);
+		$sin_xang = sin($xang);
+		$cos_ang = cos($ang);
+		$sin_ang = sin($ang);
+		// first arc point
+		$px1 = $x0 + ($rx * $cos_xang * $cos_ang) - ($ry * $sin_xang * $sin_ang);
+		$py1 = $y0 + ($rx * $sin_xang * $cos_ang) + ($ry * $cos_xang * $sin_ang);
+		// first Bezier control point
+		$qx1 = ($alpha * ((-$rx * $cos_xang * $sin_ang) - ($ry * $sin_xang * $cos_ang)));
+		$qy1 = ($alpha * ((-$rx * $sin_xang * $sin_ang) + ($ry * $cos_xang * $cos_ang)));
+		if ($pie) {
+			// line from center to arc starting point
+			$this->_outLine($px1, $this->h - $py1);
+		} elseif ($startpoint) {
+			// arc starting point
+			$this->_outPoint($px1, $this->h - $py1);
+		}
+		// draw arcs
+		for ($i = 1; $i <= $nc; ++$i) {
 			// starting angle
-			$ang = $as;
-			$alpha = sin($arcang) * ((sqrt(4 + (3 * pow(tan(($arcang) / 2), 2))) - 1) / 3);
+			$ang = $as + ($i * $arcang);
 			$cos_xang = cos($xang);
 			$sin_xang = sin($xang);
 			$cos_ang = cos($ang);
 			$sin_ang = sin($ang);
-			// first arc point
-			$px1 = $x0 + ($rx * $cos_xang * $cos_ang) - ($ry * $sin_xang * $sin_ang);
-			$py1 = $y0 + ($rx * $sin_xang * $cos_ang) + ($ry * $cos_xang * $sin_ang);
-			// first Bezier control point
-			$qx1 = ($alpha * ((-$rx * $cos_xang * $sin_ang) - ($ry * $sin_xang * $cos_ang)));
-			$qy1 = ($alpha * ((-$rx * $sin_xang * $sin_ang) + ($ry * $cos_xang * $cos_ang)));
-			if ($pie) {
-				$this->_outLine($px1, $this->h - $py1);
+			// second arc point
+			$px2 = $x0 + ($rx * $cos_xang * $cos_ang) - ($ry * $sin_xang * $sin_ang);
+			$py2 = $y0 + ($rx * $sin_xang * $cos_ang) + ($ry * $cos_xang * $sin_ang);
+			// second Bezier control point
+			$qx2 = ($alpha * ((-$rx * $cos_xang * $sin_ang) - ($ry * $sin_xang * $cos_ang)));
+			$qy2 = ($alpha * ((-$rx * $sin_xang * $sin_ang) + ($ry * $cos_xang * $cos_ang)));
+			// draw arc
+			$cx1 = ($px1 + $qx1);
+			$cy1 = ($this->h - ($py1 + $qy1));
+			$cx2 = ($px2 - $qx2);
+			$cy2 = ($this->h - ($py2 - $qy2));
+			$cx3 = $px2;
+			$cy3 = ($this->h - $py2);
+			$this->_outCurve($cx1, $cy1, $cx2, $cy2, $cx3, $cy3);
+			// get bounding box coordinates
+			$xmin = min($xmin, $cx1, $cx2, $cx3);
+			$ymin = min($ymin, $cy1, $cy2, $cy3);
+			$xmax = max($xmax, $cx1, $cx2, $cx3);
+			$ymax = max($ymax, $cy1, $cy2, $cy3);
+			// move to next point
+			$px1 = $px2;
+			$py1 = $py2;
+			$qx1 = $qx2;
+			$qy1 = $qy2;
+		}
+		if ($pie) {
+			$this->_outLine($xc, $yc);
+			// get bounding box coordinates
+			$xmin = min($xmin, $xc);
+			$ymin = min($ymin, $yc);
+			$xmax = max($xmax, $xc);
+			$ymax = max($ymax, $yc);
+		}
+		return array($xmin, $ymin, $xmax, $ymax);
+	}
+
+	/**
+	 * Draws a circle.
+	 * A circle is formed from n Bezier curves.
+	 * @param $x0 (float) Abscissa of center point.
+	 * @param $y0 (float) Ordinate of center point.
+	 * @param $r (float) Radius.
+	 * @param $angstr: (float) Angle start of draw line. Default value: 0.
+	 * @param $angend: (float) Angle finish of draw line. Default value: 360.
+	 * @param $style (string) Style of rendering. See the getPathPaintOperator() function for more information.
+	 * @param $line_style (array) Line style of circle. Array like for SetLineStyle(). Default value: default line style (empty array).
+	 * @param $fill_color (array) Fill color. Format: array(red, green, blue). Default value: default color (empty array).
+	 * @param $nc (integer) Number of curves used to draw a 90 degrees portion of circle.
+	 * @public
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	public function Circle($x0, $y0, $r, $angstr=0, $angend=360, $style='', $line_style=array(), $fill_color=array(), $nc=2) {
+		$this->Ellipse($x0, $y0, $r, $r, 0, $angstr, $angend, $style, $line_style, $fill_color, $nc);
+	}
+
+	/**
+	 * Draws a polygonal line
+	 * @param $p (array) Points 0 to ($np - 1). Array with values (x0, y0, x1, y1,..., x(np-1), y(np - 1))
+	 * @param $style (string) Style of rendering. See the getPathPaintOperator() function for more information.
+	 * @param $line_style (array) Line style of polygon. Array with keys among the following:
+	 * <ul>
+	 *	 <li>all: Line style of all lines. Array like for SetLineStyle().</li>
+	 *	 <li>0 to ($np - 1): Line style of each line. Array like for SetLineStyle().</li>
+	 * </ul>
+	 * If a key is not present or is null, not draws the line. Default value is default line style (empty array).
+	 * @param $fill_color (array) Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
+	 * @since 4.8.003 (2009-09-15)
+	 * @public
+	 */
+	public function PolyLine($p, $style='', $line_style=array(), $fill_color=array()) {
+		$this->Polygon($p, $style, $line_style, $fill_color, false);
+	}
+
+	/**
+	 * Draws a polygon.
+	 * @param $p (array) Points 0 to ($np - 1). Array with values (x0, y0, x1, y1,..., x(np-1), y(np - 1))
+	 * @param $style (string) Style of rendering. See the getPathPaintOperator() function for more information.
+	 * @param $line_style (array) Line style of polygon. Array with keys among the following:
+	 * <ul>
+	 *	 <li>all: Line style of all lines. Array like for SetLineStyle().</li>
+	 *	 <li>0 to ($np - 1): Line style of each line. Array like for SetLineStyle().</li>
+	 * </ul>
+	 * If a key is not present or is null, not draws the line. Default value is default line style (empty array).
+	 * @param $fill_color (array) Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
+	 * @param $closed (boolean) if true the polygon is closes, otherwise will remain open
+	 * @public
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	public function Polygon($p, $style='', $line_style=array(), $fill_color=array(), $closed=true) {
+		$nc = count($p); // number of coordinates
+		$np = $nc / 2; // number of points
+		if ($closed) {
+			// close polygon by adding the first 2 points at the end (one line)
+			for ($i = 0; $i < 4; ++$i) {
+				$p[$nc + $i] = $p[$i];
+			}
+			// copy style for the last added line
+			if (isset($line_style[0])) {
+				$line_style[$np] = $line_style[0];
+			}
+			$nc += 4;
+		}
+		if (!(false === strpos($style, 'F')) AND isset($fill_color)) {
+			$this->SetFillColorArray($fill_color);
+		}
+		$op = $this->getPathPaintOperator($style);
+		if ($op == 'f') {
+			$line_style = array();
+		}
+		$draw = true;
+		if ($line_style) {
+			if (isset($line_style['all'])) {
+				$this->SetLineStyle($line_style['all']);
 			} else {
-				$this->_outPoint($px1, $this->h - $py1);
-			}
-			// draw arcs
-			for ($i = 1; $i <= $nc; ++$i) {
-				// starting angle
-				$ang = $as + ($i * $arcang);
-				$cos_xang = cos($xang);
-				$sin_xang = sin($xang);
-				$cos_ang = cos($ang);
-				$sin_ang = sin($ang);
-				// second arc point
-				$px2 = $x0 + ($rx * $cos_xang * $cos_ang) - ($ry * $sin_xang * $sin_ang);
-				$py2 = $y0 + ($rx * $sin_xang * $cos_ang) + ($ry * $cos_xang * $sin_ang);
-				// second Bezier control point
-				$qx2 = ($alpha * ((-$rx * $cos_xang * $sin_ang) - ($ry * $sin_xang * $cos_ang)));
-				$qy2 = ($alpha * ((-$rx * $sin_xang * $sin_ang) + ($ry * $cos_xang * $cos_ang)));
-				// draw arc
-				$this->_outCurve(($px1 + $qx1), ($this->h - ($py1 + $qy1)), ($px2 - $qx2), ($this->h - ($py2 - $qy2)), $px2, ($this->h - $py2));
-				// move to next point
-				$px1 = $px2;
-				$py1 = $py2;
-				$qx1 = $qx2;
-				$qy1 = $qy2;
-			}
-			if ($pie) {
-				$this->_outLine($xc, $yc);
-			}
-		}
-
-
-		/**
-		 * Draws a circle.
-		 * A circle is formed from n Bezier curves.
-		 * @param float $x0 Abscissa of center point.
-		 * @param float $y0 Ordinate of center point.
-		 * @param float $r Radius.
-		 * @param float $angstr: Angle start of draw line. Default value: 0.
-		 * @param float $angend: Angle finish of draw line. Default value: 360.
-		 * @param string $style Style of rendering. See the getPathPaintOperator() function for more information.
-		 * @param array $line_style Line style of circle. Array like for {@link SetLineStyle SetLineStyle}. Default value: default line style (empty array).
-		 * @param array $fill_color Fill color. Format: array(red, green, blue). Default value: default color (empty array).
-		 * @param integer $nc Number of curves used to draw a 90 degrees portion of circle.
-		 * @access public
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		public function Circle($x0, $y0, $r, $angstr=0, $angend=360, $style='', $line_style=array(), $fill_color=array(), $nc=2) {
-			$this->Ellipse($x0, $y0, $r, $r, 0, $angstr, $angend, $style, $line_style, $fill_color, $nc);
-		}
-
-		/**
-		 * Draws a polygonal line
-		 * @param array $p Points 0 to ($np - 1). Array with values (x0, y0, x1, y1,..., x(np-1), y(np - 1))
-		 * @param string $style Style of rendering. See the getPathPaintOperator() function for more information.
-		 * @param array $line_style Line style of polygon. Array with keys among the following:
-		 * <ul>
-		 *	 <li>all: Line style of all lines. Array like for {@link SetLineStyle SetLineStyle}.</li>
-		 *	 <li>0 to ($np - 1): Line style of each line. Array like for {@link SetLineStyle SetLineStyle}.</li>
-		 * </ul>
-		 * If a key is not present or is null, not draws the line. Default value is default line style (empty array).
-		 * @param array $fill_color Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
-		 * @param boolean $closed if true the polygon is closes, otherwise will remain open
-		 * @access public
-		 * @since 4.8.003 (2009-09-15)
-		 */
-		public function PolyLine($p, $style='', $line_style=array(), $fill_color=array()) {
-			$this->Polygon($p, $style, $line_style, $fill_color, false);
-		}
-
-		/**
-		 * Draws a polygon.
-		 * @param array $p Points 0 to ($np - 1). Array with values (x0, y0, x1, y1,..., x(np-1), y(np - 1))
-		 * @param string $style Style of rendering. See the getPathPaintOperator() function for more information.
-		 * @param array $line_style Line style of polygon. Array with keys among the following:
-		 * <ul>
-		 *	 <li>all: Line style of all lines. Array like for {@link SetLineStyle SetLineStyle}.</li>
-		 *	 <li>0 to ($np - 1): Line style of each line. Array like for {@link SetLineStyle SetLineStyle}.</li>
-		 * </ul>
-		 * If a key is not present or is null, not draws the line. Default value is default line style (empty array).
-		 * @param array $fill_color Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
-		 * @param boolean $closed if true the polygon is closes, otherwise will remain open
-		 * @access public
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		public function Polygon($p, $style='', $line_style=array(), $fill_color=array(), $closed=true) {
-			$nc = count($p); // number of coordinates
-			$np = $nc / 2; // number of points
-			if ($closed) {
-				// close polygon by adding the first 2 points at the end (one line)
-				for ($i = 0; $i < 4; ++$i) {
-					$p[$nc + $i] = $p[$i];
-				}
-				// copy style for the last added line
-				if (isset($line_style[0])) {
-					$line_style[$np] = $line_style[0];
-				}
-				$nc += 4;
-			}
-			if (!(false === strpos($style, 'F')) AND isset($fill_color)) {
-				$this->SetFillColorArray($fill_color);
-			}
-			$op = $this->getPathPaintOperator($style);
-			if ($op == 'f') {
-				$line_style = array();
-			}
-			$draw = true;
-			if ($line_style) {
-				if (isset($line_style['all'])) {
-					$this->SetLineStyle($line_style['all']);
-				} else {
-					$draw = false;
-					if ($op == 'B') {
-						// draw fill
-						$op = 'f';
-						$this->_outPoint($p[0], $p[1]);
-						for ($i = 2; $i < $nc; $i = $i + 2) {
-							$this->_outLine($p[$i], $p[$i + 1]);
-						}
-						$this->_out($op);
-					}
-					// draw outline
+				$draw = false;
+				if ($op == 'B') {
+					// draw fill
+					$op = 'f';
 					$this->_outPoint($p[0], $p[1]);
 					for ($i = 2; $i < $nc; $i = $i + 2) {
-						$line_num = ($i / 2) - 1;
-						if (isset($line_style[$line_num])) {
-							if ($line_style[$line_num] != 0) {
-								if (is_array($line_style[$line_num])) {
-									$this->_out('S');
-									$this->SetLineStyle($line_style[$line_num]);
-									$this->_outPoint($p[$i - 2], $p[$i - 1]);
-									$this->_outLine($p[$i], $p[$i + 1]);
-									$this->_out('S');
-									$this->_outPoint($p[$i], $p[$i + 1]);
-								} else {
-									$this->_outLine($p[$i], $p[$i + 1]);
-								}
-							}
-						} else {
-							$this->_outLine($p[$i], $p[$i + 1]);
-						}
+						$this->_outLine($p[$i], $p[$i + 1]);
 					}
 					$this->_out($op);
 				}
-			}
-			if ($draw) {
+				// draw outline
 				$this->_outPoint($p[0], $p[1]);
 				for ($i = 2; $i < $nc; $i = $i + 2) {
-					$this->_outLine($p[$i], $p[$i + 1]);
+					$line_num = ($i / 2) - 1;
+					if (isset($line_style[$line_num])) {
+						if ($line_style[$line_num] != 0) {
+							if (is_array($line_style[$line_num])) {
+								$this->_out('S');
+								$this->SetLineStyle($line_style[$line_num]);
+								$this->_outPoint($p[$i - 2], $p[$i - 1]);
+								$this->_outLine($p[$i], $p[$i + 1]);
+								$this->_out('S');
+								$this->_outPoint($p[$i], $p[$i + 1]);
+							} else {
+								$this->_outLine($p[$i], $p[$i + 1]);
+							}
+						}
+					} else {
+						$this->_outLine($p[$i], $p[$i + 1]);
+					}
 				}
 				$this->_out($op);
 			}
 		}
-
-		/**
-		 * Draws a regular polygon.
-		 * @param float $x0 Abscissa of center point.
-		 * @param float $y0 Ordinate of center point.
-		 * @param float $r: Radius of inscribed circle.
-		 * @param integer $ns Number of sides.
-		 * @param float $angle Angle oriented (anti-clockwise). Default value: 0.
-		 * @param boolean $draw_circle Draw inscribed circle or not. Default value: false.
-		 * @param string $style Style of rendering. See the getPathPaintOperator() function for more information.
-		 * @param array $line_style Line style of polygon sides. Array with keys among the following:
-		 * <ul>
-		 *	 <li>all: Line style of all sides. Array like for {@link SetLineStyle SetLineStyle}.</li>
-		 *	 <li>0 to ($ns - 1): Line style of each side. Array like for {@link SetLineStyle SetLineStyle}.</li>
-		 * </ul>
-		 * If a key is not present or is null, not draws the side. Default value is default line style (empty array).
-		 * @param array $fill_color Fill color. Format: array(red, green, blue). Default value: default color (empty array).
-		 * @param string $circle_style Style of rendering of inscribed circle (if draws). Possible values are:
-		 * <ul>
-		 *	 <li>D or empty string: Draw (default).</li>
-		 *	 <li>F: Fill.</li>
-		 *	 <li>DF or FD: Draw and fill.</li>
-		 *	 <li>CNZ: Clipping mode (using the even-odd rule to determine which regions lie inside the clipping path).</li>
-		 *	 <li>CEO: Clipping mode (using the nonzero winding number rule to determine which regions lie inside the clipping path).</li>
-		 * </ul>
-		 * @param array $circle_outLine_style Line style of inscribed circle (if draws). Array like for {@link SetLineStyle SetLineStyle}. Default value: default line style (empty array).
-		 * @param array $circle_fill_color Fill color of inscribed circle (if draws). Format: array(red, green, blue). Default value: default color (empty array).
-		 * @access public
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		public function RegularPolygon($x0, $y0, $r, $ns, $angle=0, $draw_circle=false, $style='', $line_style=array(), $fill_color=array(), $circle_style='', $circle_outLine_style=array(), $circle_fill_color=array()) {
-			if (3 > $ns) {
-				$ns = 3;
-			}
-			if ($draw_circle) {
-				$this->Circle($x0, $y0, $r, 0, 360, $circle_style, $circle_outLine_style, $circle_fill_color);
-			}
-			$p = array();
-			for ($i = 0; $i < $ns; ++$i) {
-				$a = $angle + ($i * 360 / $ns);
-				$a_rad = deg2rad((float) $a);
-				$p[] = $x0 + ($r * sin($a_rad));
-				$p[] = $y0 + ($r * cos($a_rad));
-			}
-			$this->Polygon($p, $style, $line_style, $fill_color);
-		}
-
-		/**
-		 * Draws a star polygon
-		 * @param float $x0 Abscissa of center point.
-		 * @param float $y0 Ordinate of center point.
-		 * @param float $r Radius of inscribed circle.
-		 * @param integer $nv Number of vertices.
-		 * @param integer $ng Number of gap (if ($ng % $nv = 1) then is a regular polygon).
-		 * @param float $angle: Angle oriented (anti-clockwise). Default value: 0.
-		 * @param boolean $draw_circle: Draw inscribed circle or not. Default value is false.
-		 * @param string $style Style of rendering. See the getPathPaintOperator() function for more information.
-		 * @param array $line_style Line style of polygon sides. Array with keys among the following:
-		 * <ul>
-		 *	 <li>all: Line style of all sides. Array like for
-		 * {@link SetLineStyle SetLineStyle}.</li>
-		 *	 <li>0 to (n - 1): Line style of each side. Array like for {@link SetLineStyle SetLineStyle}.</li>
-		 * </ul>
-		 * If a key is not present or is null, not draws the side. Default value is default line style (empty array).
-		 * @param array $fill_color Fill color. Format: array(red, green, blue). Default value: default color (empty array).
-		 * @param string $circle_style Style of rendering of inscribed circle (if draws). Possible values are:
-		 * <ul>
-		 *	 <li>D or empty string: Draw (default).</li>
-		 *	 <li>F: Fill.</li>
-		 *	 <li>DF or FD: Draw and fill.</li>
-		 *	 <li>CNZ: Clipping mode (using the even-odd rule to determine which regions lie inside the clipping path).</li>
-		 *	 <li>CEO: Clipping mode (using the nonzero winding number rule to determine which regions lie inside the clipping path).</li>
-		 * </ul>
-		 * @param array $circle_outLine_style Line style of inscribed circle (if draws). Array like for {@link SetLineStyle SetLineStyle}. Default value: default line style (empty array).
-		 * @param array $circle_fill_color Fill color of inscribed circle (if draws). Format: array(red, green, blue). Default value: default color (empty array).
-		 * @access public
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		public function StarPolygon($x0, $y0, $r, $nv, $ng, $angle=0, $draw_circle=false, $style='', $line_style=array(), $fill_color=array(), $circle_style='', $circle_outLine_style=array(), $circle_fill_color=array()) {
-			if ($nv < 2) {
-				$nv = 2;
-			}
-			if ($draw_circle) {
-				$this->Circle($x0, $y0, $r, 0, 360, $circle_style, $circle_outLine_style, $circle_fill_color);
-			}
-			$p2 = array();
-			$visited = array();
-			for ($i = 0; $i < $nv; ++$i) {
-				$a = $angle + ($i * 360 / $nv);
-				$a_rad = deg2rad((float) $a);
-				$p2[] = $x0 + ($r * sin($a_rad));
-				$p2[] = $y0 + ($r * cos($a_rad));
-				$visited[] = false;
-			}
-			$p = array();
-			$i = 0;
-			do {
-				$p[] = $p2[$i * 2];
-				$p[] = $p2[($i * 2) + 1];
-				$visited[$i] = true;
-				$i += $ng;
-				$i %= $nv;
-			} while (!$visited[$i]);
-			$this->Polygon($p, $style, $line_style, $fill_color);
-		}
-
-		/**
-		 * Draws a rounded rectangle.
-		 * @param float $x Abscissa of upper-left corner.
-		 * @param float $y Ordinate of upper-left corner.
-		 * @param float $w Width.
-		 * @param float $h Height.
-		 * @param float $r the radius of the circle used to round off the corners of the rectangle.
-		 * @param string $round_corner Draws rounded corner or not. String with a 0 (not rounded i-corner) or 1 (rounded i-corner) in i-position. Positions are, in order and begin to 0: top left, top right, bottom right and bottom left. Default value: all rounded corner ("1111").
-		 * @param string $style Style of rendering. See the getPathPaintOperator() function for more information.
-		 * @param array $border_style Border style of rectangle. Array like for {@link SetLineStyle SetLineStyle}. Default value: default line style (empty array).
-		 * @param array $fill_color Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
-		 * @access public
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		public function RoundedRect($x, $y, $w, $h, $r, $round_corner='1111', $style='', $border_style=array(), $fill_color=array()) {
-			$this->RoundedRectXY($x, $y, $w, $h, $r, $r, $round_corner, $style, $border_style, $fill_color);
-		}
-
-		/**
-		 * Draws a rounded rectangle.
-		 * @param float $x Abscissa of upper-left corner.
-		 * @param float $y Ordinate of upper-left corner.
-		 * @param float $w Width.
-		 * @param float $h Height.
-		 * @param float $rx the x-axis radius of the ellipse used to round off the corners of the rectangle.
-		 * @param float $ry the y-axis radius of the ellipse used to round off the corners of the rectangle.
-		 * @param string $round_corner Draws rounded corner or not. String with a 0 (not rounded i-corner) or 1 (rounded i-corner) in i-position. Positions are, in order and begin to 0: top left, top right, bottom right and bottom left. Default value: all rounded corner ("1111").
-		 * @param string $style Style of rendering. See the getPathPaintOperator() function for more information.
-		 * @param array $border_style Border style of rectangle. Array like for {@link SetLineStyle SetLineStyle}. Default value: default line style (empty array).
-		 * @param array $fill_color Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
-		 * @access public
-		 * @since 4.9.019 (2010-04-22)
-		 */
-		public function RoundedRectXY($x, $y, $w, $h, $rx, $ry, $round_corner='1111', $style='', $border_style=array(), $fill_color=array()) {
-			if (($round_corner == '0000') OR (($rx == $ry) AND ($rx == 0))) {
-				// Not rounded
-				$this->Rect($x, $y, $w, $h, $style, $border_style, $fill_color);
-				return;
-			}
-			// Rounded
-			if (!(false === strpos($style, 'F')) AND isset($fill_color)) {
-				$this->SetFillColorArray($fill_color);
-			}
-			$op = $this->getPathPaintOperator($style);
-			if ($op == 'f') {
-				$border_style = array();
-			}
-			if ($border_style) {
-				$this->SetLineStyle($border_style);
-			}
-			$MyArc = 4 / 3 * (sqrt(2) - 1);
-			$this->_outPoint($x + $rx, $y);
-			$xc = $x + $w - $rx;
-			$yc = $y + $ry;
-			$this->_outLine($xc, $y);
-			if ($round_corner[0]) {
-				$this->_outCurve($xc + ($rx * $MyArc), $yc - $ry, $xc + $rx, $yc - ($ry * $MyArc), $xc + $rx, $yc);
-			} else {
-				$this->_outLine($x + $w, $y);
-			}
-			$xc = $x + $w - $rx;
-			$yc = $y + $h - $ry;
-			$this->_outLine($x + $w, $yc);
-			if ($round_corner[1]) {
-				$this->_outCurve($xc + $rx, $yc + ($ry * $MyArc), $xc + ($rx * $MyArc), $yc + $ry, $xc, $yc + $ry);
-			} else {
-				$this->_outLine($x + $w, $y + $h);
-			}
-			$xc = $x + $rx;
-			$yc = $y + $h - $ry;
-			$this->_outLine($xc, $y + $h);
-			if ($round_corner[2]) {
-				$this->_outCurve($xc - ($rx * $MyArc), $yc + $ry, $xc - $rx, $yc + ($ry * $MyArc), $xc - $rx, $yc);
-			} else {
-				$this->_outLine($x, $y + $h);
-			}
-			$xc = $x + $rx;
-			$yc = $y + $ry;
-			$this->_outLine($x, $yc);
-			if ($round_corner[3]) {
-				$this->_outCurve($xc - $rx, $yc - ($ry * $MyArc), $xc - ($rx * $MyArc), $yc - $ry, $xc, $yc - $ry);
-			} else {
-				$this->_outLine($x, $y);
-				$this->_outLine($x + $rx, $y);
+		if ($draw) {
+			$this->_outPoint($p[0], $p[1]);
+			for ($i = 2; $i < $nc; $i = $i + 2) {
+				$this->_outLine($p[$i], $p[$i + 1]);
 			}
 			$this->_out($op);
 		}
+	}
 
-		/**
-		 * Draws a grahic arrow.
-		 * @param float $x0 Abscissa of first point.
-		 * @param float $y0 Ordinate of first point.
-		 * @param float $x0 Abscissa of second point.
-		 * @param float $y1 Ordinate of second point.
-		 * @param int $head_style (0 = draw only arrowhead arms, 1 = draw closed arrowhead, but no fill, 2 = closed and filled arrowhead, 3 = filled arrowhead)
-		 * @param float $arm_size length of arrowhead arms
-		 * @param int $arm_angle angle between an arm and the shaft
-		 * @author Piotr Galecki, Nicola Asuni, Andy Meier
-		 * @since 4.6.018 (2009-07-10)
-		 */
-		public function Arrow($x0, $y0, $x1, $y1, $head_style=0, $arm_size=5, $arm_angle=15) {
-			// getting arrow direction angle
-			// 0 deg angle is when both arms go along X axis. angle grows clockwise.
-			$dir_angle = atan2(($y0 - $y1), ($x0 - $x1));
-			if ($dir_angle < 0) {
-				$dir_angle += (2 * M_PI);
-			}
-			$arm_angle = deg2rad($arm_angle);
-			$sx1 = $x1;
-			$sy1 = $y1;
-			if ($head_style > 0) {
-				// calculate the stopping point for the arrow shaft
-				$sx1 = $x1 + (($arm_size - $this->LineWidth) * cos($dir_angle));
-				$sy1 = $y1 + (($arm_size - $this->LineWidth) * sin($dir_angle));
-			}
-			// main arrow line / shaft
-			$this->Line($x0, $y0, $sx1, $sy1);
-			// left arrowhead arm tip
-			$x2L = $x1 + ($arm_size * cos($dir_angle + $arm_angle));
-			$y2L = $y1 + ($arm_size * sin($dir_angle + $arm_angle));
-			// right arrowhead arm tip
-			$x2R = $x1 + ($arm_size * cos($dir_angle - $arm_angle));
-			$y2R = $y1 + ($arm_size * sin($dir_angle - $arm_angle));
-			$mode = 'D';
-			$style = array();
-			switch ($head_style) {
-				case 0: {
-					// draw only arrowhead arms
-					$mode = 'D';
-					$style = array(1, 1, 0);
-					break;
-				}
-				case 1: {
-					// draw closed arrowhead, but no fill
-					$mode = 'D';
-					break;
-				}
-				case 2: {
-					// closed and filled arrowhead
-					$mode = 'DF';
-					break;
-				}
-				case 3: {
-					// filled arrowhead
-					$mode = 'F';
-					break;
-				}
-			}
-			$this->Polygon(array($x2L, $y2L, $x1, $y1, $x2R, $y2R), $mode, $style, array());
-		}
-
-		// END GRAPHIC FUNCTIONS SECTION -----------------------
-
-		// BIDIRECTIONAL TEXT SECTION --------------------------
-
-		/**
-		 * Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
-		 * @param string $str string to manipulate.
-		 * @param bool $setbom  if true set the Byte Order Mark (BOM = 0xFEFF)
-		 * @param bool $forcertl if true forces RTL text direction
-		 * @return string
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 2.1.000 (2008-01-08)
-		 */
-		protected function utf8StrRev($str, $setbom=false, $forcertl=false) {
-			return $this->utf8StrArrRev($this->UTF8StringToArray($str), $str, $setbom, $forcertl);
-		}
-
-		/**
-		 * Reverse the RLT substrings array using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
-		 * @param array $arr array of unicode values.
-		 * @param string $str string to manipulate (or empty value).
-		 * @param bool $setbom  if true set the Byte Order Mark (BOM = 0xFEFF)
-		 * @param bool $forcertl if true forces RTL text direction
-		 * @return string
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 4.9.000 (2010-03-27)
-		 */
-		protected function utf8StrArrRev($arr, $str='', $setbom=false, $forcertl=false) {
-			return $this->arrUTF8ToUTF16BE($this->utf8Bidi($arr, $str, $forcertl), $setbom);
-		}
-
-		/**
-		 * Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
-		 * @param array $ta array of characters composing the string.
-		 * @param string $str string to process
-		 * @param bool $forcertl if 'R' forces RTL, if 'L' forces LTR
-		 * @return array of unicode chars
-		 * @author Nicola Asuni
-		 * @access protected
-		 * @since 2.4.000 (2008-03-06)
-		 */
-		protected function utf8Bidi($ta, $str='', $forcertl=false) {
-			global $unicode, $unicode_mirror, $unicode_arlet, $laa_array, $diacritics;
-			// paragraph embedding level
-			$pel = 0;
-			// max level
-			$maxlevel = 0;
-			if ($this->empty_string($str)) {
-				// create string from array
-				$str = $this->UTF8ArrSubString($ta);
-			}
-			// check if string contains arabic text
-			if (preg_match(K_RE_PATTERN_ARABIC, $str)) {
-				$arabic = true;
-			} else {
-				$arabic = false;
-			}
-			// check if string contains RTL text
-			if (!($forcertl OR $arabic OR preg_match(K_RE_PATTERN_RTL, $str))) {
-				return $ta;
-			}
-
-			// get number of chars
-			$numchars = count($ta);
+	/**
+	 * Draws a regular polygon.
+	 * @param $x0 (float) Abscissa of center point.
+	 * @param $y0 (float) Ordinate of center point.
+	 * @param $r: (float) Radius of inscribed circle.
+	 * @param $ns (integer) Number of sides.
+	 * @param $angle (float) Angle oriented (anti-clockwise). Default value: 0.
+	 * @param $draw_circle (boolean) Draw inscribed circle or not. Default value: false.
+	 * @param $style (string) Style of rendering. See the getPathPaintOperator() function for more information.
+	 * @param $line_style (array) Line style of polygon sides. Array with keys among the following:
+	 * <ul>
+	 *	 <li>all: Line style of all sides. Array like for SetLineStyle().</li>
+	 *	 <li>0 to ($ns - 1): Line style of each side. Array like for SetLineStyle().</li>
+	 * </ul>
+	 * If a key is not present or is null, not draws the side. Default value is default line style (empty array).
+	 * @param $fill_color (array) Fill color. Format: array(red, green, blue). Default value: default color (empty array).
+	 * @param $circle_style (string) Style of rendering of inscribed circle (if draws). Possible values are:
+	 * <ul>
+	 *	 <li>D or empty string: Draw (default).</li>
+	 *	 <li>F: Fill.</li>
+	 *	 <li>DF or FD: Draw and fill.</li>
+	 *	 <li>CNZ: Clipping mode (using the even-odd rule to determine which regions lie inside the clipping path).</li>
+	 *	 <li>CEO: Clipping mode (using the nonzero winding number rule to determine which regions lie inside the clipping path).</li>
+	 * </ul>
+	 * @param $circle_outLine_style (array) Line style of inscribed circle (if draws). Array like for SetLineStyle(). Default value: default line style (empty array).
+	 * @param $circle_fill_color (array) Fill color of inscribed circle (if draws). Format: array(red, green, blue). Default value: default color (empty array).
+	 * @public
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	public function RegularPolygon($x0, $y0, $r, $ns, $angle=0, $draw_circle=false, $style='', $line_style=array(), $fill_color=array(), $circle_style='', $circle_outLine_style=array(), $circle_fill_color=array()) {
+		if (3 > $ns) {
+			$ns = 3;
+		}
+		if ($draw_circle) {
+			$this->Circle($x0, $y0, $r, 0, 360, $circle_style, $circle_outLine_style, $circle_fill_color);
+		}
+		$p = array();
+		for ($i = 0; $i < $ns; ++$i) {
+			$a = $angle + ($i * 360 / $ns);
+			$a_rad = deg2rad((float) $a);
+			$p[] = $x0 + ($r * sin($a_rad));
+			$p[] = $y0 + ($r * cos($a_rad));
+		}
+		$this->Polygon($p, $style, $line_style, $fill_color);
+	}
 
-			if ($forcertl == 'R') {
-				$pel = 1;
-			} elseif ($forcertl == 'L') {
-				$pel = 0;
-			} else {
-				// P2. In each paragraph, find the first character of type L, AL, or R.
-				// P3. If a character is found in P2 and it is of type AL or R, then set the paragraph embedding level to one; otherwise, set it to zero.
-				for ($i=0; $i < $numchars; ++$i) {
-					$type = $unicode[$ta[$i]];
-					if ($type == 'L') {
-						$pel = 0;
-						break;
-					} elseif (($type == 'AL') OR ($type == 'R')) {
-						$pel = 1;
-						break;
-					}
-				}
-			}
+	/**
+	 * Draws a star polygon
+	 * @param $x0 (float) Abscissa of center point.
+	 * @param $y0 (float) Ordinate of center point.
+	 * @param $r (float) Radius of inscribed circle.
+	 * @param $nv (integer) Number of vertices.
+	 * @param $ng (integer) Number of gap (if ($ng % $nv = 1) then is a regular polygon).
+	 * @param $angle: (float) Angle oriented (anti-clockwise). Default value: 0.
+	 * @param $draw_circle: (boolean) Draw inscribed circle or not. Default value is false.
+	 * @param $style (string) Style of rendering. See the getPathPaintOperator() function for more information.
+	 * @param $line_style (array) Line style of polygon sides. Array with keys among the following:
+	 * <ul>
+	 *	 <li>all: Line style of all sides. Array like for
+	 * SetLineStyle().</li>
+	 *	 <li>0 to (n - 1): Line style of each side. Array like for SetLineStyle().</li>
+	 * </ul>
+	 * If a key is not present or is null, not draws the side. Default value is default line style (empty array).
+	 * @param $fill_color (array) Fill color. Format: array(red, green, blue). Default value: default color (empty array).
+	 * @param $circle_style (string) Style of rendering of inscribed circle (if draws). Possible values are:
+	 * <ul>
+	 *	 <li>D or empty string: Draw (default).</li>
+	 *	 <li>F: Fill.</li>
+	 *	 <li>DF or FD: Draw and fill.</li>
+	 *	 <li>CNZ: Clipping mode (using the even-odd rule to determine which regions lie inside the clipping path).</li>
+	 *	 <li>CEO: Clipping mode (using the nonzero winding number rule to determine which regions lie inside the clipping path).</li>
+	 * </ul>
+	 * @param $circle_outLine_style (array) Line style of inscribed circle (if draws). Array like for SetLineStyle(). Default value: default line style (empty array).
+	 * @param $circle_fill_color (array) Fill color of inscribed circle (if draws). Format: array(red, green, blue). Default value: default color (empty array).
+	 * @public
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	public function StarPolygon($x0, $y0, $r, $nv, $ng, $angle=0, $draw_circle=false, $style='', $line_style=array(), $fill_color=array(), $circle_style='', $circle_outLine_style=array(), $circle_fill_color=array()) {
+		if ($nv < 2) {
+			$nv = 2;
+		}
+		if ($draw_circle) {
+			$this->Circle($x0, $y0, $r, 0, 360, $circle_style, $circle_outLine_style, $circle_fill_color);
+		}
+		$p2 = array();
+		$visited = array();
+		for ($i = 0; $i < $nv; ++$i) {
+			$a = $angle + ($i * 360 / $nv);
+			$a_rad = deg2rad((float) $a);
+			$p2[] = $x0 + ($r * sin($a_rad));
+			$p2[] = $y0 + ($r * cos($a_rad));
+			$visited[] = false;
+		}
+		$p = array();
+		$i = 0;
+		do {
+			$p[] = $p2[$i * 2];
+			$p[] = $p2[($i * 2) + 1];
+			$visited[$i] = true;
+			$i += $ng;
+			$i %= $nv;
+		} while (!$visited[$i]);
+		$this->Polygon($p, $style, $line_style, $fill_color);
+	}
 
-			// Current Embedding Level
-			$cel = $pel;
-			// directional override status
-			$dos = 'N';
-			$remember = array();
-			// start-of-level-run
-			$sor = $pel % 2 ? 'R' : 'L';
-			$eor = $sor;
+	/**
+	 * Draws a rounded rectangle.
+	 * @param $x (float) Abscissa of upper-left corner.
+	 * @param $y (float) Ordinate of upper-left corner.
+	 * @param $w (float) Width.
+	 * @param $h (float) Height.
+	 * @param $r (float) the radius of the circle used to round off the corners of the rectangle.
+	 * @param $round_corner (string) Draws rounded corner or not. String with a 0 (not rounded i-corner) or 1 (rounded i-corner) in i-position. Positions are, in order and begin to 0: top left, top right, bottom right and bottom left. Default value: all rounded corner ("1111").
+	 * @param $style (string) Style of rendering. See the getPathPaintOperator() function for more information.
+	 * @param $border_style (array) Border style of rectangle. Array like for SetLineStyle(). Default value: default line style (empty array).
+	 * @param $fill_color (array) Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
+	 * @public
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	public function RoundedRect($x, $y, $w, $h, $r, $round_corner='1111', $style='', $border_style=array(), $fill_color=array()) {
+		$this->RoundedRectXY($x, $y, $w, $h, $r, $r, $round_corner, $style, $border_style, $fill_color);
+	}
 
-			// Array of characters data
-			$chardata = Array();
+	/**
+	 * Draws a rounded rectangle.
+	 * @param $x (float) Abscissa of upper-left corner.
+	 * @param $y (float) Ordinate of upper-left corner.
+	 * @param $w (float) Width.
+	 * @param $h (float) Height.
+	 * @param $rx (float) the x-axis radius of the ellipse used to round off the corners of the rectangle.
+	 * @param $ry (float) the y-axis radius of the ellipse used to round off the corners of the rectangle.
+	 * @param $round_corner (string) Draws rounded corner or not. String with a 0 (not rounded i-corner) or 1 (rounded i-corner) in i-position. Positions are, in order and begin to 0: top left, top right, bottom right and bottom left. Default value: all rounded corner ("1111").
+	 * @param $style (string) Style of rendering. See the getPathPaintOperator() function for more information.
+	 * @param $border_style (array) Border style of rectangle. Array like for SetLineStyle(). Default value: default line style (empty array).
+	 * @param $fill_color (array) Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
+	 * @public
+	 * @since 4.9.019 (2010-04-22)
+	 */
+	public function RoundedRectXY($x, $y, $w, $h, $rx, $ry, $round_corner='1111', $style='', $border_style=array(), $fill_color=array()) {
+		if (($round_corner == '0000') OR (($rx == $ry) AND ($rx == 0))) {
+			// Not rounded
+			$this->Rect($x, $y, $w, $h, $style, $border_style, $fill_color);
+			return;
+		}
+		// Rounded
+		if (!(false === strpos($style, 'F')) AND isset($fill_color)) {
+			$this->SetFillColorArray($fill_color);
+		}
+		$op = $this->getPathPaintOperator($style);
+		if ($op == 'f') {
+			$border_style = array();
+		}
+		if ($border_style) {
+			$this->SetLineStyle($border_style);
+		}
+		$MyArc = 4 / 3 * (sqrt(2) - 1);
+		$this->_outPoint($x + $rx, $y);
+		$xc = $x + $w - $rx;
+		$yc = $y + $ry;
+		$this->_outLine($xc, $y);
+		if ($round_corner[0]) {
+			$this->_outCurve($xc + ($rx * $MyArc), $yc - $ry, $xc + $rx, $yc - ($ry * $MyArc), $xc + $rx, $yc);
+		} else {
+			$this->_outLine($x + $w, $y);
+		}
+		$xc = $x + $w - $rx;
+		$yc = $y + $h - $ry;
+		$this->_outLine($x + $w, $yc);
+		if ($round_corner[1]) {
+			$this->_outCurve($xc + $rx, $yc + ($ry * $MyArc), $xc + ($rx * $MyArc), $yc + $ry, $xc, $yc + $ry);
+		} else {
+			$this->_outLine($x + $w, $y + $h);
+		}
+		$xc = $x + $rx;
+		$yc = $y + $h - $ry;
+		$this->_outLine($xc, $y + $h);
+		if ($round_corner[2]) {
+			$this->_outCurve($xc - ($rx * $MyArc), $yc + $ry, $xc - $rx, $yc + ($ry * $MyArc), $xc - $rx, $yc);
+		} else {
+			$this->_outLine($x, $y + $h);
+		}
+		$xc = $x + $rx;
+		$yc = $y + $ry;
+		$this->_outLine($x, $yc);
+		if ($round_corner[3]) {
+			$this->_outCurve($xc - $rx, $yc - ($ry * $MyArc), $xc - ($rx * $MyArc), $yc - $ry, $xc, $yc - $ry);
+		} else {
+			$this->_outLine($x, $y);
+			$this->_outLine($x + $rx, $y);
+		}
+		$this->_out($op);
+	}
 
-			// X1. Begin by setting the current embedding level to the paragraph embedding level. Set the directional override status to neutral. Process each character iteratively, applying rules X2 through X9. Only embedding levels from 0 to 61 are valid in this phase.
-			// 	In the resolution of levels in rules I1 and I2, the maximum embedding level of 62 can be reached.
-			for ($i=0; $i < $numchars; ++$i) {
-				if ($ta[$i] == K_RLE) {
-					// X2. With each RLE, compute the least greater odd embedding level.
-					//	a. If this new level would be valid, then this embedding code is valid. Remember (push) the current embedding level and override status. Reset the current level to this new level, and reset the override status to neutral.
-					//	b. If the new level would not be valid, then this code is invalid. Do not change the current level or override status.
-					$next_level = $cel + ($cel % 2) + 1;
-					if ($next_level < 62) {
-						$remember[] = array('num' => K_RLE, 'cel' => $cel, 'dos' => $dos);
-						$cel = $next_level;
-						$dos = 'N';
-						$sor = $eor;
-						$eor = $cel % 2 ? 'R' : 'L';
-					}
-				} elseif ($ta[$i] == K_LRE) {
-					// X3. With each LRE, compute the least greater even embedding level.
-					//	a. If this new level would be valid, then this embedding code is valid. Remember (push) the current embedding level and override status. Reset the current level to this new level, and reset the override status to neutral.
-					//	b. If the new level would not be valid, then this code is invalid. Do not change the current level or override status.
-					$next_level = $cel + 2 - ($cel % 2);
-					if ( $next_level < 62 ) {
-						$remember[] = array('num' => K_LRE, 'cel' => $cel, 'dos' => $dos);
-						$cel = $next_level;
-						$dos = 'N';
-						$sor = $eor;
-						$eor = $cel % 2 ? 'R' : 'L';
-					}
-				} elseif ($ta[$i] == K_RLO) {
-					// X4. With each RLO, compute the least greater odd embedding level.
-					//	a. If this new level would be valid, then this embedding code is valid. Remember (push) the current embedding level and override status. Reset the current level to this new level, and reset the override status to right-to-left.
-					//	b. If the new level would not be valid, then this code is invalid. Do not change the current level or override status.
-					$next_level = $cel + ($cel % 2) + 1;
-					if ($next_level < 62) {
-						$remember[] = array('num' => K_RLO, 'cel' => $cel, 'dos' => $dos);
-						$cel = $next_level;
-						$dos = 'R';
-						$sor = $eor;
-						$eor = $cel % 2 ? 'R' : 'L';
-					}
-				} elseif ($ta[$i] == K_LRO) {
-					// X5. With each LRO, compute the least greater even embedding level.
-					//	a. If this new level would be valid, then this embedding code is valid. Remember (push) the current embedding level and override status. Reset the current level to this new level, and reset the override status to left-to-right.
-					//	b. If the new level would not be valid, then this code is invalid. Do not change the current level or override status.
-					$next_level = $cel + 2 - ($cel % 2);
-					if ( $next_level < 62 ) {
-						$remember[] = array('num' => K_LRO, 'cel' => $cel, 'dos' => $dos);
-						$cel = $next_level;
-						$dos = 'L';
-						$sor = $eor;
-						$eor = $cel % 2 ? 'R' : 'L';
-					}
-				} elseif ($ta[$i] == K_PDF) {
-					// X7. With each PDF, determine the matching embedding or override code. If there was a valid matching code, restore (pop) the last remembered (pushed) embedding level and directional override.
-					if (count($remember)) {
-						$last = count($remember ) - 1;
-						if (($remember[$last]['num'] == K_RLE) OR
-							($remember[$last]['num'] == K_LRE) OR
-							($remember[$last]['num'] == K_RLO) OR
-							($remember[$last]['num'] == K_LRO)) {
-							$match = array_pop($remember);
-							$cel = $match['cel'];
-							$dos = $match['dos'];
-							$sor = $eor;
-							$eor = ($cel > $match['cel'] ? $cel : $match['cel']) % 2 ? 'R' : 'L';
-						}
-					}
-				} elseif (($ta[$i] != K_RLE) AND
-								 ($ta[$i] != K_LRE) AND
-								 ($ta[$i] != K_RLO) AND
-								 ($ta[$i] != K_LRO) AND
-								 ($ta[$i] != K_PDF)) {
-					// X6. For all types besides RLE, LRE, RLO, LRO, and PDF:
-					//	a. Set the level of the current character to the current embedding level.
-					//	b. Whenever the directional override status is not neutral, reset the current character type to the directional override status.
-					if ($dos != 'N') {
-						$chardir = $dos;
-					} else {
-						if (isset($unicode[$ta[$i]])) {
-							$chardir = $unicode[$ta[$i]];
-						} else {
-							$chardir = 'L';
-						}
-					}
-					// stores string characters and other information
-					$chardata[] = array('char' => $ta[$i], 'level' => $cel, 'type' => $chardir, 'sor' => $sor, 'eor' => $eor);
-				}
-			} // end for each char
+	/**
+	 * Draws a grahic arrow.
+	 * @param $x0 (float) Abscissa of first point.
+	 * @param $y0 (float) Ordinate of first point.
+	 * @param $x1 (float) Abscissa of second point.
+	 * @param $y1 (float) Ordinate of second point.
+	 * @param $head_style (int) (0 = draw only arrowhead arms, 1 = draw closed arrowhead, but no fill, 2 = closed and filled arrowhead, 3 = filled arrowhead)
+	 * @param $arm_size (float) length of arrowhead arms
+	 * @param $arm_angle (int) angle between an arm and the shaft
+	 * @author Piotr Galecki, Nicola Asuni, Andy Meier
+	 * @since 4.6.018 (2009-07-10)
+	 */
+	public function Arrow($x0, $y0, $x1, $y1, $head_style=0, $arm_size=5, $arm_angle=15) {
+		// getting arrow direction angle
+		// 0 deg angle is when both arms go along X axis. angle grows clockwise.
+		$dir_angle = atan2(($y0 - $y1), ($x0 - $x1));
+		if ($dir_angle < 0) {
+			$dir_angle += (2 * M_PI);
+		}
+		$arm_angle = deg2rad($arm_angle);
+		$sx1 = $x1;
+		$sy1 = $y1;
+		if ($head_style > 0) {
+			// calculate the stopping point for the arrow shaft
+			$sx1 = $x1 + (($arm_size - $this->LineWidth) * cos($dir_angle));
+			$sy1 = $y1 + (($arm_size - $this->LineWidth) * sin($dir_angle));
+		}
+		// main arrow line / shaft
+		$this->Line($x0, $y0, $sx1, $sy1);
+		// left arrowhead arm tip
+		$x2L = $x1 + ($arm_size * cos($dir_angle + $arm_angle));
+		$y2L = $y1 + ($arm_size * sin($dir_angle + $arm_angle));
+		// right arrowhead arm tip
+		$x2R = $x1 + ($arm_size * cos($dir_angle - $arm_angle));
+		$y2R = $y1 + ($arm_size * sin($dir_angle - $arm_angle));
+		$mode = 'D';
+		$style = array();
+		switch ($head_style) {
+			case 0: {
+				// draw only arrowhead arms
+				$mode = 'D';
+				$style = array(1, 1, 0);
+				break;
+			}
+			case 1: {
+				// draw closed arrowhead, but no fill
+				$mode = 'D';
+				break;
+			}
+			case 2: {
+				// closed and filled arrowhead
+				$mode = 'DF';
+				break;
+			}
+			case 3: {
+				// filled arrowhead
+				$mode = 'F';
+				break;
+			}
+		}
+		$this->Polygon(array($x2L, $y2L, $x1, $y1, $x2R, $y2R), $mode, $style, array());
+	}
+
+	// END GRAPHIC FUNCTIONS SECTION -----------------------
+
+	// BIDIRECTIONAL TEXT SECTION --------------------------
 
-			// X8. All explicit directional embeddings and overrides are completely terminated at the end of each paragraph. Paragraph separators are not included in the embedding.
-			// X9. Remove all RLE, LRE, RLO, LRO, PDF, and BN codes.
-			// X10. The remaining rules are applied to each run of characters at the same level. For each run, determine the start-of-level-run (sor) and end-of-level-run (eor) type, either L or R. This depends on the higher of the two levels on either side of the boundary (at the start or end of the paragraph, the level of the 'other' run is the base embedding level). If the higher level is odd, the type is R; otherwise, it is L.
+	/**
+	 * Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
+	 * @param $str (string) string to manipulate.
+	 * @param $setbom (bool) if true set the Byte Order Mark (BOM = 0xFEFF)
+	 * @param $forcertl (bool) if true forces RTL text direction
+	 * @return string
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 2.1.000 (2008-01-08)
+	 */
+	protected function utf8StrRev($str, $setbom=false, $forcertl=false) {
+		return $this->utf8StrArrRev($this->UTF8StringToArray($str), $str, $setbom, $forcertl);
+	}
 
-			// 3.3.3 Resolving Weak Types
-			// Weak types are now resolved one level run at a time. At level run boundaries where the type of the character on the other side of the boundary is required, the type assigned to sor or eor is used.
-			// Nonspacing marks are now resolved based on the previous characters.
-			$numchars = count($chardata);
+	/**
+	 * Reverse the RLT substrings array using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
+	 * @param $arr (array) array of unicode values.
+	 * @param $str (string) string to manipulate (or empty value).
+	 * @param $setbom (bool) if true set the Byte Order Mark (BOM = 0xFEFF)
+	 * @param $forcertl (bool) if true forces RTL text direction
+	 * @return string
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 4.9.000 (2010-03-27)
+	 */
+	protected function utf8StrArrRev($arr, $str='', $setbom=false, $forcertl=false) {
+		return $this->arrUTF8ToUTF16BE($this->utf8Bidi($arr, $str, $forcertl), $setbom);
+	}
 
-			// W1. Examine each nonspacing mark (NSM) in the level run, and change the type of the NSM to the type of the previous character. If the NSM is at the start of the level run, it will get the type of sor.
-			$prevlevel = -1; // track level changes
-			$levcount = 0; // counts consecutive chars at the same level
+	/**
+	 * Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
+	 * @param $ta (array) array of characters composing the string.
+	 * @param $str (string) string to process
+	 * @param $forcertl (bool) if 'R' forces RTL, if 'L' forces LTR
+	 * @return array of unicode chars
+	 * @author Nicola Asuni
+	 * @protected
+	 * @since 2.4.000 (2008-03-06)
+	 */
+	protected function utf8Bidi($ta, $str='', $forcertl=false) {
+		// paragraph embedding level
+		$pel = 0;
+		// max level
+		$maxlevel = 0;
+		if ($this->empty_string($str)) {
+			// create string from array
+			$str = $this->UTF8ArrSubString($ta);
+		}
+		// check if string contains arabic text
+		if (preg_match($this->unicode->uni_RE_PATTERN_ARABIC, $str)) {
+			$arabic = true;
+		} else {
+			$arabic = false;
+		}
+		// check if string contains RTL text
+		if (!($forcertl OR $arabic OR preg_match($this->unicode->uni_RE_PATTERN_RTL, $str))) {
+			return $ta;
+		}
+
+		// get number of chars
+		$numchars = count($ta);
+
+		if ($forcertl == 'R') {
+			$pel = 1;
+		} elseif ($forcertl == 'L') {
+			$pel = 0;
+		} else {
+			// P2. In each paragraph, find the first character of type L, AL, or R.
+			// P3. If a character is found in P2 and it is of type AL or R, then set the paragraph embedding level to one; otherwise, set it to zero.
 			for ($i=0; $i < $numchars; ++$i) {
-				if ($chardata[$i]['type'] == 'NSM') {
-					if ($levcount) {
-						$chardata[$i]['type'] = $chardata[$i]['sor'];
-					} elseif ($i > 0) {
-						$chardata[$i]['type'] = $chardata[($i-1)]['type'];
-					}
-				}
-				if ($chardata[$i]['level'] != $prevlevel) {
-					$levcount = 0;
-				} else {
-					++$levcount;
+				$type = $this->unicode->uni_type[$ta[$i]];
+				if ($type == 'L') {
+					$pel = 0;
+					break;
+				} elseif (($type == 'AL') OR ($type == 'R')) {
+					$pel = 1;
+					break;
 				}
-				$prevlevel = $chardata[$i]['level'];
 			}
+		}
 
-			// W2. Search backward from each instance of a European number until the first strong type (R, L, AL, or sor) is found. If an AL is found, change the type of the European number to Arabic number.
-			$prevlevel = -1;
-			$levcount = 0;
-			for ($i=0; $i < $numchars; ++$i) {
-				if ($chardata[$i]['char'] == 'EN') {
-					for ($j=$levcount; $j >= 0; $j--) {
-						if ($chardata[$j]['type'] == 'AL') {
-							$chardata[$i]['type'] = 'AN';
-						} elseif (($chardata[$j]['type'] == 'L') OR ($chardata[$j]['type'] == 'R')) {
-							break;
-						}
-					}
-				}
-				if ($chardata[$i]['level'] != $prevlevel) {
-					$levcount = 0;
+		// Current Embedding Level
+		$cel = $pel;
+		// directional override status
+		$dos = 'N';
+		$remember = array();
+		// start-of-level-run
+		$sor = $pel % 2 ? 'R' : 'L';
+		$eor = $sor;
+
+		// Array of characters data
+		$chardata = Array();
+
+		// X1. Begin by setting the current embedding level to the paragraph embedding level. Set the directional override status to neutral. Process each character iteratively, applying rules X2 through X9. Only embedding levels from 0 to 61 are valid in this phase.
+		// In the resolution of levels in rules I1 and I2, the maximum embedding level of 62 can be reached.
+		for ($i=0; $i < $numchars; ++$i) {
+			if ($ta[$i] == $this->unicode->uni_RLE) {
+				// X2. With each RLE, compute the least greater odd embedding level.
+				//	a. If this new level would be valid, then this embedding code is valid. Remember (push) the current embedding level and override status. Reset the current level to this new level, and reset the override status to neutral.
+				//	b. If the new level would not be valid, then this code is invalid. Do not change the current level or override status.
+				$next_level = $cel + ($cel % 2) + 1;
+				if ($next_level < 62) {
+					$remember[] = array('num' => $this->unicode->uni_RLE, 'cel' => $cel, 'dos' => $dos);
+					$cel = $next_level;
+					$dos = 'N';
+					$sor = $eor;
+					$eor = $cel % 2 ? 'R' : 'L';
+				}
+			} elseif ($ta[$i] == $this->unicode->uni_LRE) {
+				// X3. With each LRE, compute the least greater even embedding level.
+				//	a. If this new level would be valid, then this embedding code is valid. Remember (push) the current embedding level and override status. Reset the current level to this new level, and reset the override status to neutral.
+				//	b. If the new level would not be valid, then this code is invalid. Do not change the current level or override status.
+				$next_level = $cel + 2 - ($cel % 2);
+				if ( $next_level < 62 ) {
+					$remember[] = array('num' => $this->unicode->uni_LRE, 'cel' => $cel, 'dos' => $dos);
+					$cel = $next_level;
+					$dos = 'N';
+					$sor = $eor;
+					$eor = $cel % 2 ? 'R' : 'L';
+				}
+			} elseif ($ta[$i] == $this->unicode->uni_RLO) {
+				// X4. With each RLO, compute the least greater odd embedding level.
+				//	a. If this new level would be valid, then this embedding code is valid. Remember (push) the current embedding level and override status. Reset the current level to this new level, and reset the override status to right-to-left.
+				//	b. If the new level would not be valid, then this code is invalid. Do not change the current level or override status.
+				$next_level = $cel + ($cel % 2) + 1;
+				if ($next_level < 62) {
+					$remember[] = array('num' => $this->unicode->uni_RLO, 'cel' => $cel, 'dos' => $dos);
+					$cel = $next_level;
+					$dos = 'R';
+					$sor = $eor;
+					$eor = $cel % 2 ? 'R' : 'L';
+				}
+			} elseif ($ta[$i] == $this->unicode->uni_LRO) {
+				// X5. With each LRO, compute the least greater even embedding level.
+				//	a. If this new level would be valid, then this embedding code is valid. Remember (push) the current embedding level and override status. Reset the current level to this new level, and reset the override status to left-to-right.
+				//	b. If the new level would not be valid, then this code is invalid. Do not change the current level or override status.
+				$next_level = $cel + 2 - ($cel % 2);
+				if ( $next_level < 62 ) {
+					$remember[] = array('num' => $this->unicode->uni_LRO, 'cel' => $cel, 'dos' => $dos);
+					$cel = $next_level;
+					$dos = 'L';
+					$sor = $eor;
+					$eor = $cel % 2 ? 'R' : 'L';
+				}
+			} elseif ($ta[$i] == $this->unicode->uni_PDF) {
+				// X7. With each PDF, determine the matching embedding or override code. If there was a valid matching code, restore (pop) the last remembered (pushed) embedding level and directional override.
+				if (count($remember)) {
+					$last = count($remember ) - 1;
+					if (($remember[$last]['num'] == $this->unicode->uni_RLE) OR
+						($remember[$last]['num'] == $this->unicode->uni_LRE) OR
+						($remember[$last]['num'] == $this->unicode->uni_RLO) OR
+						($remember[$last]['num'] == $this->unicode->uni_LRO)) {
+						$match = array_pop($remember);
+						$cel = $match['cel'];
+						$dos = $match['dos'];
+						$sor = $eor;
+						$eor = ($cel > $match['cel'] ? $cel : $match['cel']) % 2 ? 'R' : 'L';
+					}
+				}
+			} elseif (($ta[$i] != $this->unicode->uni_RLE) AND
+							 ($ta[$i] != $this->unicode->uni_LRE) AND
+							 ($ta[$i] != $this->unicode->uni_RLO) AND
+							 ($ta[$i] != $this->unicode->uni_LRO) AND
+							 ($ta[$i] != $this->unicode->uni_PDF)) {
+				// X6. For all types besides RLE, LRE, RLO, LRO, and PDF:
+				//	a. Set the level of the current character to the current embedding level.
+				//	b. Whenever the directional override status is not neutral, reset the current character type to the directional override status.
+				if ($dos != 'N') {
+					$chardir = $dos;
 				} else {
-					++$levcount;
+					if (isset($this->unicode->uni_type[$ta[$i]])) {
+						$chardir = $this->unicode->uni_type[$ta[$i]];
+					} else {
+						$chardir = 'L';
+					}
 				}
-				$prevlevel = $chardata[$i]['level'];
+				// stores string characters and other information
+				$chardata[] = array('char' => $ta[$i], 'level' => $cel, 'type' => $chardir, 'sor' => $sor, 'eor' => $eor);
 			}
+		} // end for each char
 
-			// W3. Change all ALs to R.
-			for ($i=0; $i < $numchars; ++$i) {
-				if ($chardata[$i]['type'] == 'AL') {
-					$chardata[$i]['type'] = 'R';
+		// X8. All explicit directional embeddings and overrides are completely terminated at the end of each paragraph. Paragraph separators are not included in the embedding.
+		// X9. Remove all RLE, LRE, RLO, LRO, PDF, and BN codes.
+		// X10. The remaining rules are applied to each run of characters at the same level. For each run, determine the start-of-level-run (sor) and end-of-level-run (eor) type, either L or R. This depends on the higher of the two levels on either side of the boundary (at the start or end of the paragraph, the level of the 'other' run is the base embedding level). If the higher level is odd, the type is R; otherwise, it is L.
+
+		// 3.3.3 Resolving Weak Types
+		// Weak types are now resolved one level run at a time. At level run boundaries where the type of the character on the other side of the boundary is required, the type assigned to sor or eor is used.
+		// Nonspacing marks are now resolved based on the previous characters.
+		$numchars = count($chardata);
+
+		// W1. Examine each nonspacing mark (NSM) in the level run, and change the type of the NSM to the type of the previous character. If the NSM is at the start of the level run, it will get the type of sor.
+		$prevlevel = -1; // track level changes
+		$levcount = 0; // counts consecutive chars at the same level
+		for ($i=0; $i < $numchars; ++$i) {
+			if ($chardata[$i]['type'] == 'NSM') {
+				if ($levcount) {
+					$chardata[$i]['type'] = $chardata[$i]['sor'];
+				} elseif ($i > 0) {
+					$chardata[$i]['type'] = $chardata[($i-1)]['type'];
 				}
 			}
+			if ($chardata[$i]['level'] != $prevlevel) {
+				$levcount = 0;
+			} else {
+				++$levcount;
+			}
+			$prevlevel = $chardata[$i]['level'];
+		}
 
-			// W4. A single European separator between two European numbers changes to a European number. A single common separator between two numbers of the same type changes to that type.
-			$prevlevel = -1;
-			$levcount = 0;
-			for ($i=0; $i < $numchars; ++$i) {
-				if (($levcount > 0) AND (($i+1) < $numchars) AND ($chardata[($i+1)]['level'] == $prevlevel)) {
-					if (($chardata[$i]['type'] == 'ES') AND ($chardata[($i-1)]['type'] == 'EN') AND ($chardata[($i+1)]['type'] == 'EN')) {
-						$chardata[$i]['type'] = 'EN';
-					} elseif (($chardata[$i]['type'] == 'CS') AND ($chardata[($i-1)]['type'] == 'EN') AND ($chardata[($i+1)]['type'] == 'EN')) {
-						$chardata[$i]['type'] = 'EN';
-					} elseif (($chardata[$i]['type'] == 'CS') AND ($chardata[($i-1)]['type'] == 'AN') AND ($chardata[($i+1)]['type'] == 'AN')) {
+		// W2. Search backward from each instance of a European number until the first strong type (R, L, AL, or sor) is found. If an AL is found, change the type of the European number to Arabic number.
+		$prevlevel = -1;
+		$levcount = 0;
+		for ($i=0; $i < $numchars; ++$i) {
+			if ($chardata[$i]['char'] == 'EN') {
+				for ($j=$levcount; $j >= 0; $j--) {
+					if ($chardata[$j]['type'] == 'AL') {
 						$chardata[$i]['type'] = 'AN';
+					} elseif (($chardata[$j]['type'] == 'L') OR ($chardata[$j]['type'] == 'R')) {
+						break;
 					}
 				}
-				if ($chardata[$i]['level'] != $prevlevel) {
-					$levcount = 0;
-				} else {
-					++$levcount;
-				}
-				$prevlevel = $chardata[$i]['level'];
 			}
+			if ($chardata[$i]['level'] != $prevlevel) {
+				$levcount = 0;
+			} else {
+				++$levcount;
+			}
+			$prevlevel = $chardata[$i]['level'];
+		}
 
-			// W5. A sequence of European terminators adjacent to European numbers changes to all European numbers.
-			$prevlevel = -1;
-			$levcount = 0;
-			for ($i=0; $i < $numchars; ++$i) {
-				if ($chardata[$i]['type'] == 'ET') {
-					if (($levcount > 0) AND ($chardata[($i-1)]['type'] == 'EN')) {
-						$chardata[$i]['type'] = 'EN';
-					} else {
-						$j = $i+1;
-						while (($j < $numchars) AND ($chardata[$j]['level'] == $prevlevel)) {
-							if ($chardata[$j]['type'] == 'EN') {
-								$chardata[$i]['type'] = 'EN';
-								break;
-							} elseif ($chardata[$j]['type'] != 'ET') {
-								break;
-							}
-							++$j;
-						}
-					}
-				}
-				if ($chardata[$i]['level'] != $prevlevel) {
-					$levcount = 0;
-				} else {
-					++$levcount;
-				}
-				$prevlevel = $chardata[$i]['level'];
+		// W3. Change all ALs to R.
+		for ($i=0; $i < $numchars; ++$i) {
+			if ($chardata[$i]['type'] == 'AL') {
+				$chardata[$i]['type'] = 'R';
 			}
+		}
 
-			// W6. Otherwise, separators and terminators change to Other Neutral.
-			$prevlevel = -1;
-			$levcount = 0;
-			for ($i=0; $i < $numchars; ++$i) {
-				if (($chardata[$i]['type'] == 'ET') OR ($chardata[$i]['type'] == 'ES') OR ($chardata[$i]['type'] == 'CS')) {
-					$chardata[$i]['type'] = 'ON';
-				}
-				if ($chardata[$i]['level'] != $prevlevel) {
-					$levcount = 0;
-				} else {
-					++$levcount;
+		// W4. A single European separator between two European numbers changes to a European number. A single common separator between two numbers of the same type changes to that type.
+		$prevlevel = -1;
+		$levcount = 0;
+		for ($i=0; $i < $numchars; ++$i) {
+			if (($levcount > 0) AND (($i+1) < $numchars) AND ($chardata[($i+1)]['level'] == $prevlevel)) {
+				if (($chardata[$i]['type'] == 'ES') AND ($chardata[($i-1)]['type'] == 'EN') AND ($chardata[($i+1)]['type'] == 'EN')) {
+					$chardata[$i]['type'] = 'EN';
+				} elseif (($chardata[$i]['type'] == 'CS') AND ($chardata[($i-1)]['type'] == 'EN') AND ($chardata[($i+1)]['type'] == 'EN')) {
+					$chardata[$i]['type'] = 'EN';
+				} elseif (($chardata[$i]['type'] == 'CS') AND ($chardata[($i-1)]['type'] == 'AN') AND ($chardata[($i+1)]['type'] == 'AN')) {
+					$chardata[$i]['type'] = 'AN';
 				}
-				$prevlevel = $chardata[$i]['level'];
 			}
+			if ($chardata[$i]['level'] != $prevlevel) {
+				$levcount = 0;
+			} else {
+				++$levcount;
+			}
+			$prevlevel = $chardata[$i]['level'];
+		}
 
-			//W7. Search backward from each instance of a European number until the first strong type (R, L, or sor) is found. If an L is found, then change the type of the European number to L.
-			$prevlevel = -1;
-			$levcount = 0;
-			for ($i=0; $i < $numchars; ++$i) {
-				if ($chardata[$i]['char'] == 'EN') {
-					for ($j=$levcount; $j >= 0; $j--) {
-						if ($chardata[$j]['type'] == 'L') {
-							$chardata[$i]['type'] = 'L';
-						} elseif ($chardata[$j]['type'] == 'R') {
+		// W5. A sequence of European terminators adjacent to European numbers changes to all European numbers.
+		$prevlevel = -1;
+		$levcount = 0;
+		for ($i=0; $i < $numchars; ++$i) {
+			if ($chardata[$i]['type'] == 'ET') {
+				if (($levcount > 0) AND ($chardata[($i-1)]['type'] == 'EN')) {
+					$chardata[$i]['type'] = 'EN';
+				} else {
+					$j = $i+1;
+					while (($j < $numchars) AND ($chardata[$j]['level'] == $prevlevel)) {
+						if ($chardata[$j]['type'] == 'EN') {
+							$chardata[$i]['type'] = 'EN';
+							break;
+						} elseif ($chardata[$j]['type'] != 'ET') {
 							break;
 						}
+						++$j;
 					}
 				}
-				if ($chardata[$i]['level'] != $prevlevel) {
-					$levcount = 0;
-				} else {
-					++$levcount;
-				}
-				$prevlevel = $chardata[$i]['level'];
 			}
+			if ($chardata[$i]['level'] != $prevlevel) {
+				$levcount = 0;
+			} else {
+				++$levcount;
+			}
+			$prevlevel = $chardata[$i]['level'];
+		}
 
-			// N1. A sequence of neutrals takes the direction of the surrounding strong text if the text on both sides has the same direction. European and Arabic numbers act as if they were R in terms of their influence on neutrals. Start-of-level-run (sor) and end-of-level-run (eor) are used at level run boundaries.
-			$prevlevel = -1;
-			$levcount = 0;
-			for ($i=0; $i < $numchars; ++$i) {
-				if (($levcount > 0) AND (($i+1) < $numchars) AND ($chardata[($i+1)]['level'] == $prevlevel)) {
-					if (($chardata[$i]['type'] == 'N') AND ($chardata[($i-1)]['type'] == 'L') AND ($chardata[($i+1)]['type'] == 'L')) {
-						$chardata[$i]['type'] = 'L';
-					} elseif (($chardata[$i]['type'] == 'N') AND
-					 (($chardata[($i-1)]['type'] == 'R') OR ($chardata[($i-1)]['type'] == 'EN') OR ($chardata[($i-1)]['type'] == 'AN')) AND
-					 (($chardata[($i+1)]['type'] == 'R') OR ($chardata[($i+1)]['type'] == 'EN') OR ($chardata[($i+1)]['type'] == 'AN'))) {
-						$chardata[$i]['type'] = 'R';
-					} elseif ($chardata[$i]['type'] == 'N') {
-						// N2. Any remaining neutrals take the embedding direction
-						$chardata[$i]['type'] = $chardata[$i]['sor'];
-					}
-				} elseif (($levcount == 0) AND (($i+1) < $numchars) AND ($chardata[($i+1)]['level'] == $prevlevel)) {
-					// first char
-					if (($chardata[$i]['type'] == 'N') AND ($chardata[$i]['sor'] == 'L') AND ($chardata[($i+1)]['type'] == 'L')) {
-						$chardata[$i]['type'] = 'L';
-					} elseif (($chardata[$i]['type'] == 'N') AND
-					 (($chardata[$i]['sor'] == 'R') OR ($chardata[$i]['sor'] == 'EN') OR ($chardata[$i]['sor'] == 'AN')) AND
-					 (($chardata[($i+1)]['type'] == 'R') OR ($chardata[($i+1)]['type'] == 'EN') OR ($chardata[($i+1)]['type'] == 'AN'))) {
-						$chardata[$i]['type'] = 'R';
-					} elseif ($chardata[$i]['type'] == 'N') {
-						// N2. Any remaining neutrals take the embedding direction
-						$chardata[$i]['type'] = $chardata[$i]['sor'];
-					}
-				} elseif (($levcount > 0) AND ((($i+1) == $numchars) OR (($i+1) < $numchars) AND ($chardata[($i+1)]['level'] != $prevlevel))) {
-					//last char
-					if (($chardata[$i]['type'] == 'N') AND ($chardata[($i-1)]['type'] == 'L') AND ($chardata[$i]['eor'] == 'L')) {
+		// W6. Otherwise, separators and terminators change to Other Neutral.
+		$prevlevel = -1;
+		$levcount = 0;
+		for ($i=0; $i < $numchars; ++$i) {
+			if (($chardata[$i]['type'] == 'ET') OR ($chardata[$i]['type'] == 'ES') OR ($chardata[$i]['type'] == 'CS')) {
+				$chardata[$i]['type'] = 'ON';
+			}
+			if ($chardata[$i]['level'] != $prevlevel) {
+				$levcount = 0;
+			} else {
+				++$levcount;
+			}
+			$prevlevel = $chardata[$i]['level'];
+		}
+
+		//W7. Search backward from each instance of a European number until the first strong type (R, L, or sor) is found. If an L is found, then change the type of the European number to L.
+		$prevlevel = -1;
+		$levcount = 0;
+		for ($i=0; $i < $numchars; ++$i) {
+			if ($chardata[$i]['char'] == 'EN') {
+				for ($j=$levcount; $j >= 0; $j--) {
+					if ($chardata[$j]['type'] == 'L') {
 						$chardata[$i]['type'] = 'L';
-					} elseif (($chardata[$i]['type'] == 'N') AND
-					 (($chardata[($i-1)]['type'] == 'R') OR ($chardata[($i-1)]['type'] == 'EN') OR ($chardata[($i-1)]['type'] == 'AN')) AND
-					 (($chardata[$i]['eor'] == 'R') OR ($chardata[$i]['eor'] == 'EN') OR ($chardata[$i]['eor'] == 'AN'))) {
-						$chardata[$i]['type'] = 'R';
-					} elseif ($chardata[$i]['type'] == 'N') {
-						// N2. Any remaining neutrals take the embedding direction
-						$chardata[$i]['type'] = $chardata[$i]['sor'];
+					} elseif ($chardata[$j]['type'] == 'R') {
+						break;
 					}
+				}
+			}
+			if ($chardata[$i]['level'] != $prevlevel) {
+				$levcount = 0;
+			} else {
+				++$levcount;
+			}
+			$prevlevel = $chardata[$i]['level'];
+		}
+
+		// N1. A sequence of neutrals takes the direction of the surrounding strong text if the text on both sides has the same direction. European and Arabic numbers act as if they were R in terms of their influence on neutrals. Start-of-level-run (sor) and end-of-level-run (eor) are used at level run boundaries.
+		$prevlevel = -1;
+		$levcount = 0;
+		for ($i=0; $i < $numchars; ++$i) {
+			if (($levcount > 0) AND (($i+1) < $numchars) AND ($chardata[($i+1)]['level'] == $prevlevel)) {
+				if (($chardata[$i]['type'] == 'N') AND ($chardata[($i-1)]['type'] == 'L') AND ($chardata[($i+1)]['type'] == 'L')) {
+					$chardata[$i]['type'] = 'L';
+				} elseif (($chardata[$i]['type'] == 'N') AND
+				 (($chardata[($i-1)]['type'] == 'R') OR ($chardata[($i-1)]['type'] == 'EN') OR ($chardata[($i-1)]['type'] == 'AN')) AND
+				 (($chardata[($i+1)]['type'] == 'R') OR ($chardata[($i+1)]['type'] == 'EN') OR ($chardata[($i+1)]['type'] == 'AN'))) {
+					$chardata[$i]['type'] = 'R';
 				} elseif ($chardata[$i]['type'] == 'N') {
 					// N2. Any remaining neutrals take the embedding direction
 					$chardata[$i]['type'] = $chardata[$i]['sor'];
 				}
-				if ($chardata[$i]['level'] != $prevlevel) {
-					$levcount = 0;
-				} else {
-					++$levcount;
+			} elseif (($levcount == 0) AND (($i+1) < $numchars) AND ($chardata[($i+1)]['level'] == $prevlevel)) {
+				// first char
+				if (($chardata[$i]['type'] == 'N') AND ($chardata[$i]['sor'] == 'L') AND ($chardata[($i+1)]['type'] == 'L')) {
+					$chardata[$i]['type'] = 'L';
+				} elseif (($chardata[$i]['type'] == 'N') AND
+				 (($chardata[$i]['sor'] == 'R') OR ($chardata[$i]['sor'] == 'EN') OR ($chardata[$i]['sor'] == 'AN')) AND
+				 (($chardata[($i+1)]['type'] == 'R') OR ($chardata[($i+1)]['type'] == 'EN') OR ($chardata[($i+1)]['type'] == 'AN'))) {
+					$chardata[$i]['type'] = 'R';
+				} elseif ($chardata[$i]['type'] == 'N') {
+					// N2. Any remaining neutrals take the embedding direction
+					$chardata[$i]['type'] = $chardata[$i]['sor'];
+				}
+			} elseif (($levcount > 0) AND ((($i+1) == $numchars) OR (($i+1) < $numchars) AND ($chardata[($i+1)]['level'] != $prevlevel))) {
+				//last char
+				if (($chardata[$i]['type'] == 'N') AND ($chardata[($i-1)]['type'] == 'L') AND ($chardata[$i]['eor'] == 'L')) {
+					$chardata[$i]['type'] = 'L';
+				} elseif (($chardata[$i]['type'] == 'N') AND
+				 (($chardata[($i-1)]['type'] == 'R') OR ($chardata[($i-1)]['type'] == 'EN') OR ($chardata[($i-1)]['type'] == 'AN')) AND
+				 (($chardata[$i]['eor'] == 'R') OR ($chardata[$i]['eor'] == 'EN') OR ($chardata[$i]['eor'] == 'AN'))) {
+					$chardata[$i]['type'] = 'R';
+				} elseif ($chardata[$i]['type'] == 'N') {
+					// N2. Any remaining neutrals take the embedding direction
+					$chardata[$i]['type'] = $chardata[$i]['sor'];
 				}
-				$prevlevel = $chardata[$i]['level'];
+			} elseif ($chardata[$i]['type'] == 'N') {
+				// N2. Any remaining neutrals take the embedding direction
+				$chardata[$i]['type'] = $chardata[$i]['sor'];
+			}
+			if ($chardata[$i]['level'] != $prevlevel) {
+				$levcount = 0;
+			} else {
+				++$levcount;
 			}
+			$prevlevel = $chardata[$i]['level'];
+		}
 
-			// I1. For all characters with an even (left-to-right) embedding direction, those of type R go up one level and those of type AN or EN go up two levels.
-			// I2. For all characters with an odd (right-to-left) embedding direction, those of type L, EN or AN go up one level.
-			for ($i=0; $i < $numchars; ++$i) {
-				$odd = $chardata[$i]['level'] % 2;
-				if ($odd) {
-					if (($chardata[$i]['type'] == 'L') OR ($chardata[$i]['type'] == 'AN') OR ($chardata[$i]['type'] == 'EN')) {
-						$chardata[$i]['level'] += 1;
-					}
-				} else {
-					if ($chardata[$i]['type'] == 'R') {
-						$chardata[$i]['level'] += 1;
-					} elseif (($chardata[$i]['type'] == 'AN') OR ($chardata[$i]['type'] == 'EN')) {
-						$chardata[$i]['level'] += 2;
+		// I1. For all characters with an even (left-to-right) embedding direction, those of type R go up one level and those of type AN or EN go up two levels.
+		// I2. For all characters with an odd (right-to-left) embedding direction, those of type L, EN or AN go up one level.
+		for ($i=0; $i < $numchars; ++$i) {
+			$odd = $chardata[$i]['level'] % 2;
+			if ($odd) {
+				if (($chardata[$i]['type'] == 'L') OR ($chardata[$i]['type'] == 'AN') OR ($chardata[$i]['type'] == 'EN')) {
+					$chardata[$i]['level'] += 1;
+				}
+			} else {
+				if ($chardata[$i]['type'] == 'R') {
+					$chardata[$i]['level'] += 1;
+				} elseif (($chardata[$i]['type'] == 'AN') OR ($chardata[$i]['type'] == 'EN')) {
+					$chardata[$i]['level'] += 2;
+				}
+			}
+			$maxlevel = max($chardata[$i]['level'],$maxlevel);
+		}
+
+		// L1. On each line, reset the embedding level of the following characters to the paragraph embedding level:
+		//	1. Segment separators,
+		//	2. Paragraph separators,
+		//	3. Any sequence of whitespace characters preceding a segment separator or paragraph separator, and
+		//	4. Any sequence of white space characters at the end of the line.
+		for ($i=0; $i < $numchars; ++$i) {
+			if (($chardata[$i]['type'] == 'B') OR ($chardata[$i]['type'] == 'S')) {
+				$chardata[$i]['level'] = $pel;
+			} elseif ($chardata[$i]['type'] == 'WS') {
+				$j = $i+1;
+				while ($j < $numchars) {
+					if ((($chardata[$j]['type'] == 'B') OR ($chardata[$j]['type'] == 'S')) OR
+						(($j == ($numchars-1)) AND ($chardata[$j]['type'] == 'WS'))) {
+						$chardata[$i]['level'] = $pel;
+						break;
+					} elseif ($chardata[$j]['type'] != 'WS') {
+						break;
 					}
+					++$j;
 				}
-				$maxlevel = max($chardata[$i]['level'],$maxlevel);
 			}
+		}
 
-			// L1. On each line, reset the embedding level of the following characters to the paragraph embedding level:
-			//	1. Segment separators,
-			//	2. Paragraph separators,
-			//	3. Any sequence of whitespace characters preceding a segment separator or paragraph separator, and
-			//	4. Any sequence of white space characters at the end of the line.
+		// Arabic Shaping
+		// Cursively connected scripts, such as Arabic or Syriac, require the selection of positional character shapes that depend on adjacent characters. Shaping is logically applied after the Bidirectional Algorithm is used and is limited to characters within the same directional run.
+		if ($arabic) {
+			$endedletter = array(1569,1570,1571,1572,1573,1575,1577,1583,1584,1585,1586,1608,1688);
+			$alfletter = array(1570,1571,1573,1575);
+			$chardata2 = $chardata;
+			$laaletter = false;
+			$charAL = array();
+			$x = 0;
 			for ($i=0; $i < $numchars; ++$i) {
-				if (($chardata[$i]['type'] == 'B') OR ($chardata[$i]['type'] == 'S')) {
-					$chardata[$i]['level'] = $pel;
-				} elseif ($chardata[$i]['type'] == 'WS') {
-					$j = $i+1;
-					while ($j < $numchars) {
-						if ((($chardata[$j]['type'] == 'B') OR ($chardata[$j]['type'] == 'S')) OR
-							(($j == ($numchars-1)) AND ($chardata[$j]['type'] == 'WS'))) {
-							$chardata[$i]['level'] = $pel;
-							break;
-						} elseif ($chardata[$j]['type'] != 'WS') {
-							break;
-						}
-						++$j;
-					}
+				if (($this->unicode->uni_type[$chardata[$i]['char']] == 'AL') OR ($chardata[$i]['char'] == 32) OR ($chardata[$i]['char'] == 8204)) {
+					$charAL[$x] = $chardata[$i];
+					$charAL[$x]['i'] = $i;
+					$chardata[$i]['x'] = $x;
+					++$x;
 				}
 			}
-
-			// Arabic Shaping
-			// Cursively connected scripts, such as Arabic or Syriac, require the selection of positional character shapes that depend on adjacent characters. Shaping is logically applied after the Bidirectional Algorithm is used and is limited to characters within the same directional run.
-			if ($arabic) {
-				$endedletter = array(1569,1570,1571,1572,1573,1575,1577,1583,1584,1585,1586,1608,1688);
-				$alfletter = array(1570,1571,1573,1575);
-				$chardata2 = $chardata;
-				$laaletter = false;
-				$charAL = array();
-				$x = 0;
-				for ($i=0; $i < $numchars; ++$i) {
-					if (($unicode[$chardata[$i]['char']] == 'AL') OR ($chardata[$i]['char'] == 32) OR ($chardata[$i]['char'] == 8204)) {
-						$charAL[$x] = $chardata[$i];
-						$charAL[$x]['i'] = $i;
-						$chardata[$i]['x'] = $x;
-						++$x;
-					}
+			$numAL = $x;
+			for ($i=0; $i < $numchars; ++$i) {
+				$thischar = $chardata[$i];
+				if ($i > 0) {
+					$prevchar = $chardata[($i-1)];
+				} else {
+					$prevchar = false;
+				}
+				if (($i+1) < $numchars) {
+					$nextchar = $chardata[($i+1)];
+				} else {
+					$nextchar = false;
 				}
-				$numAL = $x;
-				for ($i=0; $i < $numchars; ++$i) {
-					$thischar = $chardata[$i];
-					if ($i > 0) {
-						$prevchar = $chardata[($i-1)];
+				if ($this->unicode->uni_type[$thischar['char']] == 'AL') {
+					$x = $thischar['x'];
+					if ($x > 0) {
+						$prevchar = $charAL[($x-1)];
 					} else {
 						$prevchar = false;
 					}
-					if (($i+1) < $numchars) {
-						$nextchar = $chardata[($i+1)];
+					if (($x+1) < $numAL) {
+						$nextchar = $charAL[($x+1)];
 					} else {
 						$nextchar = false;
 					}
-					if ($unicode[$thischar['char']] == 'AL') {
-						$x = $thischar['x'];
-						if ($x > 0) {
-							$prevchar = $charAL[($x-1)];
+					// if laa letter
+					if (($prevchar !== false) AND ($prevchar['char'] == 1604) AND (in_array($thischar['char'], $alfletter))) {
+						$arabicarr = $this->unicode->uni_laa_array;
+						$laaletter = true;
+						if ($x > 1) {
+							$prevchar = $charAL[($x-2)];
 						} else {
 							$prevchar = false;
 						}
-						if (($x+1) < $numAL) {
-							$nextchar = $charAL[($x+1)];
+					} else {
+						$arabicarr = $this->unicode->uni_arabicsubst;
+						$laaletter = false;
+					}
+					if (($prevchar !== false) AND ($nextchar !== false) AND
+						(($this->unicode->uni_type[$prevchar['char']] == 'AL') OR ($this->unicode->uni_type[$prevchar['char']] == 'NSM')) AND
+						(($this->unicode->uni_type[$nextchar['char']] == 'AL') OR ($this->unicode->uni_type[$nextchar['char']] == 'NSM')) AND
+						($prevchar['type'] == $thischar['type']) AND
+						($nextchar['type'] == $thischar['type']) AND
+						($nextchar['char'] != 1567)) {
+						if (in_array($prevchar['char'], $endedletter)) {
+							if (isset($arabicarr[$thischar['char']][2])) {
+								// initial
+								$chardata2[$i]['char'] = $arabicarr[$thischar['char']][2];
+							}
 						} else {
-							$nextchar = false;
-						}
-						// if laa letter
-						if (($prevchar !== false) AND ($prevchar['char'] == 1604) AND (in_array($thischar['char'], $alfletter))) {
-							$arabicarr = $laa_array;
-							$laaletter = true;
-							if ($x > 1) {
-								$prevchar = $charAL[($x-2)];
-							} else {
-								$prevchar = false;
+							if (isset($arabicarr[$thischar['char']][3])) {
+								// medial
+								$chardata2[$i]['char'] = $arabicarr[$thischar['char']][3];
 							}
+						}
+					} elseif (($nextchar !== false) AND
+						(($this->unicode->uni_type[$nextchar['char']] == 'AL') OR ($this->unicode->uni_type[$nextchar['char']] == 'NSM')) AND
+						($nextchar['type'] == $thischar['type']) AND
+						($nextchar['char'] != 1567)) {
+						if (isset($arabicarr[$chardata[$i]['char']][2])) {
+							// initial
+							$chardata2[$i]['char'] = $arabicarr[$thischar['char']][2];
+						}
+					} elseif ((($prevchar !== false) AND
+						(($this->unicode->uni_type[$prevchar['char']] == 'AL') OR ($this->unicode->uni_type[$prevchar['char']] == 'NSM')) AND
+						($prevchar['type'] == $thischar['type'])) OR
+						(($nextchar !== false) AND ($nextchar['char'] == 1567))) {
+						// final
+						if (($i > 1) AND ($thischar['char'] == 1607) AND
+							($chardata[$i-1]['char'] == 1604) AND
+							($chardata[$i-2]['char'] == 1604)) {
+							//Allah Word
+							// mark characters to delete with false
+							$chardata2[$i-2]['char'] = false;
+							$chardata2[$i-1]['char'] = false;
+							$chardata2[$i]['char'] = 65010;
 						} else {
-							$arabicarr = $unicode_arlet;
-							$laaletter = false;
-						}
-						if (($prevchar !== false) AND ($nextchar !== false) AND
-							(($unicode[$prevchar['char']] == 'AL') OR ($unicode[$prevchar['char']] == 'NSM')) AND
-							(($unicode[$nextchar['char']] == 'AL') OR ($unicode[$nextchar['char']] == 'NSM')) AND
-							($prevchar['type'] == $thischar['type']) AND
-							($nextchar['type'] == $thischar['type']) AND
-							($nextchar['char'] != 1567)) {
-							if (in_array($prevchar['char'], $endedletter)) {
-								if (isset($arabicarr[$thischar['char']][2])) {
-									// initial
-									$chardata2[$i]['char'] = $arabicarr[$thischar['char']][2];
-								}
-							} else {
-								if (isset($arabicarr[$thischar['char']][3])) {
-									// medial
-									$chardata2[$i]['char'] = $arabicarr[$thischar['char']][3];
+							if (($prevchar !== false) AND in_array($prevchar['char'], $endedletter)) {
+								if (isset($arabicarr[$thischar['char']][0])) {
+									// isolated
+									$chardata2[$i]['char'] = $arabicarr[$thischar['char']][0];
 								}
-							}
-						} elseif (($nextchar !== false) AND
-							(($unicode[$nextchar['char']] == 'AL') OR ($unicode[$nextchar['char']] == 'NSM')) AND
-							($nextchar['type'] == $thischar['type']) AND
-							($nextchar['char'] != 1567)) {
-							if (isset($arabicarr[$chardata[$i]['char']][2])) {
-								// initial
-								$chardata2[$i]['char'] = $arabicarr[$thischar['char']][2];
-							}
-						} elseif ((($prevchar !== false) AND
-							(($unicode[$prevchar['char']] == 'AL') OR ($unicode[$prevchar['char']] == 'NSM')) AND
-							($prevchar['type'] == $thischar['type'])) OR
-							(($nextchar !== false) AND ($nextchar['char'] == 1567))) {
-							// final
-							if (($i > 1) AND ($thischar['char'] == 1607) AND
-								($chardata[$i-1]['char'] == 1604) AND
-								($chardata[$i-2]['char'] == 1604)) {
-								//Allah Word
-								// mark characters to delete with false
-								$chardata2[$i-2]['char'] = false;
-								$chardata2[$i-1]['char'] = false;
-								$chardata2[$i]['char'] = 65010;
 							} else {
-								if (($prevchar !== false) AND in_array($prevchar['char'], $endedletter)) {
-									if (isset($arabicarr[$thischar['char']][0])) {
-										// isolated
-										$chardata2[$i]['char'] = $arabicarr[$thischar['char']][0];
-									}
-								} else {
-									if (isset($arabicarr[$thischar['char']][1])) {
-										// final
-										$chardata2[$i]['char'] = $arabicarr[$thischar['char']][1];
-									}
+								if (isset($arabicarr[$thischar['char']][1])) {
+									// final
+									$chardata2[$i]['char'] = $arabicarr[$thischar['char']][1];
 								}
 							}
-						} elseif (isset($arabicarr[$thischar['char']][0])) {
-							// isolated
-							$chardata2[$i]['char'] = $arabicarr[$thischar['char']][0];
-						}
-						// if laa letter
-						if ($laaletter) {
-							// mark characters to delete with false
-							$chardata2[($charAL[($x-1)]['i'])]['char'] = false;
-						}
-					} // end if AL (Arabic Letter)
-				} // end for each char
-				/*
-				 * Combining characters that can occur with Arabic Shadda (0651 HEX, 1617 DEC) are replaced.
-				 * Putting the combining mark and shadda in the same glyph allows us to avoid the two marks overlapping each other in an illegible manner.
-				 */
-				$cw = &$this->CurrentFont['cw'];
-				for ($i = 0; $i < ($numchars-1); ++$i) {
-					if (($chardata2[$i]['char'] == 1617) AND (isset($diacritics[($chardata2[$i+1]['char'])]))) {
-						// check if the subtitution font is defined on current font
-						if (isset($cw[($diacritics[($chardata2[$i+1]['char'])])])) {
-							$chardata2[$i]['char'] = false;
-							$chardata2[$i+1]['char'] = $diacritics[($chardata2[$i+1]['char'])];
-						}
-					}
-				}
-				// remove marked characters
-				foreach ($chardata2 as $key => $value) {
-					if ($value['char'] === false) {
-						unset($chardata2[$key]);
-					}
-				}
-				$chardata = array_values($chardata2);
-				$numchars = count($chardata);
-				unset($chardata2);
-				unset($arabicarr);
-				unset($laaletter);
-				unset($charAL);
-			}
-
-			// L2. From the highest level found in the text to the lowest odd level on each line, including intermediate levels not actually present in the text, reverse any contiguous sequence of characters that are at that level or higher.
-			for ($j=$maxlevel; $j > 0; $j--) {
-				$ordarray = Array();
-				$revarr = Array();
-				$onlevel = false;
-				for ($i=0; $i < $numchars; ++$i) {
-					if ($chardata[$i]['level'] >= $j) {
-						$onlevel = true;
-						if (isset($unicode_mirror[$chardata[$i]['char']])) {
-							// L4. A character is depicted by a mirrored glyph if and only if (a) the resolved directionality of that character is R, and (b) the Bidi_Mirrored property value of that character is true.
-							$chardata[$i]['char'] = $unicode_mirror[$chardata[$i]['char']];
-						}
-						$revarr[] = $chardata[$i];
-					} else {
-						if ($onlevel) {
-							$revarr = array_reverse($revarr);
-							$ordarray = array_merge($ordarray, $revarr);
-							$revarr = Array();
-							$onlevel = false;
 						}
-						$ordarray[] = $chardata[$i];
+					} elseif (isset($arabicarr[$thischar['char']][0])) {
+						// isolated
+						$chardata2[$i]['char'] = $arabicarr[$thischar['char']][0];
+					}
+					// if laa letter
+					if ($laaletter) {
+						// mark characters to delete with false
+						$chardata2[($charAL[($x-1)]['i'])]['char'] = false;
+					}
+				} // end if AL (Arabic Letter)
+			} // end for each char
+			/*
+			 * Combining characters that can occur with Arabic Shadda (0651 HEX, 1617 DEC) are replaced.
+			 * Putting the combining mark and shadda in the same glyph allows us to avoid the two marks overlapping each other in an illegible manner.
+			 */
+			$cw = &$this->CurrentFont['cw'];
+			for ($i = 0; $i < ($numchars-1); ++$i) {
+				if (($chardata2[$i]['char'] == 1617) AND (isset($this->unicode->uni_diacritics[($chardata2[$i+1]['char'])]))) {
+					// check if the subtitution font is defined on current font
+					if (isset($cw[($this->unicode->uni_diacritics[($chardata2[$i+1]['char'])])])) {
+						$chardata2[$i]['char'] = false;
+						$chardata2[$i+1]['char'] = $this->unicode->uni_diacritics[($chardata2[$i+1]['char'])];
 					}
 				}
-				if ($onlevel) {
-					$revarr = array_reverse($revarr);
-					$ordarray = array_merge($ordarray, $revarr);
+			}
+			// remove marked characters
+			foreach ($chardata2 as $key => $value) {
+				if ($value['char'] === false) {
+					unset($chardata2[$key]);
 				}
-				$chardata = $ordarray;
 			}
+			$chardata = array_values($chardata2);
+			$numchars = count($chardata);
+			unset($chardata2);
+			unset($arabicarr);
+			unset($laaletter);
+			unset($charAL);
+		}
 
-			$ordarray = array();
+		// L2. From the highest level found in the text to the lowest odd level on each line, including intermediate levels not actually present in the text, reverse any contiguous sequence of characters that are at that level or higher.
+		for ($j=$maxlevel; $j > 0; $j--) {
+			$ordarray = Array();
+			$revarr = Array();
+			$onlevel = false;
 			for ($i=0; $i < $numchars; ++$i) {
-				$ordarray[] = $chardata[$i]['char'];
-				// store char values for subsetting
-				$this->CurrentFont['subsetchars'][$chardata[$i]['char']] = true;
-			}
-			// update font subsetchars
-			$this->setFontSubBuffer($this->CurrentFont['fontkey'], 'subsetchars', $this->CurrentFont['subsetchars']);
-			return $ordarray;
-		}
-
-		// END OF BIDIRECTIONAL TEXT SECTION -------------------
-
-		/**
-		 * Adds a bookmark.
-		 * @param string $txt bookmark description.
-		 * @param int $level bookmark level (minimum value is 0).
-		 * @param float $y Ordinate of the boorkmark position (default = -1 = current position).
-		 * @param int $page target page number (leave empty for current page).
-		 * @access public
-		 * @author Olivier Plathey, Nicola Asuni
-		 * @since 2.1.002 (2008-02-12)
-		 */
-		public function Bookmark($txt, $level=0, $y=-1, $page='') {
-			if ($level < 0) {
-				$level = 0;
-			}
-			if (isset($this->outlines[0])) {
-				$lastoutline = end($this->outlines);
-				$maxlevel = $lastoutline['l'] + 1;
-			} else {
-				$maxlevel = 0;
-			}
-			if ($level > $maxlevel) {
-				$level = $maxlevel;
-			}
-			if ($y == -1) {
-				$y = $this->GetY();
+				if ($chardata[$i]['level'] >= $j) {
+					$onlevel = true;
+					if (isset($this->unicode->uni_mirror[$chardata[$i]['char']])) {
+						// L4. A character is depicted by a mirrored glyph if and only if (a) the resolved directionality of that character is R, and (b) the Bidi_Mirrored property value of that character is true.
+						$chardata[$i]['char'] = $this->unicode->uni_mirror[$chardata[$i]['char']];
+					}
+					$revarr[] = $chardata[$i];
+				} else {
+					if ($onlevel) {
+						$revarr = array_reverse($revarr);
+						$ordarray = array_merge($ordarray, $revarr);
+						$revarr = Array();
+						$onlevel = false;
+					}
+					$ordarray[] = $chardata[$i];
+				}
 			}
-			if (empty($page)) {
-				$page = $this->PageNo();
+			if ($onlevel) {
+				$revarr = array_reverse($revarr);
+				$ordarray = array_merge($ordarray, $revarr);
 			}
-			$this->outlines[] = array('t' => $txt, 'l' => $level, 'y' => $y, 'p' => $page);
+			$chardata = $ordarray;
+		}
+
+		$ordarray = array();
+		for ($i=0; $i < $numchars; ++$i) {
+			$ordarray[] = $chardata[$i]['char'];
+			// store char values for subsetting
+			$this->CurrentFont['subsetchars'][$chardata[$i]['char']] = true;
 		}
+		// update font subsetchars
+		$this->setFontSubBuffer($this->CurrentFont['fontkey'], 'subsetchars', $this->CurrentFont['subsetchars']);
+		return $ordarray;
+	}
+
+	// END OF BIDIRECTIONAL TEXT SECTION -------------------
 
-		/**
-		 * Create a bookmark PDF string.
-		 * @access protected
-		 * @author Olivier Plathey, Nicola Asuni
-		 * @since 2.1.002 (2008-02-12)
-		 */
-		protected function _putbookmarks() {
-			$nb = count($this->outlines);
-			if ($nb == 0) {
+	/**
+	 * Adds a bookmark.
+	 * @param $txt (string) bookmark description.
+	 * @param $level (int) bookmark level (minimum value is 0).
+	 * @param $y (float) Y position in user units of the bookmark on the selected page (default = -1 = current position; 0 = page start;).
+	 * @param $page (int) target page number (leave empty for current page).
+	 * @public
+	 * @author Olivier Plathey, Nicola Asuni
+	 * @since 2.1.002 (2008-02-12)
+	 */
+	public function Bookmark($txt, $level=0, $y=-1, $page='') {
+		if ($level < 0) {
+			$level = 0;
+		}
+		if (isset($this->outlines[0])) {
+			$lastoutline = end($this->outlines);
+			$maxlevel = $lastoutline['l'] + 1;
+		} else {
+			$maxlevel = 0;
+		}
+		if ($level > $maxlevel) {
+			$level = $maxlevel;
+		}
+		if ($y == -1) {
+			$y = $this->GetY();
+		}
+		if (empty($page)) {
+			$page = $this->PageNo();
+			if (empty($page)) {
 				return;
 			}
-			// get sorting columns
-			$outline_p = array();
-			$outline_y = array();
-			foreach ($this->outlines as $key => $row) {
-				$outline_p[$key]  = $row['p'];
-				$outline_k[$key] = $key;
-			}
-			// sort outlines by page and original position
-			array_multisort($outline_p, SORT_NUMERIC, SORT_ASC, $outline_k, SORT_NUMERIC, SORT_ASC, $this->outlines);
-			$lru = array();
-			$level = 0;
-			foreach ($this->outlines as $i => $o) {
-				if ($o['l'] > 0) {
-					$parent = $lru[($o['l'] - 1)];
-					//Set parent and last pointers
-					$this->outlines[$i]['parent'] = $parent;
-					$this->outlines[$parent]['last'] = $i;
-					if ($o['l'] > $level) {
-						//Level increasing: set first pointer
-						$this->outlines[$parent]['first'] = $i;
-					}
-				} else {
-					$this->outlines[$i]['parent'] = $nb;
-				}
-				if (($o['l'] <= $level) AND ($i > 0)) {
-					//Set prev and next pointers
-					$prev = $lru[$o['l']];
-					$this->outlines[$prev]['next'] = $i;
-					$this->outlines[$i]['prev'] = $prev;
+		}
+		$this->outlines[] = array('t' => $txt, 'l' => $level, 'y' => $y, 'p' => $page);
+	}
+
+	/**
+	 * Create a bookmark PDF string.
+	 * @protected
+	 * @author Olivier Plathey, Nicola Asuni
+	 * @since 2.1.002 (2008-02-12)
+	 */
+	protected function _putbookmarks() {
+		$nb = count($this->outlines);
+		if ($nb == 0) {
+			return;
+		}
+		// get sorting columns
+		$outline_p = array();
+		$outline_y = array();
+		foreach ($this->outlines as $key => $row) {
+			$outline_p[$key] = $row['p'];
+			$outline_k[$key] = $key;
+		}
+		// sort outlines by page and original position
+		array_multisort($outline_p, SORT_NUMERIC, SORT_ASC, $outline_k, SORT_NUMERIC, SORT_ASC, $this->outlines);
+		$lru = array();
+		$level = 0;
+		foreach ($this->outlines as $i => $o) {
+			if ($o['l'] > 0) {
+				$parent = $lru[($o['l'] - 1)];
+				//Set parent and last pointers
+				$this->outlines[$i]['parent'] = $parent;
+				$this->outlines[$parent]['last'] = $i;
+				if ($o['l'] > $level) {
+					//Level increasing: set first pointer
+					$this->outlines[$parent]['first'] = $i;
 				}
-				$lru[$o['l']] = $i;
-				$level = $o['l'];
-			}
-			//Outline items
-			$n = $this->n + 1;
-			foreach ($this->outlines as $i => $o) {
-				$this->_newobj();
+			} else {
+				$this->outlines[$i]['parent'] = $nb;
+			}
+			if (($o['l'] <= $level) AND ($i > 0)) {
+				//Set prev and next pointers
+				$prev = $lru[$o['l']];
+				$this->outlines[$prev]['next'] = $i;
+				$this->outlines[$i]['prev'] = $prev;
+			}
+			$lru[$o['l']] = $i;
+			$level = $o['l'];
+		}
+		//Outline items
+		$n = $this->n + 1;
+		$nltags = '/<br[\s]?\/>|<\/(blockquote|dd|dl|div|dt|h1|h2|h3|h4|h5|h6|hr|li|ol|p|pre|ul|tcpdf|table|tr|td)>/si';
+		foreach ($this->outlines as $i => $o) {
+			if (isset($this->page_obj_id[($o['p'])])) {
+				$oid = $this->_newobj();
 				// covert HTML title to string
-				$nltags = '/<br[\s]?\/>|<\/(blockquote|dd|dl|div|dt|h1|h2|h3|h4|h5|h6|hr|li|ol|p|pre|ul|tcpdf|table|tr|td)>/si';
 				$title = preg_replace($nltags, "\n", $o['t']);
 				$title = preg_replace("/[\r]+/si", '', $title);
 				$title = preg_replace("/[\n]+/si", "\n", $title);
-				$title = strip_tags(trim($title));
-				$out = '<</Title '.$this->_textstring($title);
+				$title = strip_tags($title);
+				$title = $this->stringTrim($title);
+				$out = '<</Title '.$this->_textstring($title, $oid);
 				$out .= ' /Parent '.($n + $o['parent']).' 0 R';
 				if (isset($o['prev'])) {
 					$out .= ' /Prev '.($n + $o['prev']).' 0 R';
@@ -13062,2048 +14221,2084 @@ if (!class_exists('TCPDF', false)) {
 				if (isset($o['last'])) {
 					$out .= ' /Last '.($n + $o['last']).' 0 R';
 				}
-				$out .= ' '.sprintf('/Dest [%d 0 R /XYZ 0 %.2F null]', (1 + (2 * $o['p'])), ($this->pagedim[$o['p']]['h'] - ($o['y'] * $this->k)));
+				$out .= ' '.sprintf('/Dest [%u 0 R /XYZ 0 %.2F null]', $this->page_obj_id[($o['p'])], ($this->pagedim[$o['p']]['h'] - ($o['y'] * $this->k)));
 				$out .= ' /Count 0 >>';
 				$out .= "\n".'endobj';
 				$this->_out($out);
 			}
-			//Outline root
-			$this->_newobj();
-			$this->OutlineRoot = $this->n;
-			$this->_out('<< /Type /Outlines /First '.$n.' 0 R /Last '.($n + $lru[0]).' 0 R >>'."\n".'endobj');
-		}
-
-		// --- JAVASCRIPT ------------------------------------------------------
-
-		/**
-		 * Adds a javascript
-		 * @param string $script Javascript code
-		 * @access public
-		 * @author Johannes G�ntert, Nicola Asuni
-		 * @since 2.1.002 (2008-02-12)
-		 */
-		public function IncludeJS($script) {
-			$this->javascript .= $script;
-		}
-
-		/**
-		 * Adds a javascript object and return object ID
-		 * @param string $script Javascript code
-		 * @param boolean $onload if true executes this object when opening the document
-		 * @return int internal object ID
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		public function addJavascriptObject($script, $onload=false) {
-			++$this->js_obj_id;
-			$this->js_objects[$this->js_obj_id] = array('js' => $script, 'onload' => $onload);
-			return $this->js_obj_id;
-		}
-
-		/**
-		 * Create a javascript PDF string.
-		 * @access protected
-		 * @author Johannes G�ntert, Nicola Asuni
-		 * @since 2.1.002 (2008-02-12)
-		 */
-		protected function _putjavascript() {
-			if (empty($this->javascript) AND empty($this->js_objects)) {
-				return;
-			}
-			if (strpos($this->javascript, 'this.addField') > 0) {
-				if (!$this->ur) {
-					//$this->setUserRights();
-				}
-				// the following two lines are used to avoid form fields duplication after saving
-				// The addField method only works on Acrobat Writer, unless the document is signed with Adobe private key (UR3)
-				$jsa = sprintf("ftcpdfdocsaved=this.addField('%s','%s',%d,[%.2F,%.2F,%.2F,%.2F]);", 'tcpdfdocsaved', 'text', 0, 0, 1, 0, 1);
-				$jsb = "getField('tcpdfdocsaved').value='saved';";
-				$this->javascript = $jsa."\n".$this->javascript."\n".$jsb;
-			}
-			$this->n_js = $this->_newobj();
-			$out = ' << /Names [';
-			if (!empty($this->javascript)) {
-				$out .= ' (EmbeddedJS) '.($this->n + 1).' 0 R';
+		}
+		//Outline root
+		$this->OutlineRoot = $this->_newobj();
+		$this->_out('<< /Type /Outlines /First '.$n.' 0 R /Last '.($n + $lru[0]).' 0 R >>'."\n".'endobj');
+	}
+
+	// --- JAVASCRIPT ------------------------------------------------------
+
+	/**
+	 * Adds a javascript
+	 * @param $script (string) Javascript code
+	 * @public
+	 * @author Johannes Güntert, Nicola Asuni
+	 * @since 2.1.002 (2008-02-12)
+	 */
+	public function IncludeJS($script) {
+		$this->javascript .= $script;
+	}
+
+	/**
+	 * Adds a javascript object and return object ID
+	 * @param $script (string) Javascript code
+	 * @param $onload (boolean) if true executes this object when opening the document
+	 * @return int internal object ID
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 4.8.000 (2009-09-07)
+	 */
+	public function addJavascriptObject($script, $onload=false) {
+		++$this->n;
+		$this->js_objects[$this->n] = array('n' => $this->n, 'js' => $script, 'onload' => $onload);
+		return $this->n;
+	}
+
+	/**
+	 * Create a javascript PDF string.
+	 * @protected
+	 * @author Johannes Güntert, Nicola Asuni
+	 * @since 2.1.002 (2008-02-12)
+	 */
+	protected function _putjavascript() {
+		if (empty($this->javascript) AND empty($this->js_objects)) {
+			return;
+		}
+		if (strpos($this->javascript, 'this.addField') > 0) {
+			if (!$this->ur['enabled']) {
+				//$this->setUserRights();
 			}
-			if (!empty($this->js_objects)) {
-				foreach ($this->js_objects as $key => $val) {
-					if ($val['onload']) {
-						$out .= ' (JS'.$key.') '.$key.' 0 R';
-					}
+			// the following two lines are used to avoid form fields duplication after saving
+			// The addField method only works when releasing user rights (UR3)
+			$jsa = sprintf("ftcpdfdocsaved=this.addField('%s','%s',%d,[%.2F,%.2F,%.2F,%.2F]);", 'tcpdfdocsaved', 'text', 0, 0, 1, 0, 1);
+			$jsb = "getField('tcpdfdocsaved').value='saved';";
+			$this->javascript = $jsa."\n".$this->javascript."\n".$jsb;
+		}
+		$this->n_js = $this->_newobj();
+		$out = ' << /Names [';
+		if (!empty($this->javascript)) {
+			$out .= ' (EmbeddedJS) '.($this->n + 1).' 0 R';
+		}
+		if (!empty($this->js_objects)) {
+			foreach ($this->js_objects as $key => $val) {
+				if ($val['onload']) {
+					$out .= ' (JS'.$key.') '.$key.' 0 R';
 				}
 			}
-			$out .= ' ] >>';
+		}
+		$out .= ' ] >>';
+		$out .= "\n".'endobj';
+		$this->_out($out);
+		// default Javascript object
+		if (!empty($this->javascript)) {
+			$obj_id = $this->_newobj();
+			$out = '<< /S /JavaScript';
+			$out .= ' /JS '.$this->_textstring($this->javascript, $obj_id);
+			$out .= ' >>';
 			$out .= "\n".'endobj';
 			$this->_out($out);
-			// default Javascript object
-			if (!empty($this->javascript)) {
-				$this->_newobj();
-				$out = '<< /S /JavaScript';
-				$out .= ' /JS '.$this->_textstring($this->javascript);
-				$out .= ' >>';
-				$out .= "\n".'endobj';
+		}
+		// additional Javascript objects
+		if (!empty($this->js_objects)) {
+			foreach ($this->js_objects as $key => $val) {
+				$out = $this->_getobj($key)."\n".' << /S /JavaScript /JS '.$this->_textstring($val['js'], $key).' >>'."\n".'endobj';
 				$this->_out($out);
 			}
-			// additional Javascript objects
-			if (!empty($this->js_objects)) {
-				foreach ($this->js_objects as $key => $val) {
-					$this->offsets[$key] = $this->bufferlen;
-					$out = $key.' 0 obj'."\n".' << /S /JavaScript /JS '.$this->_textstring($val['js']).' >>'."\n".'endobj';
-					$this->_out($out);
-				}
-			}
 		}
+	}
 
-		/**
-		 * Convert color to javascript color.
-		 * @param string $color color name or #RRGGBB
-		 * @access protected
-		 * @author Denis Van Nuffelen, Nicola Asuni
-		 * @since 2.1.002 (2008-02-12)
-		 */
-		protected function _JScolor($color) {
-			static $aColors = array('transparent', 'black', 'white', 'red', 'green', 'blue', 'cyan', 'magenta', 'yellow', 'dkGray', 'gray', 'ltGray');
-			if (substr($color,0,1) == '#') {
-				return sprintf("['RGB',%.3F,%.3F,%.3F]", hexdec(substr($color,1,2))/255, hexdec(substr($color,3,2))/255, hexdec(substr($color,5,2))/255);
-			}
-			if (!in_array($color,$aColors)) {
-				$this->Error('Invalid color: '.$color);
-			}
-			return 'color.'.$color;
-		}
-
-		/**
-		 * Adds a javascript form field.
-		 * @param string $type field type
-		 * @param string $name field name
-		 * @param int $x horizontal position
-		 * @param int $y vertical position
-		 * @param int $w width
-		 * @param int $h height
-		 * @param array $prop javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
-		 * @access protected
-		 * @author Denis Van Nuffelen, Nicola Asuni
-		 * @since 2.1.002 (2008-02-12)
-		 */
-		protected function _addfield($type, $name, $x, $y, $w, $h, $prop) {
-			if ($this->rtl) {
-				$x = $x - $w;
-			}
-			// the followind avoid fields duplication after saving the document
-			$this->javascript .= "if(getField('tcpdfdocsaved').value != 'saved') {";
-			$k = $this->k;
-			$this->javascript .= sprintf("f".$name."=this.addField('%s','%s',%d,[%.2F,%.2F,%.2F,%.2F]);", $name, $type, $this->PageNo()-1, $x*$k, ($this->h-$y)*$k+1, ($x+$w)*$k, ($this->h-$y-$h)*$k+1)."\n";
-			$this->javascript .= 'f'.$name.'.textSize='.$this->FontSizePt.";\n";
-			while (list($key, $val) = each($prop)) {
-				if (strcmp(substr($key, -5), 'Color') == 0) {
-					$val = $this->_JScolor($val);
-				} else {
-					$val = "'".$val."'";
-				}
-				$this->javascript .= 'f'.$name.'.'.$key.'='.$val.";\n";
-			}
-			if ($this->rtl) {
-				$this->x -= $w;
+	/**
+	 * Convert color to javascript color.
+	 * @param $color (string) color name or "#RRGGBB"
+	 * @protected
+	 * @author Denis Van Nuffelen, Nicola Asuni
+	 * @since 2.1.002 (2008-02-12)
+	 */
+	protected function _JScolor($color) {
+		static $aColors = array('transparent', 'black', 'white', 'red', 'green', 'blue', 'cyan', 'magenta', 'yellow', 'dkGray', 'gray', 'ltGray');
+		if (substr($color,0,1) == '#') {
+			return sprintf("['RGB',%.3F,%.3F,%.3F]", hexdec(substr($color,1,2))/255, hexdec(substr($color,3,2))/255, hexdec(substr($color,5,2))/255);
+		}
+		if (!in_array($color,$aColors)) {
+			$this->Error('Invalid color: '.$color);
+		}
+		return 'color.'.$color;
+	}
+
+	/**
+	 * Adds a javascript form field.
+	 * @param $type (string) field type
+	 * @param $name (string) field name
+	 * @param $x (int) horizontal position
+	 * @param $y (int) vertical position
+	 * @param $w (int) width
+	 * @param $h (int) height
+	 * @param $prop (array) javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
+	 * @protected
+	 * @author Denis Van Nuffelen, Nicola Asuni
+	 * @since 2.1.002 (2008-02-12)
+	 */
+	protected function _addfield($type, $name, $x, $y, $w, $h, $prop) {
+		if ($this->rtl) {
+			$x = $x - $w;
+		}
+		// the followind avoid fields duplication after saving the document
+		$this->javascript .= "if(getField('tcpdfdocsaved').value != 'saved') {";
+		$k = $this->k;
+		$this->javascript .= sprintf("f".$name."=this.addField('%s','%s',%u,[%.2F,%.2F,%.2F,%.2F]);", $name, $type, $this->PageNo()-1, $x*$k, ($this->h-$y)*$k+1, ($x+$w)*$k, ($this->h-$y-$h)*$k+1)."\n";
+		$this->javascript .= 'f'.$name.'.textSize='.$this->FontSizePt.";\n";
+		while (list($key, $val) = each($prop)) {
+			if (strcmp(substr($key, -5), 'Color') == 0) {
+				$val = $this->_JScolor($val);
 			} else {
-				$this->x += $w;
+				$val = "'".$val."'";
 			}
-			$this->javascript .= '}';
-		}
-
-		// --- FORM FIELDS -----------------------------------------------------
-
-		/**
-		 * Convert JavaScript form fields properties array to Annotation Properties array.
-		 * @param array $prop javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
-		 * @return array of annotation properties
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 4.8.000 (2009-09-06)
-		 */
-		protected function getAnnotOptFromJSProp($prop) {
-			if (isset($prop['aopt']) AND is_array($prop['aopt'])) {
-				// the annotation options area lready defined
-				return $prop['aopt'];
-			}
-			$opt = array(); // value to be returned
-			// alignment: Controls how the text is laid out within the text field.
-			if (isset($prop['alignment'])) {
-				switch ($prop['alignment']) {
-					case 'left': {
-						$opt['q'] = 0;
-						break;
-					}
-					case 'center': {
-						$opt['q'] = 1;
-						break;
-					}
-					case 'right': {
-						$opt['q'] = 2;
-						break;
-					}
-					default: {
-						$opt['q'] = ($this->rtl)?2:0;
-						break;
-					}
+			$this->javascript .= 'f'.$name.'.'.$key.'='.$val.";\n";
+		}
+		if ($this->rtl) {
+			$this->x -= $w;
+		} else {
+			$this->x += $w;
+		}
+		$this->javascript .= '}';
+	}
+
+	// --- FORM FIELDS -----------------------------------------------------
+
+	/**
+	 * Convert JavaScript form fields properties array to Annotation Properties array.
+	 * @param $prop (array) javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
+	 * @return array of annotation properties
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 4.8.000 (2009-09-06)
+	 */
+	protected function getAnnotOptFromJSProp($prop) {
+		if (isset($prop['aopt']) AND is_array($prop['aopt'])) {
+			// the annotation options area lready defined
+			return $prop['aopt'];
+		}
+		$opt = array(); // value to be returned
+		// alignment: Controls how the text is laid out within the text field.
+		if (isset($prop['alignment'])) {
+			switch ($prop['alignment']) {
+				case 'left': {
+					$opt['q'] = 0;
+					break;
 				}
-			}
-			// lineWidth: Specifies the thickness of the border when stroking the perimeter of a field's rectangle.
-			if (isset($prop['lineWidth'])) {
-				$linewidth = intval($prop['lineWidth']);
-			} else {
-				$linewidth = 1;
-			}
-			// borderStyle: The border style for a field.
-			if (isset($prop['borderStyle'])) {
-				switch ($prop['borderStyle']) {
-					case 'border.d':
-					case 'dashed': {
-						$opt['border'] = array(0, 0, $linewidth, array(3, 2));
-						$opt['bs'] = array('w'=>$linewidth, 's'=>'D', 'd'=>array(3, 2));
-						break;
-					}
-					case 'border.b':
-					case 'beveled': {
-						$opt['border'] = array(0, 0, $linewidth);
-						$opt['bs'] = array('w'=>$linewidth, 's'=>'B');
-						break;
-					}
-					case 'border.i':
-					case 'inset': {
-						$opt['border'] = array(0, 0, $linewidth);
-						$opt['bs'] = array('w'=>$linewidth, 's'=>'I');
-						break;
-					}
-					case 'border.u':
-					case 'underline': {
-						$opt['border'] = array(0, 0, $linewidth);
-						$opt['bs'] = array('w'=>$linewidth, 's'=>'U');
-						break;
-					}
-					default:
-					case 'border.s':
-					case 'solid': {
-						$opt['border'] = array(0, 0, $linewidth);
-						$opt['bs'] = array('w'=>$linewidth, 's'=>'S');
-						break;
-					}
+				case 'center': {
+					$opt['q'] = 1;
+					break;
 				}
-			}
-			if (isset($prop['border']) AND is_array($prop['border'])) {
-				$opt['border'] = $prop['border'];
-			}
-			if (!isset($opt['mk'])) {
-				$opt['mk'] = array();
-			}
-			if (!isset($opt['mk']['if'])) {
-				$opt['mk']['if'] = array();
-			}
-			$opt['mk']['if']['a'] = array(0.5, 0.5);
-			// buttonAlignX: Controls how space is distributed from the left of the button face with respect to the icon.
-			if (isset($prop['buttonAlignX'])) {
-				$opt['mk']['if']['a'][0] = $prop['buttonAlignX'];
-			}
-			// buttonAlignY: Controls how unused space is distributed from the bottom of the button face with respect to the icon.
-			if (isset($prop['buttonAlignY'])) {
-				$opt['mk']['if']['a'][1] = $prop['buttonAlignY'];
-			}
-			// buttonFitBounds: If true, the extent to which the icon may be scaled is set to the bounds of the button field.
-			if (isset($prop['buttonFitBounds']) AND ($prop['buttonFitBounds'] == 'true')) {
-				$opt['mk']['if']['fb'] = true;
-			}
-			// buttonScaleHow: Controls how the icon is scaled (if necessary) to fit inside the button face.
-			if (isset($prop['buttonScaleHow'])) {
-				switch ($prop['buttonScaleHow']) {
-					case 'scaleHow.proportional': {
-						$opt['mk']['if']['s'] = 'P';
-						break;
-					}
-					case 'scaleHow.anamorphic': {
-						$opt['mk']['if']['s'] = 'A';
-						break;
-					}
+				case 'right': {
+					$opt['q'] = 2;
+					break;
+				}
+				default: {
+					$opt['q'] = ($this->rtl)?2:0;
+					break;
 				}
 			}
-			// buttonScaleWhen: Controls when an icon is scaled to fit inside the button face.
-			if (isset($prop['buttonScaleWhen'])) {
-				switch ($prop['buttonScaleWhen']) {
-					case 'scaleWhen.always': {
-						$opt['mk']['if']['sw'] = 'A';
-						break;
-					}
-					case 'scaleWhen.never': {
-						$opt['mk']['if']['sw'] = 'N';
-						break;
-					}
-					case 'scaleWhen.tooBig': {
-						$opt['mk']['if']['sw'] = 'B';
-						break;
-					}
-					case 'scaleWhen.tooSmall': {
-						$opt['mk']['if']['sw'] = 'S';
-						break;
-					}
+		}
+		// lineWidth: Specifies the thickness of the border when stroking the perimeter of a field's rectangle.
+		if (isset($prop['lineWidth'])) {
+			$linewidth = intval($prop['lineWidth']);
+		} else {
+			$linewidth = 1;
+		}
+		// borderStyle: The border style for a field.
+		if (isset($prop['borderStyle'])) {
+			switch ($prop['borderStyle']) {
+				case 'border.d':
+				case 'dashed': {
+					$opt['border'] = array(0, 0, $linewidth, array(3, 2));
+					$opt['bs'] = array('w'=>$linewidth, 's'=>'D', 'd'=>array(3, 2));
+					break;
+				}
+				case 'border.b':
+				case 'beveled': {
+					$opt['border'] = array(0, 0, $linewidth);
+					$opt['bs'] = array('w'=>$linewidth, 's'=>'B');
+					break;
+				}
+				case 'border.i':
+				case 'inset': {
+					$opt['border'] = array(0, 0, $linewidth);
+					$opt['bs'] = array('w'=>$linewidth, 's'=>'I');
+					break;
+				}
+				case 'border.u':
+				case 'underline': {
+					$opt['border'] = array(0, 0, $linewidth);
+					$opt['bs'] = array('w'=>$linewidth, 's'=>'U');
+					break;
+				}
+				default:
+				case 'border.s':
+				case 'solid': {
+					$opt['border'] = array(0, 0, $linewidth);
+					$opt['bs'] = array('w'=>$linewidth, 's'=>'S');
+					break;
 				}
 			}
-			// buttonPosition: Controls how the text and the icon of the button are positioned with respect to each other within the button face.
-			if (isset($prop['buttonPosition'])) {
-				switch ($prop['buttonPosition']) {
-					case 0:
-					case 'position.textOnly': {
-						$opt['mk']['tp'] = 0;
-						break;
-					}
-					case 1:
-					case 'position.iconOnly': {
-						$opt['mk']['tp'] = 1;
-						break;
-					}
-					case 2:
-					case 'position.iconTextV': {
-						$opt['mk']['tp'] = 2;
-						break;
-					}
-					case 3:
-					case 'position.textIconV': {
-						$opt['mk']['tp'] = 3;
-						break;
-					}
-					case 4:
-					case 'position.iconTextH': {
-						$opt['mk']['tp'] = 4;
-						break;
-					}
-					case 5:
-					case 'position.textIconH': {
-						$opt['mk']['tp'] = 5;
-						break;
-					}
-					case 6:
-					case 'position.overlay': {
-						$opt['mk']['tp'] = 6;
-						break;
-					}
+		}
+		if (isset($prop['border']) AND is_array($prop['border'])) {
+			$opt['border'] = $prop['border'];
+		}
+		if (!isset($opt['mk'])) {
+			$opt['mk'] = array();
+		}
+		if (!isset($opt['mk']['if'])) {
+			$opt['mk']['if'] = array();
+		}
+		$opt['mk']['if']['a'] = array(0.5, 0.5);
+		// buttonAlignX: Controls how space is distributed from the left of the button face with respect to the icon.
+		if (isset($prop['buttonAlignX'])) {
+			$opt['mk']['if']['a'][0] = $prop['buttonAlignX'];
+		}
+		// buttonAlignY: Controls how unused space is distributed from the bottom of the button face with respect to the icon.
+		if (isset($prop['buttonAlignY'])) {
+			$opt['mk']['if']['a'][1] = $prop['buttonAlignY'];
+		}
+		// buttonFitBounds: If true, the extent to which the icon may be scaled is set to the bounds of the button field.
+		if (isset($prop['buttonFitBounds']) AND ($prop['buttonFitBounds'] == 'true')) {
+			$opt['mk']['if']['fb'] = true;
+		}
+		// buttonScaleHow: Controls how the icon is scaled (if necessary) to fit inside the button face.
+		if (isset($prop['buttonScaleHow'])) {
+			switch ($prop['buttonScaleHow']) {
+				case 'scaleHow.proportional': {
+					$opt['mk']['if']['s'] = 'P';
+					break;
 				}
-			}
-			// fillColor: Specifies the background color for a field.
-			if (isset($prop['fillColor'])) {
-				if (is_array($prop['fillColor'])) {
-					$opt['mk']['bg'] = $prop['fillColor'];
-				} else {
-					$opt['mk']['bg'] = $this->convertHTMLColorToDec($prop['fillColor']);
+				case 'scaleHow.anamorphic': {
+					$opt['mk']['if']['s'] = 'A';
+					break;
 				}
 			}
-			// strokeColor: Specifies the stroke color for a field that is used to stroke the rectangle of the field with a line as large as the line width.
-			if (isset($prop['strokeColor'])) {
-				if (is_array($prop['strokeColor'])) {
-					$opt['mk']['bc'] = $prop['strokeColor'];
-				} else {
-					$opt['mk']['bc'] = $this->convertHTMLColorToDec($prop['strokeColor']);
+		}
+		// buttonScaleWhen: Controls when an icon is scaled to fit inside the button face.
+		if (isset($prop['buttonScaleWhen'])) {
+			switch ($prop['buttonScaleWhen']) {
+				case 'scaleWhen.always': {
+					$opt['mk']['if']['sw'] = 'A';
+					break;
 				}
-			}
-			// rotation: The rotation of a widget in counterclockwise increments.
-			if (isset($prop['rotation'])) {
-				$opt['mk']['r'] = $prop['rotation'];
-			}
-			// charLimit: Limits the number of characters that a user can type into a text field.
-			if (isset($prop['charLimit'])) {
-				$opt['maxlen'] = intval($prop['charLimit']);
-			}
-			if (!isset($ff)) {
-				$ff = 0;
-			}
-			// readonly: The read-only characteristic of a field. If a field is read-only, the user can see the field but cannot change it.
-			if (isset($prop['readonly']) AND ($prop['readonly'] == 'true')) {
-				$ff += 1 << 0;
-			}
-			// required: Specifies whether a field requires a value.
-			if (isset($prop['required']) AND ($prop['required'] == 'true')) {
-				$ff += 1 << 1;
-			}
-			// multiline: Controls how text is wrapped within the field.
-			if (isset($prop['multiline']) AND ($prop['multiline'] == 'true')) {
-				$ff += 1 << 12;
-			}
-			// password: Specifies whether the field should display asterisks when data is entered in the field.
-			if (isset($prop['password']) AND ($prop['password'] == 'true')) {
-				$ff += 1 << 13;
-			}
-			// NoToggleToOff: If set, exactly one radio button shall be selected at all times; selecting the currently selected button has no effect.
-			if (isset($prop['NoToggleToOff']) AND ($prop['NoToggleToOff'] == 'true')) {
-				$ff += 1 << 14;
-			}
-			// Radio: If set, the field is a set of radio buttons.
-			if (isset($prop['Radio']) AND ($prop['Radio'] == 'true')) {
-				$ff += 1 << 15;
-			}
-			// Pushbutton: If set, the field is a pushbutton that does not retain a permanent value.
-			if (isset($prop['Pushbutton']) AND ($prop['Pushbutton'] == 'true')) {
-				$ff += 1 << 16;
-			}
-			// Combo: If set, the field is a combo box; if clear, the field is a list box.
-			if (isset($prop['Combo']) AND ($prop['Combo'] == 'true')) {
-				$ff += 1 << 17;
-			}
-			// editable: Controls whether a combo box is editable.
-			if (isset($prop['editable']) AND ($prop['editable'] == 'true')) {
-				$ff += 1 << 18;
-			}
-			// Sort: If set, the field's option items shall be sorted alphabetically.
-			if (isset($prop['Sort']) AND ($prop['Sort'] == 'true')) {
-				$ff += 1 << 19;
-			}
-			// fileSelect: If true, sets the file-select flag in the Options tab of the text field (Field is Used for File Selection).
-			if (isset($prop['fileSelect']) AND ($prop['fileSelect'] == 'true')) {
-				$ff += 1 << 20;
-			}
-			// multipleSelection: If true, indicates that a list box allows a multiple selection of items.
-			if (isset($prop['multipleSelection']) AND ($prop['multipleSelection'] == 'true')) {
-				$ff += 1 << 21;
-			}
-			// doNotSpellCheck: If true, spell checking is not performed on this editable text field.
-			if (isset($prop['doNotSpellCheck']) AND ($prop['doNotSpellCheck'] == 'true')) {
-				$ff += 1 << 22;
-			}
-			// doNotScroll: If true, the text field does not scroll and the user, therefore, is limited by the rectangular region designed for the field.
-			if (isset($prop['doNotScroll']) AND ($prop['doNotScroll'] == 'true')) {
-				$ff += 1 << 23;
-			}
-			// comb: If set to true, the field background is drawn as series of boxes (one for each character in the value of the field) and each character of the content is drawn within those boxes. The number of boxes drawn is determined from the charLimit property. It applies only to text fields. The setter will also raise if any of the following field properties are also set multiline, password, and fileSelect. A side-effect of setting this property is that the doNotScroll property is also set.
-			if (isset($prop['comb']) AND ($prop['comb'] == 'true')) {
-				$ff += 1 << 24;
-			}
-			// radiosInUnison: If false, even if a group of radio buttons have the same name and export value, they behave in a mutually exclusive fashion, like HTML radio buttons.
-			if (isset($prop['radiosInUnison']) AND ($prop['radiosInUnison'] == 'true')) {
-				$ff += 1 << 25;
-			}
-			// richText: If true, the field allows rich text formatting.
-			if (isset($prop['richText']) AND ($prop['richText'] == 'true')) {
-				$ff += 1 << 25;
-			}
-			// commitOnSelChange: Controls whether a field value is committed after a selection change.
-			if (isset($prop['commitOnSelChange']) AND ($prop['commitOnSelChange'] == 'true')) {
-				$ff += 1 << 26;
-			}
-			$opt['ff'] = $ff;
-			// defaultValue: The default value of a field - that is, the value that the field is set to when the form is reset.
-			if (isset($prop['defaultValue'])) {
-				$opt['dv'] = $prop['defaultValue'];
-			}
-			$f = 4; // default value for annotation flags
-			// readonly: The read-only characteristic of a field. If a field is read-only, the user can see the field but cannot change it.
-			if (isset($prop['readonly']) AND ($prop['readonly'] == 'true')) {
-				$f += 1 << 6;
-			}
-			// display: Controls whether the field is hidden or visible on screen and in print.
-			if (isset($prop['display'])) {
-				if ($prop['display'] == 'display.visible') {
-					//
-				} elseif ($prop['display'] == 'display.hidden') {
-					$f += 1 << 1;
-				} elseif ($prop['display'] == 'display.noPrint') {
-					$f -= 1 << 2;
-				} elseif ($prop['display'] == 'display.noView') {
-					$f += 1 << 5;
-				}
-			}
-			$opt['f'] = $f;
-			// currentValueIndices: Reads and writes single or multiple values of a list box or combo box.
-			if (isset($prop['currentValueIndices']) AND is_array($prop['currentValueIndices'])) {
-				$opt['i'] = $prop['currentValueIndices'];
-			}
-			// value: The value of the field data that the user has entered.
-			if (isset($prop['value'])) {
-				if (is_array($prop['value'])) {
-					$opt['opt'] = array();
-					foreach ($prop['value'] AS $key => $optval) {
-						// exportValues: An array of strings representing the export values for the field.
-						if (isset($prop['exportValues'][$key])) {
-							$opt['opt'][$key] = array($prop['exportValues'][$key], $prop['value'][$key]);
-						} else {
-							$opt['opt'][$key] = $prop['value'][$key];
-						}
-					}
-				} else {
-					$opt['v'] = $prop['value'];
+				case 'scaleWhen.never': {
+					$opt['mk']['if']['sw'] = 'N';
+					break;
 				}
-			}
-			// richValue: This property specifies the text contents and formatting of a rich text field.
-			if (isset($prop['richValue'])) {
-				$opt['rv'] = $prop['richValue'];
-			}
-			// submitName: If nonempty, used during form submission instead of name. Only applicable if submitting in HTML format (that is, URL-encoded).
-			if (isset($prop['submitName'])) {
-				$opt['tm'] = $prop['submitName'];
-			}
-			// name: Fully qualified field name.
-			if (isset($prop['name'])) {
-				$opt['t'] = $prop['name'];
-			}
-			// userName: The user name (short description string) of the field.
-			if (isset($prop['userName'])) {
-				$opt['tu'] = $prop['userName'];
-			}
-			// highlight: Defines how a button reacts when a user clicks it.
-			if (isset($prop['highlight'])) {
-				switch ($prop['highlight']) {
-					case 'none':
-					case 'highlight.n': {
-						$opt['h'] = 'N';
-						break;
-					}
-					case 'invert':
-					case 'highlight.i': {
-						$opt['h'] = 'i';
-						break;
-					}
-					case 'push':
-					case 'highlight.p': {
-						$opt['h'] = 'P';
-						break;
-					}
-					case 'outline':
-					case 'highlight.o': {
-						$opt['h'] = 'O';
-						break;
-					}
+				case 'scaleWhen.tooBig': {
+					$opt['mk']['if']['sw'] = 'B';
+					break;
+				}
+				case 'scaleWhen.tooSmall': {
+					$opt['mk']['if']['sw'] = 'S';
+					break;
 				}
-			}
-			// Unsupported options:
-			// - calcOrderIndex: Changes the calculation order of fields in the document.
-			// - delay: Delays the redrawing of a field's appearance.
-			// - defaultStyle: This property defines the default style attributes for the form field.
-			// - style: Allows the user to set the glyph style of a check box or radio button.
-			// - textColor, textFont, textSize
-			return $opt;
-		}
-
-		/**
-		 * Set default properties for form fields.
-		 * @param array $prop javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 4.8.000 (2009-09-06)
-		 */
-		public function setFormDefaultProp($prop=array()) {
-			$this->default_form_prop = $prop;
-		}
-
-		/**
-		 * Return the default properties for form fields.
-		 * @return array $prop javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 4.8.000 (2009-09-06)
-		 */
-		public function getFormDefaultProp() {
-			return $this->default_form_prop;
-		}
-
-		/**
-		 * Creates a text field
-		 * @param string $name field name
-		 * @param float $w Width of the rectangle
-		 * @param float $h Height of the rectangle
-		 * @param array $prop javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
-		 * @param array $opt annotation parameters. Possible values are described on official PDF32000_2008 reference.
-		 * @param float $x Abscissa of the upper-left corner of the rectangle
-		 * @param float $y Ordinate of the upper-left corner of the rectangle
-		 * @param boolean $js if true put the field using JavaScript (requires Acrobat Writer to be rendered).
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		public function TextField($name, $w, $h, $prop=array(), $opt=array(), $x='', $y='', $js=false) {
-			if ($x === '') {
-				$x = $this->x;
-			}
-			if ($y === '') {
-				$y = $this->y;
-			}
-			if ($js) {
-				$this->_addfield('text', $name, $x, $y, $w, $h, $prop);
-				return;
-			}
-			// get default style
-			$prop = array_merge($this->getFormDefaultProp(), $prop);
-			// get annotation data
-			$popt = $this->getAnnotOptFromJSProp($prop);
-			// set default appearance stream
-			$font = $this->FontFamily;
-			$fontkey = array_search($font, $this->fontkeys);
-			if (!in_array($fontkey, $this->annotation_fonts)) {
-				$this->annotation_fonts[$font] = $fontkey;
-			}
-			$fontstyle = sprintf('/F%d %.2F Tf %s', ($fontkey + 1), $this->FontSizePt, $this->TextColor);
-			$popt['da'] = $fontstyle;
-			$popt['ap'] = array();
-			$popt['ap']['n'] = 'q BT '.$fontstyle.' ET Q';
-			// merge options
-			$opt = array_merge($popt, $opt);
-			// remove some conflicting options
-			unset($opt['bs']);
-			// set remaining annotation data
-			$opt['Subtype'] = 'Widget';
-			$opt['ft'] = 'Tx';
-			$opt['t'] = $name;
-			/*
-			Additional annotation's parameters (check _putannotsobj() method):
-			//$opt['f']
-			//$opt['ap']
-			//$opt['as']
-			//$opt['bs']
-			//$opt['be']
-			//$opt['c']
-			//$opt['border']
-			//$opt['h']
-			//$opt['mk']
-			//$opt['mk']['r']
-			//$opt['mk']['bc']
-			//$opt['mk']['bg']
-			//$opt['mk']['ca']
-			//$opt['mk']['rc']
-			//$opt['mk']['ac']
-			//$opt['mk']['i']
-			//$opt['mk']['ri']
-			//$opt['mk']['ix']
-			//$opt['mk']['if']
-			//$opt['mk']['if']['sw']
-			//$opt['mk']['if']['s']
-			//$opt['mk']['if']['a']
-			//$opt['mk']['if']['fb']
-			//$opt['mk']['tp']
-			//$opt['tu']
-			//$opt['tm']
-			//$opt['ff']
-			//$opt['v']
-			//$opt['dv']
-			//$opt['a']
-			//$opt['aa']
-			//$opt['q']
-			*/
-			$this->Annotation($x, $y, $w, $h, $name, $opt, 0);
-			if ($this->rtl) {
-				$this->x -= $w;
-			} else {
-				$this->x += $w;
 			}
 		}
-
-		/**
-		 * Creates a RadioButton field
-		 * @param string $name field name
-		 * @param int $w width
-		 * @param array $prop javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
-		 * @param array $opt annotation parameters. Possible values are described on official PDF32000_2008 reference.
-		 * @param string $onvalue value to be returned if selected.
-		 * @param boolean $checked define the initial state.
-		 * @param float $x Abscissa of the upper-left corner of the rectangle
-		 * @param float $y Ordinate of the upper-left corner of the rectangle
-		 * @param boolean $js if true put the field using JavaScript (requires Acrobat Writer to be rendered).
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		public function RadioButton($name, $w, $prop=array(), $opt=array(), $onvalue='On', $checked=false, $x='', $y='', $js=false) {
-			if ($x === '') {
-				$x = $this->x;
-			}
-			if ($y === '') {
-				$y = $this->y;
-			}
-			if ($js) {
-				$this->_addfield('radiobutton', $name, $x, $y, $w, $w, $prop);
-				return;
-			}
-			if ($this->empty_string($onvalue)) {
-				$onvalue = 'On';
+		// buttonPosition: Controls how the text and the icon of the button are positioned with respect to each other within the button face.
+		if (isset($prop['buttonPosition'])) {
+			switch ($prop['buttonPosition']) {
+				case 0:
+				case 'position.textOnly': {
+					$opt['mk']['tp'] = 0;
+					break;
+				}
+				case 1:
+				case 'position.iconOnly': {
+					$opt['mk']['tp'] = 1;
+					break;
+				}
+				case 2:
+				case 'position.iconTextV': {
+					$opt['mk']['tp'] = 2;
+					break;
+				}
+				case 3:
+				case 'position.textIconV': {
+					$opt['mk']['tp'] = 3;
+					break;
+				}
+				case 4:
+				case 'position.iconTextH': {
+					$opt['mk']['tp'] = 4;
+					break;
+				}
+				case 5:
+				case 'position.textIconH': {
+					$opt['mk']['tp'] = 5;
+					break;
+				}
+				case 6:
+				case 'position.overlay': {
+					$opt['mk']['tp'] = 6;
+					break;
+				}
 			}
-			if ($checked) {
-				$defval = $onvalue;
-			} else {
-				$defval = 'Off';
-			}
-			// set data for parent group
-			if (!isset($this->radiobutton_groups[$this->page])) {
-				$this->radiobutton_groups[$this->page] = array();
-			}
-			if (!isset($this->radiobutton_groups[$this->page][$name])) {
-				$this->radiobutton_groups[$this->page][$name] = array();
-				++$this->annot_obj_id;
-				$this->radio_groups[] = $this->annot_obj_id;
-			}
-			// save object ID to be added on Kids entry on parent object
-			$this->radiobutton_groups[$this->page][$name][] = array('kid' => ($this->annot_obj_id + 1), 'def' => $defval);
-			// get default style
-			$prop = array_merge($this->getFormDefaultProp(), $prop);
-			$prop['NoToggleToOff'] = 'true';
-			$prop['Radio'] = 'true';
-			$prop['borderStyle'] = 'inset';
-			// get annotation data
-			$popt = $this->getAnnotOptFromJSProp($prop);
-			// set additional default values
-			$font = 'zapfdingbats';
-			$this->AddFont($font);
-			$fontkey = array_search($font, $this->fontkeys);
-			if (!in_array($fontkey, $this->annotation_fonts)) {
-				$this->annotation_fonts[$font] = $fontkey;
-			}
-			$fontstyle = sprintf('/F%d %.2F Tf %s', ($fontkey + 1), $this->FontSizePt, $this->TextColor);
-			$popt['da'] = $fontstyle;
-			$popt['ap'] = array();
-			$popt['ap']['n'] = array();
-			$popt['ap']['n'][$onvalue] = 'q BT '.$fontstyle.' 0 0 Td (8) Tj ET Q';
-			$popt['ap']['n']['Off'] = 'q BT '.$fontstyle.' 0 0 Td (8) Tj ET Q';
-			if (!isset($popt['mk'])) {
-				$popt['mk'] = array();
-			}
-			$popt['mk']['ca'] = '(l)';
-			// merge options
-			$opt = array_merge($popt, $opt);
-			// set remaining annotation data
-			$opt['Subtype'] = 'Widget';
-			$opt['ft'] = 'Btn';
-			if ($checked) {
-				$opt['v'] = array('/'.$onvalue);
-				$opt['as'] = $onvalue;
+		}
+		// fillColor: Specifies the background color for a field.
+		if (isset($prop['fillColor'])) {
+			if (is_array($prop['fillColor'])) {
+				$opt['mk']['bg'] = $prop['fillColor'];
 			} else {
-				$opt['as'] = 'Off';
+				$opt['mk']['bg'] = $this->convertHTMLColorToDec($prop['fillColor']);
 			}
-			$this->Annotation($x, $y, $w, $w, $name, $opt, 0);
-			if ($this->rtl) {
-				$this->x -= $w;
+		}
+		// strokeColor: Specifies the stroke color for a field that is used to stroke the rectangle of the field with a line as large as the line width.
+		if (isset($prop['strokeColor'])) {
+			if (is_array($prop['strokeColor'])) {
+				$opt['mk']['bc'] = $prop['strokeColor'];
 			} else {
-				$this->x += $w;
+				$opt['mk']['bc'] = $this->convertHTMLColorToDec($prop['strokeColor']);
 			}
 		}
-
-		/**
-		 * Creates a List-box field
-		 * @param string $name field name
-		 * @param int $w width
-		 * @param int $h height
-		 * @param array $values array containing the list of values.
-		 * @param array $prop javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
-		 * @param array $opt annotation parameters. Possible values are described on official PDF32000_2008 reference.
-		 * @param float $x Abscissa of the upper-left corner of the rectangle
-		 * @param float $y Ordinate of the upper-left corner of the rectangle
-		 * @param boolean $js if true put the field using JavaScript (requires Acrobat Writer to be rendered).
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		public function ListBox($name, $w, $h, $values, $prop=array(), $opt=array(), $x='', $y='', $js=false) {
-			if ($x === '') {
-				$x = $this->x;
-			}
-			if ($y === '') {
-				$y = $this->y;
-			}
-			if ($js) {
-				$this->_addfield('listbox', $name, $x, $y, $w, $h, $prop);
-				$s = '';
-				foreach ($values as $value) {
-					$s .= "'".addslashes($value)."',";
+		// rotation: The rotation of a widget in counterclockwise increments.
+		if (isset($prop['rotation'])) {
+			$opt['mk']['r'] = $prop['rotation'];
+		}
+		// charLimit: Limits the number of characters that a user can type into a text field.
+		if (isset($prop['charLimit'])) {
+			$opt['maxlen'] = intval($prop['charLimit']);
+		}
+		if (!isset($ff)) {
+			$ff = 0;
+		}
+		// readonly: The read-only characteristic of a field. If a field is read-only, the user can see the field but cannot change it.
+		if (isset($prop['readonly']) AND ($prop['readonly'] == 'true')) {
+			$ff += 1 << 0;
+		}
+		// required: Specifies whether a field requires a value.
+		if (isset($prop['required']) AND ($prop['required'] == 'true')) {
+			$ff += 1 << 1;
+		}
+		// multiline: Controls how text is wrapped within the field.
+		if (isset($prop['multiline']) AND ($prop['multiline'] == 'true')) {
+			$ff += 1 << 12;
+		}
+		// password: Specifies whether the field should display asterisks when data is entered in the field.
+		if (isset($prop['password']) AND ($prop['password'] == 'true')) {
+			$ff += 1 << 13;
+		}
+		// NoToggleToOff: If set, exactly one radio button shall be selected at all times; selecting the currently selected button has no effect.
+		if (isset($prop['NoToggleToOff']) AND ($prop['NoToggleToOff'] == 'true')) {
+			$ff += 1 << 14;
+		}
+		// Radio: If set, the field is a set of radio buttons.
+		if (isset($prop['Radio']) AND ($prop['Radio'] == 'true')) {
+			$ff += 1 << 15;
+		}
+		// Pushbutton: If set, the field is a pushbutton that does not retain a permanent value.
+		if (isset($prop['Pushbutton']) AND ($prop['Pushbutton'] == 'true')) {
+			$ff += 1 << 16;
+		}
+		// Combo: If set, the field is a combo box; if clear, the field is a list box.
+		if (isset($prop['Combo']) AND ($prop['Combo'] == 'true')) {
+			$ff += 1 << 17;
+		}
+		// editable: Controls whether a combo box is editable.
+		if (isset($prop['editable']) AND ($prop['editable'] == 'true')) {
+			$ff += 1 << 18;
+		}
+		// Sort: If set, the field's option items shall be sorted alphabetically.
+		if (isset($prop['Sort']) AND ($prop['Sort'] == 'true')) {
+			$ff += 1 << 19;
+		}
+		// fileSelect: If true, sets the file-select flag in the Options tab of the text field (Field is Used for File Selection).
+		if (isset($prop['fileSelect']) AND ($prop['fileSelect'] == 'true')) {
+			$ff += 1 << 20;
+		}
+		// multipleSelection: If true, indicates that a list box allows a multiple selection of items.
+		if (isset($prop['multipleSelection']) AND ($prop['multipleSelection'] == 'true')) {
+			$ff += 1 << 21;
+		}
+		// doNotSpellCheck: If true, spell checking is not performed on this editable text field.
+		if (isset($prop['doNotSpellCheck']) AND ($prop['doNotSpellCheck'] == 'true')) {
+			$ff += 1 << 22;
+		}
+		// doNotScroll: If true, the text field does not scroll and the user, therefore, is limited by the rectangular region designed for the field.
+		if (isset($prop['doNotScroll']) AND ($prop['doNotScroll'] == 'true')) {
+			$ff += 1 << 23;
+		}
+		// comb: If set to true, the field background is drawn as series of boxes (one for each character in the value of the field) and each character of the content is drawn within those boxes. The number of boxes drawn is determined from the charLimit property. It applies only to text fields. The setter will also raise if any of the following field properties are also set multiline, password, and fileSelect. A side-effect of setting this property is that the doNotScroll property is also set.
+		if (isset($prop['comb']) AND ($prop['comb'] == 'true')) {
+			$ff += 1 << 24;
+		}
+		// radiosInUnison: If false, even if a group of radio buttons have the same name and export value, they behave in a mutually exclusive fashion, like HTML radio buttons.
+		if (isset($prop['radiosInUnison']) AND ($prop['radiosInUnison'] == 'true')) {
+			$ff += 1 << 25;
+		}
+		// richText: If true, the field allows rich text formatting.
+		if (isset($prop['richText']) AND ($prop['richText'] == 'true')) {
+			$ff += 1 << 25;
+		}
+		// commitOnSelChange: Controls whether a field value is committed after a selection change.
+		if (isset($prop['commitOnSelChange']) AND ($prop['commitOnSelChange'] == 'true')) {
+			$ff += 1 << 26;
+		}
+		$opt['ff'] = $ff;
+		// defaultValue: The default value of a field - that is, the value that the field is set to when the form is reset.
+		if (isset($prop['defaultValue'])) {
+			$opt['dv'] = $prop['defaultValue'];
+		}
+		$f = 4; // default value for annotation flags
+		// readonly: The read-only characteristic of a field. If a field is read-only, the user can see the field but cannot change it.
+		if (isset($prop['readonly']) AND ($prop['readonly'] == 'true')) {
+			$f += 1 << 6;
+		}
+		// display: Controls whether the field is hidden or visible on screen and in print.
+		if (isset($prop['display'])) {
+			if ($prop['display'] == 'display.visible') {
+				//
+			} elseif ($prop['display'] == 'display.hidden') {
+				$f += 1 << 1;
+			} elseif ($prop['display'] == 'display.noPrint') {
+				$f -= 1 << 2;
+			} elseif ($prop['display'] == 'display.noView') {
+				$f += 1 << 5;
+			}
+		}
+		$opt['f'] = $f;
+		// currentValueIndices: Reads and writes single or multiple values of a list box or combo box.
+		if (isset($prop['currentValueIndices']) AND is_array($prop['currentValueIndices'])) {
+			$opt['i'] = $prop['currentValueIndices'];
+		}
+		// value: The value of the field data that the user has entered.
+		if (isset($prop['value'])) {
+			if (is_array($prop['value'])) {
+				$opt['opt'] = array();
+				foreach ($prop['value'] AS $key => $optval) {
+					// exportValues: An array of strings representing the export values for the field.
+					if (isset($prop['exportValues'][$key])) {
+						$opt['opt'][$key] = array($prop['exportValues'][$key], $prop['value'][$key]);
+					} else {
+						$opt['opt'][$key] = $prop['value'][$key];
+					}
 				}
-				$this->javascript .= 'f'.$name.'.setItems(['.substr($s, 0, -1)."]);\n";
-				return;
-			}
-			// get default style
-			$prop = array_merge($this->getFormDefaultProp(), $prop);
-			// get annotation data
-			$popt = $this->getAnnotOptFromJSProp($prop);
-			// set additional default values
-			$font = $this->FontFamily;
-			$fontkey = array_search($font, $this->fontkeys);
-			if (!in_array($fontkey, $this->annotation_fonts)) {
-				$this->annotation_fonts[$font] = $fontkey;
-			}
-			$fontstyle = sprintf('/F%d %.2F Tf %s', ($fontkey + 1), $this->FontSizePt, $this->TextColor);
-			$popt['da'] = $fontstyle;
-			$popt['ap'] = array();
-			$popt['ap']['n'] = 'q BT '.$fontstyle.' ET Q';
-			// merge options
-			$opt = array_merge($popt, $opt);
-			// set remaining annotation data
-			$opt['Subtype'] = 'Widget';
-			$opt['ft'] = 'Ch';
-			$opt['t'] = $name;
-			$opt['opt'] = $values;
-			$this->Annotation($x, $y, $w, $h, $name, $opt, 0);
-			if ($this->rtl) {
-				$this->x -= $w;
 			} else {
-				$this->x += $w;
+				$opt['v'] = $prop['value'];
 			}
 		}
-
-		/**
-		 * Creates a Combo-box field
-		 * @param string $name field name
-		 * @param int $w width
-		 * @param int $h height
-		 * @param array $values array containing the list of values.
-		 * @param array $prop javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
-		 * @param array $opt annotation parameters. Possible values are described on official PDF32000_2008 reference.
-		 * @param float $x Abscissa of the upper-left corner of the rectangle
-		 * @param float $y Ordinate of the upper-left corner of the rectangle
-		 * @param boolean $js if true put the field using JavaScript (requires Acrobat Writer to be rendered).
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		public function ComboBox($name, $w, $h, $values, $prop=array(), $opt=array(), $x='', $y='', $js=false) {
-			if ($x === '') {
-				$x = $this->x;
-			}
-			if ($y === '') {
-				$y = $this->y;
-			}
-			if ($js) {
-				$this->_addfield('combobox', $name, $x, $y, $w, $h, $prop);
-				$s = '';
-				foreach ($values as $value) {
-					$s .= "'".addslashes($value)."',";
+		// richValue: This property specifies the text contents and formatting of a rich text field.
+		if (isset($prop['richValue'])) {
+			$opt['rv'] = $prop['richValue'];
+		}
+		// submitName: If nonempty, used during form submission instead of name. Only applicable if submitting in HTML format (that is, URL-encoded).
+		if (isset($prop['submitName'])) {
+			$opt['tm'] = $prop['submitName'];
+		}
+		// name: Fully qualified field name.
+		if (isset($prop['name'])) {
+			$opt['t'] = $prop['name'];
+		}
+		// userName: The user name (short description string) of the field.
+		if (isset($prop['userName'])) {
+			$opt['tu'] = $prop['userName'];
+		}
+		// highlight: Defines how a button reacts when a user clicks it.
+		if (isset($prop['highlight'])) {
+			switch ($prop['highlight']) {
+				case 'none':
+				case 'highlight.n': {
+					$opt['h'] = 'N';
+					break;
+				}
+				case 'invert':
+				case 'highlight.i': {
+					$opt['h'] = 'i';
+					break;
+				}
+				case 'push':
+				case 'highlight.p': {
+					$opt['h'] = 'P';
+					break;
+				}
+				case 'outline':
+				case 'highlight.o': {
+					$opt['h'] = 'O';
+					break;
 				}
-				$this->javascript .= 'f'.$name.'.setItems(['.substr($s, 0, -1)."]);\n";
-				return;
-			}
-			// get default style
-			$prop = array_merge($this->getFormDefaultProp(), $prop);
-			$prop['Combo'] = true;
-			// get annotation data
-			$popt = $this->getAnnotOptFromJSProp($prop);
-			// set additional default options
-			$font = $this->FontFamily;
-			$fontkey = array_search($font, $this->fontkeys);
-			if (!in_array($fontkey, $this->annotation_fonts)) {
-				$this->annotation_fonts[$font] = $fontkey;
-			}
-			$fontstyle = sprintf('/F%d %.2F Tf %s', ($fontkey + 1), $this->FontSizePt, $this->TextColor);
-			$popt['da'] = $fontstyle;
-			$popt['ap'] = array();
-			$popt['ap']['n'] = 'q BT '.$fontstyle.' ET Q';
-			// merge options
-			$opt = array_merge($popt, $opt);
-			// set remaining annotation data
-			$opt['Subtype'] = 'Widget';
-			$opt['ft'] = 'Ch';
-			$opt['t'] = $name;
-			$opt['opt'] = $values;
-			$this->Annotation($x, $y, $w, $h, $name, $opt, 0);
-			if ($this->rtl) {
-				$this->x -= $w;
-			} else {
-				$this->x += $w;
 			}
 		}
+		// Unsupported options:
+		// - calcOrderIndex: Changes the calculation order of fields in the document.
+		// - delay: Delays the redrawing of a field's appearance.
+		// - defaultStyle: This property defines the default style attributes for the form field.
+		// - style: Allows the user to set the glyph style of a check box or radio button.
+		// - textColor, textFont, textSize
+		return $opt;
+	}
 
-		/**
-		 * Creates a CheckBox field
-		 * @param string $name field name
-		 * @param int $w width
-		 * @param boolean $checked define the initial state.
-		 * @param array $prop javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
-		 * @param array $opt annotation parameters. Possible values are described on official PDF32000_2008 reference.
-		 * @param string $onvalue value to be returned if selected.
-		 * @param float $x Abscissa of the upper-left corner of the rectangle
-		 * @param float $y Ordinate of the upper-left corner of the rectangle
-		 * @param boolean $js if true put the field using JavaScript (requires Acrobat Writer to be rendered).
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		public function CheckBox($name, $w, $checked=false, $prop=array(), $opt=array(), $onvalue='Yes', $x='', $y='', $js=false) {
-			if ($x === '') {
-				$x = $this->x;
-			}
-			if ($y === '') {
-				$y = $this->y;
-			}
-			if ($js) {
-				$this->_addfield('checkbox', $name, $x, $y, $w, $w, $prop);
-				return;
-			}
-			if (!isset($prop['value'])) {
-				$prop['value'] = array('Yes');
-			}
-			// get default style
-			$prop = array_merge($this->getFormDefaultProp(), $prop);
-			$prop['borderStyle'] = 'inset';
-			// get annotation data
-			$popt = $this->getAnnotOptFromJSProp($prop);
-			// set additional default options
-			$font = 'zapfdingbats';
-			$this->AddFont($font);
-			$fontkey = array_search($font, $this->fontkeys);
-			if (!in_array($fontkey, $this->annotation_fonts)) {
-				$this->annotation_fonts[$font] = $fontkey;
-			}
-			$fontstyle = sprintf('/F%d %.2F Tf %s', ($fontkey + 1), $this->FontSizePt, $this->TextColor);
-			$popt['da'] = $fontstyle;
-			$popt['ap'] = array();
-			$popt['ap']['n'] = array();
-			$popt['ap']['n']['Yes'] = 'q BT '.$fontstyle.' 0 0 Td (8) Tj ET Q';
-			$popt['ap']['n']['Off'] = 'q BT '.$fontstyle.' 0 0 Td (8) Tj ET Q';
-			// merge options
-			$opt = array_merge($popt, $opt);
-			// set remaining annotation data
-			$opt['Subtype'] = 'Widget';
-			$opt['ft'] = 'Btn';
-			$opt['t'] = $name;
-			$opt['opt'] = array($onvalue);
-			if ($checked) {
-				$opt['v'] = array('/0');
-				$opt['as'] = 'Yes';
-			} else {
-				$opt['v'] = array('/Off');
-				$opt['as'] = 'Off';
-			}
-			$this->Annotation($x, $y, $w, $w, $name, $opt, 0);
-			if ($this->rtl) {
-				$this->x -= $w;
-			} else {
-				$this->x += $w;
-			}
+	/**
+	 * Set default properties for form fields.
+	 * @param $prop (array) javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 4.8.000 (2009-09-06)
+	 */
+	public function setFormDefaultProp($prop=array()) {
+		$this->default_form_prop = $prop;
+	}
+
+	/**
+	 * Return the default properties for form fields.
+	 * @return array $prop javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 4.8.000 (2009-09-06)
+	 */
+	public function getFormDefaultProp() {
+		return $this->default_form_prop;
+	}
+
+	/**
+	 * Creates a text field
+	 * @param $name (string) field name
+	 * @param $w (float) Width of the rectangle
+	 * @param $h (float) Height of the rectangle
+	 * @param $prop (array) javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
+	 * @param $opt (array) annotation parameters. Possible values are described on official PDF32000_2008 reference.
+	 * @param $x (float) Abscissa of the upper-left corner of the rectangle
+	 * @param $y (float) Ordinate of the upper-left corner of the rectangle
+	 * @param $js (boolean) if true put the field using JavaScript (requires Acrobat Writer to be rendered).
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 4.8.000 (2009-09-07)
+	 */
+	public function TextField($name, $w, $h, $prop=array(), $opt=array(), $x='', $y='', $js=false) {
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
 		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($h, $x, $y);
+		if ($js) {
+			$this->_addfield('text', $name, $x, $y, $w, $h, $prop);
+			return;
+		}
+		// get default style
+		$prop = array_merge($this->getFormDefaultProp(), $prop);
+		// get annotation data
+		$popt = $this->getAnnotOptFromJSProp($prop);
+		// set default appearance stream
+		$this->annotation_fonts[$this->CurrentFont['fontkey']] = $this->CurrentFont['i'];
+		$fontstyle = sprintf('/F%d %.2F Tf %s', $this->CurrentFont['i'], $this->FontSizePt, $this->TextColor);
+		$popt['da'] = $fontstyle;
+		$popt['ap'] = array();
+		$popt['ap']['n'] = 'q BT '.$fontstyle.' ET Q';
+		// merge options
+		$opt = array_merge($popt, $opt);
+		// remove some conflicting options
+		unset($opt['bs']);
+		// set remaining annotation data
+		$opt['Subtype'] = 'Widget';
+		$opt['ft'] = 'Tx';
+		$opt['t'] = $name;
+		/*
+		Additional annotation's parameters (check _putannotsobj() method):
+		//$opt['f']
+		//$opt['ap']
+		//$opt['as']
+		//$opt['bs']
+		//$opt['be']
+		//$opt['c']
+		//$opt['border']
+		//$opt['h']
+		//$opt['mk']
+		//$opt['mk']['r']
+		//$opt['mk']['bc']
+		//$opt['mk']['bg']
+		//$opt['mk']['ca']
+		//$opt['mk']['rc']
+		//$opt['mk']['ac']
+		//$opt['mk']['i']
+		//$opt['mk']['ri']
+		//$opt['mk']['ix']
+		//$opt['mk']['if']
+		//$opt['mk']['if']['sw']
+		//$opt['mk']['if']['s']
+		//$opt['mk']['if']['a']
+		//$opt['mk']['if']['fb']
+		//$opt['mk']['tp']
+		//$opt['tu']
+		//$opt['tm']
+		//$opt['ff']
+		//$opt['v']
+		//$opt['dv']
+		//$opt['a']
+		//$opt['aa']
+		//$opt['q']
+		*/
+		$this->Annotation($x, $y, $w, $h, $name, $opt, 0);
+		if ($this->rtl) {
+			$this->x -= $w;
+		} else {
+			$this->x += $w;
+		}
+	}
 
-		/**
-		 * Creates a button field
-		 * @param string $name field name
-		 * @param int $w width
-		 * @param int $h height
-		 * @param string $caption caption.
-		 * @param mixed $action action triggered by pressing the button. Use a string to specify a javascript action. Use an array to specify a form action options as on section 12.7.5 of PDF32000_2008.
-		 * @param array $prop javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
-		 * @param array $opt annotation parameters. Possible values are described on official PDF32000_2008 reference.
-		 * @param float $x Abscissa of the upper-left corner of the rectangle
-		 * @param float $y Ordinate of the upper-left corner of the rectangle
-		 * @param boolean $js if true put the field using JavaScript (requires Acrobat Writer to be rendered).
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 4.8.000 (2009-09-07)
-		 */
-		public function Button($name, $w, $h, $caption, $action, $prop=array(), $opt=array(), $x='', $y='', $js=false) {
-			if ($x === '') {
-				$x = $this->x;
-			}
-			if ($y === '') {
-				$y = $this->y;
-			}
-			if ($js) {
-				$this->_addfield('button', $name, $this->x, $this->y, $w, $h, $prop);
-				$this->javascript .= 'f'.$name.".buttonSetCaption('".addslashes($caption)."');\n";
-				$this->javascript .= 'f'.$name.".setAction('MouseUp','".addslashes($action)."');\n";
-				$this->javascript .= 'f'.$name.".highlight='push';\n";
-				$this->javascript .= 'f'.$name.".print=false;\n";
-				return;
-			}
-			// get default style
-			$prop = array_merge($this->getFormDefaultProp(), $prop);
-			$prop['Pushbutton'] = 'true';
-			$prop['highlight'] = 'push';
-			$prop['display'] = 'display.noPrint';
-			// get annotation data
-			$popt = $this->getAnnotOptFromJSProp($prop);
-			// set additional default options
-			if (!isset($popt['mk'])) {
-				$popt['mk'] = array();
-			}
-			$popt['mk']['ca'] = $this->_textstring($caption);
-			$popt['mk']['rc'] = $this->_textstring($caption);
-			$popt['mk']['ac'] = $this->_textstring($caption);
-			$font = $this->FontFamily;
-			$fontkey = array_search($font, $this->fontkeys);
-			if (!in_array($fontkey, $this->annotation_fonts)) {
-				$this->annotation_fonts[$font] = $fontkey;
-			}
-			$fontstyle = sprintf('/F%d %.2F Tf %s', ($fontkey + 1), $this->FontSizePt, $this->TextColor);
-			$popt['da'] = $fontstyle;
-			$popt['ap'] = array();
-			$popt['ap']['n'] = 'q BT '.$fontstyle.' ET Q';
-			// merge options
-			$opt = array_merge($popt, $opt);
-			// set remaining annotation data
-			$opt['Subtype'] = 'Widget';
-			$opt['ft'] = 'Btn';
-			$opt['t'] = $caption;
-			$opt['v'] = $name;
-			if (!empty($action)) {
-				if (is_array($action)) {
-					// form action options as on section 12.7.5 of PDF32000_2008.
-					$opt['aa'] = '/D <<';
-					$bmode = array('SubmitForm', 'ResetForm', 'ImportData');
-					foreach ($action AS $key => $val) {
-						if (($key == 'S') AND in_array($val, $bmode)) {
-							$opt['aa'] .= ' /S /'.$val;
-						} elseif (($key == 'F') AND (!empty($val))) {
-							$opt['aa'] .= ' /F '.$this->_datastring($val);
-						} elseif (($key == 'Fields') AND is_array($val) AND !empty($val)) {
-							$opt['aa'] .= ' /Fields [';
-							foreach ($val AS $field) {
-								$opt['aa'] .= ' '.$this->_textstring($field);
-							}
-							$opt['aa'] .= ']';
-						} elseif (($key == 'Flags')) {
-							$ff = 0;
-							if (is_array($val)) {
-								foreach ($val AS $flag) {
-									switch ($flag) {
-										case 'Include/Exclude': {
-											$ff += 1 << 0;
-											break;
-										}
-										case 'IncludeNoValueFields': {
-											$ff += 1 << 1;
-											break;
-										}
-										case 'ExportFormat': {
-											$ff += 1 << 2;
-											break;
-										}
-										case 'GetMethod': {
-											$ff += 1 << 3;
-											break;
-										}
-										case 'SubmitCoordinates': {
-											$ff += 1 << 4;
-											break;
-										}
-										case 'XFDF': {
-											$ff += 1 << 5;
-											break;
-										}
-										case 'IncludeAppendSaves': {
-											$ff += 1 << 6;
-											break;
-										}
-										case 'IncludeAnnotations': {
-											$ff += 1 << 7;
-											break;
-										}
-										case 'SubmitPDF': {
-											$ff += 1 << 8;
-											break;
-										}
-										case 'CanonicalFormat': {
-											$ff += 1 << 9;
-											break;
-										}
-										case 'ExclNonUserAnnots': {
-											$ff += 1 << 10;
-											break;
-										}
-										case 'ExclFKey': {
-											$ff += 1 << 11;
-											break;
-										}
-										case 'EmbedForm': {
-											$ff += 1 << 13;
-											break;
-										}
+	/**
+	 * Creates a RadioButton field
+	 * @param $name (string) field name
+	 * @param $w (int) width
+	 * @param $prop (array) javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
+	 * @param $opt (array) annotation parameters. Possible values are described on official PDF32000_2008 reference.
+	 * @param $onvalue (string) value to be returned if selected.
+	 * @param $checked (boolean) define the initial state.
+	 * @param $x (float) Abscissa of the upper-left corner of the rectangle
+	 * @param $y (float) Ordinate of the upper-left corner of the rectangle
+	 * @param $js (boolean) if true put the field using JavaScript (requires Acrobat Writer to be rendered).
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 4.8.000 (2009-09-07)
+	 */
+	public function RadioButton($name, $w, $prop=array(), $opt=array(), $onvalue='On', $checked=false, $x='', $y='', $js=false) {
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($w, $x, $y);
+		if ($js) {
+			$this->_addfield('radiobutton', $name, $x, $y, $w, $w, $prop);
+			return;
+		}
+		if ($this->empty_string($onvalue)) {
+			$onvalue = 'On';
+		}
+		if ($checked) {
+			$defval = $onvalue;
+		} else {
+			$defval = 'Off';
+		}
+		// set data for parent group
+		if (!isset($this->radiobutton_groups[$this->page])) {
+			$this->radiobutton_groups[$this->page] = array();
+		}
+		if (!isset($this->radiobutton_groups[$this->page][$name])) {
+			$this->radiobutton_groups[$this->page][$name] = array();
+			++$this->n;
+			$this->radiobutton_groups[$this->page][$name]['n'] = $this->n;
+			$this->radio_groups[] = $this->n;
+			$kid = ($this->n + 2);
+		} else {
+			$kid = ($this->n + 1);
+		}
+		// save object ID to be added on Kids entry on parent object
+		$this->radiobutton_groups[$this->page][$name][] = array('kid' => $kid, 'def' => $defval);
+		// get default style
+		$prop = array_merge($this->getFormDefaultProp(), $prop);
+		$prop['NoToggleToOff'] = 'true';
+		$prop['Radio'] = 'true';
+		$prop['borderStyle'] = 'inset';
+		// get annotation data
+		$popt = $this->getAnnotOptFromJSProp($prop);
+		// set additional default values
+		$font = 'zapfdingbats';
+		$this->AddFont($font);
+		$tmpfont = $this->getFontBuffer($font);
+		$this->annotation_fonts[$tmpfont['fontkey']] = $tmpfont['i'];
+		$fontstyle = sprintf('/F%d %.2F Tf %s', $tmpfont['i'], $this->FontSizePt, $this->TextColor);
+		$popt['da'] = $fontstyle;
+		$popt['ap'] = array();
+		$popt['ap']['n'] = array();
+		$popt['ap']['n'][$onvalue] = 'q BT '.$fontstyle.' 0 0 Td (8) Tj ET Q';
+		$popt['ap']['n']['Off'] = 'q BT '.$fontstyle.' 0 0 Td (8) Tj ET Q';
+		if (!isset($popt['mk'])) {
+			$popt['mk'] = array();
+		}
+		$popt['mk']['ca'] = '(l)';
+		// merge options
+		$opt = array_merge($popt, $opt);
+		// set remaining annotation data
+		$opt['Subtype'] = 'Widget';
+		$opt['ft'] = 'Btn';
+		if ($checked) {
+			$opt['v'] = array('/'.$onvalue);
+			$opt['as'] = $onvalue;
+		} else {
+			$opt['as'] = 'Off';
+		}
+		$this->Annotation($x, $y, $w, $w, $name, $opt, 0);
+		if ($this->rtl) {
+			$this->x -= $w;
+		} else {
+			$this->x += $w;
+		}
+	}
+
+	/**
+	 * Creates a List-box field
+	 * @param $name (string) field name
+	 * @param $w (int) width
+	 * @param $h (int) height
+	 * @param $values (array) array containing the list of values.
+	 * @param $prop (array) javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
+	 * @param $opt (array) annotation parameters. Possible values are described on official PDF32000_2008 reference.
+	 * @param $x (float) Abscissa of the upper-left corner of the rectangle
+	 * @param $y (float) Ordinate of the upper-left corner of the rectangle
+	 * @param $js (boolean) if true put the field using JavaScript (requires Acrobat Writer to be rendered).
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 4.8.000 (2009-09-07)
+	 */
+	public function ListBox($name, $w, $h, $values, $prop=array(), $opt=array(), $x='', $y='', $js=false) {
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($h, $x, $y);
+		if ($js) {
+			$this->_addfield('listbox', $name, $x, $y, $w, $h, $prop);
+			$s = '';
+			foreach ($values as $value) {
+				$s .= "'".addslashes($value)."',";
+			}
+			$this->javascript .= 'f'.$name.'.setItems(['.substr($s, 0, -1)."]);\n";
+			return;
+		}
+		// get default style
+		$prop = array_merge($this->getFormDefaultProp(), $prop);
+		// get annotation data
+		$popt = $this->getAnnotOptFromJSProp($prop);
+		// set additional default values
+		$this->annotation_fonts[$this->CurrentFont['fontkey']] = $this->CurrentFont['i'];
+		$fontstyle = sprintf('/F%d %.2F Tf %s', $this->CurrentFont['i'], $this->FontSizePt, $this->TextColor);
+		$popt['da'] = $fontstyle;
+		$popt['ap'] = array();
+		$popt['ap']['n'] = 'q BT '.$fontstyle.' ET Q';
+		// merge options
+		$opt = array_merge($popt, $opt);
+		// set remaining annotation data
+		$opt['Subtype'] = 'Widget';
+		$opt['ft'] = 'Ch';
+		$opt['t'] = $name;
+		$opt['opt'] = $values;
+		$this->Annotation($x, $y, $w, $h, $name, $opt, 0);
+		if ($this->rtl) {
+			$this->x -= $w;
+		} else {
+			$this->x += $w;
+		}
+	}
+
+	/**
+	 * Creates a Combo-box field
+	 * @param $name (string) field name
+	 * @param $w (int) width
+	 * @param $h (int) height
+	 * @param $values (array) array containing the list of values.
+	 * @param $prop (array) javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
+	 * @param $opt (array) annotation parameters. Possible values are described on official PDF32000_2008 reference.
+	 * @param $x (float) Abscissa of the upper-left corner of the rectangle
+	 * @param $y (float) Ordinate of the upper-left corner of the rectangle
+	 * @param $js (boolean) if true put the field using JavaScript (requires Acrobat Writer to be rendered).
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 4.8.000 (2009-09-07)
+	 */
+	public function ComboBox($name, $w, $h, $values, $prop=array(), $opt=array(), $x='', $y='', $js=false) {
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($h, $x, $y);
+		if ($js) {
+			$this->_addfield('combobox', $name, $x, $y, $w, $h, $prop);
+			$s = '';
+			foreach ($values as $value) {
+				$s .= "'".addslashes($value)."',";
+			}
+			$this->javascript .= 'f'.$name.'.setItems(['.substr($s, 0, -1)."]);\n";
+			return;
+		}
+		// get default style
+		$prop = array_merge($this->getFormDefaultProp(), $prop);
+		$prop['Combo'] = true;
+		// get annotation data
+		$popt = $this->getAnnotOptFromJSProp($prop);
+		// set additional default options
+		$this->annotation_fonts[$this->CurrentFont['fontkey']] = $this->CurrentFont['i'];
+		$fontstyle = sprintf('/F%d %.2F Tf %s', $this->CurrentFont['i'], $this->FontSizePt, $this->TextColor);
+		$popt['da'] = $fontstyle;
+		$popt['ap'] = array();
+		$popt['ap']['n'] = 'q BT '.$fontstyle.' ET Q';
+		// merge options
+		$opt = array_merge($popt, $opt);
+		// set remaining annotation data
+		$opt['Subtype'] = 'Widget';
+		$opt['ft'] = 'Ch';
+		$opt['t'] = $name;
+		$opt['opt'] = $values;
+		$this->Annotation($x, $y, $w, $h, $name, $opt, 0);
+		if ($this->rtl) {
+			$this->x -= $w;
+		} else {
+			$this->x += $w;
+		}
+	}
+
+	/**
+	 * Creates a CheckBox field
+	 * @param $name (string) field name
+	 * @param $w (int) width
+	 * @param $checked (boolean) define the initial state.
+	 * @param $prop (array) javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
+	 * @param $opt (array) annotation parameters. Possible values are described on official PDF32000_2008 reference.
+	 * @param $onvalue (string) value to be returned if selected.
+	 * @param $x (float) Abscissa of the upper-left corner of the rectangle
+	 * @param $y (float) Ordinate of the upper-left corner of the rectangle
+	 * @param $js (boolean) if true put the field using JavaScript (requires Acrobat Writer to be rendered).
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 4.8.000 (2009-09-07)
+	 */
+	public function CheckBox($name, $w, $checked=false, $prop=array(), $opt=array(), $onvalue='Yes', $x='', $y='', $js=false) {
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($w, $x, $y);
+		if ($js) {
+			$this->_addfield('checkbox', $name, $x, $y, $w, $w, $prop);
+			return;
+		}
+		if (!isset($prop['value'])) {
+			$prop['value'] = array('Yes');
+		}
+		// get default style
+		$prop = array_merge($this->getFormDefaultProp(), $prop);
+		$prop['borderStyle'] = 'inset';
+		// get annotation data
+		$popt = $this->getAnnotOptFromJSProp($prop);
+		// set additional default options
+		$font = 'zapfdingbats';
+		$this->AddFont($font);
+		$tmpfont = $this->getFontBuffer($font);
+		$this->annotation_fonts[$tmpfont['fontkey']] = $tmpfont['i'];
+		$fontstyle = sprintf('/F%d %.2F Tf %s', $tmpfont['i'], $this->FontSizePt, $this->TextColor);
+		$popt['da'] = $fontstyle;
+		$popt['ap'] = array();
+		$popt['ap']['n'] = array();
+		$popt['ap']['n']['Yes'] = 'q BT '.$fontstyle.' 0 0 Td (8) Tj ET Q';
+		$popt['ap']['n']['Off'] = 'q BT '.$fontstyle.' 0 0 Td (8) Tj ET Q';
+		// merge options
+		$opt = array_merge($popt, $opt);
+		// set remaining annotation data
+		$opt['Subtype'] = 'Widget';
+		$opt['ft'] = 'Btn';
+		$opt['t'] = $name;
+		$opt['opt'] = array($onvalue);
+		if ($checked) {
+			$opt['v'] = array('/0');
+			$opt['as'] = 'Yes';
+		} else {
+			$opt['v'] = array('/Off');
+			$opt['as'] = 'Off';
+		}
+		$this->Annotation($x, $y, $w, $w, $name, $opt, 0);
+		if ($this->rtl) {
+			$this->x -= $w;
+		} else {
+			$this->x += $w;
+		}
+	}
+
+	/**
+	 * Creates a button field
+	 * @param $name (string) field name
+	 * @param $w (int) width
+	 * @param $h (int) height
+	 * @param $caption (string) caption.
+	 * @param $action (mixed) action triggered by pressing the button. Use a string to specify a javascript action. Use an array to specify a form action options as on section 12.7.5 of PDF32000_2008.
+	 * @param $prop (array) javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
+	 * @param $opt (array) annotation parameters. Possible values are described on official PDF32000_2008 reference.
+	 * @param $x (float) Abscissa of the upper-left corner of the rectangle
+	 * @param $y (float) Ordinate of the upper-left corner of the rectangle
+	 * @param $js (boolean) if true put the field using JavaScript (requires Acrobat Writer to be rendered).
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 4.8.000 (2009-09-07)
+	 */
+	public function Button($name, $w, $h, $caption, $action, $prop=array(), $opt=array(), $x='', $y='', $js=false) {
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($h, $x, $y);
+		if ($js) {
+			$this->_addfield('button', $name, $this->x, $this->y, $w, $h, $prop);
+			$this->javascript .= 'f'.$name.".buttonSetCaption('".addslashes($caption)."');\n";
+			$this->javascript .= 'f'.$name.".setAction('MouseUp','".addslashes($action)."');\n";
+			$this->javascript .= 'f'.$name.".highlight='push';\n";
+			$this->javascript .= 'f'.$name.".print=false;\n";
+			return;
+		}
+		// get default style
+		$prop = array_merge($this->getFormDefaultProp(), $prop);
+		$prop['Pushbutton'] = 'true';
+		$prop['highlight'] = 'push';
+		$prop['display'] = 'display.noPrint';
+		// get annotation data
+		$popt = $this->getAnnotOptFromJSProp($prop);
+		$this->annotation_fonts[$this->CurrentFont['fontkey']] = $this->CurrentFont['i'];
+		$fontstyle = sprintf('/F%d %.2F Tf %s', $this->CurrentFont['i'], $this->FontSizePt, $this->TextColor);
+		$popt['da'] = $fontstyle;
+		$popt['ap'] = array();
+		$popt['ap']['n'] = 'q BT '.$fontstyle.' ET Q';
+		// set additional default options
+		if (!isset($popt['mk'])) {
+			$popt['mk'] = array();
+		}
+		$ann_obj_id = ($this->n + 1);
+		if (!empty($action) AND !is_array($action)) {
+			$ann_obj_id = ($this->n + 2);
+		}
+		$popt['mk']['ca'] = $this->_textstring($caption, $ann_obj_id);
+		$popt['mk']['rc'] = $this->_textstring($caption, $ann_obj_id);
+		$popt['mk']['ac'] = $this->_textstring($caption, $ann_obj_id);
+		// merge options
+		$opt = array_merge($popt, $opt);
+		// set remaining annotation data
+		$opt['Subtype'] = 'Widget';
+		$opt['ft'] = 'Btn';
+		$opt['t'] = $caption;
+		$opt['v'] = $name;
+		if (!empty($action)) {
+			if (is_array($action)) {
+				// form action options as on section 12.7.5 of PDF32000_2008.
+				$opt['aa'] = '/D <<';
+				$bmode = array('SubmitForm', 'ResetForm', 'ImportData');
+				foreach ($action AS $key => $val) {
+					if (($key == 'S') AND in_array($val, $bmode)) {
+						$opt['aa'] .= ' /S /'.$val;
+					} elseif (($key == 'F') AND (!empty($val))) {
+						$opt['aa'] .= ' /F '.$this->_datastring($val, $ann_obj_id);
+					} elseif (($key == 'Fields') AND is_array($val) AND !empty($val)) {
+						$opt['aa'] .= ' /Fields [';
+						foreach ($val AS $field) {
+							$opt['aa'] .= ' '.$this->_textstring($field, $ann_obj_id);
+						}
+						$opt['aa'] .= ']';
+					} elseif (($key == 'Flags')) {
+						$ff = 0;
+						if (is_array($val)) {
+							foreach ($val AS $flag) {
+								switch ($flag) {
+									case 'Include/Exclude': {
+										$ff += 1 << 0;
+										break;
+									}
+									case 'IncludeNoValueFields': {
+										$ff += 1 << 1;
+										break;
+									}
+									case 'ExportFormat': {
+										$ff += 1 << 2;
+										break;
+									}
+									case 'GetMethod': {
+										$ff += 1 << 3;
+										break;
+									}
+									case 'SubmitCoordinates': {
+										$ff += 1 << 4;
+										break;
+									}
+									case 'XFDF': {
+										$ff += 1 << 5;
+										break;
+									}
+									case 'IncludeAppendSaves': {
+										$ff += 1 << 6;
+										break;
+									}
+									case 'IncludeAnnotations': {
+										$ff += 1 << 7;
+										break;
+									}
+									case 'SubmitPDF': {
+										$ff += 1 << 8;
+										break;
+									}
+									case 'CanonicalFormat': {
+										$ff += 1 << 9;
+										break;
+									}
+									case 'ExclNonUserAnnots': {
+										$ff += 1 << 10;
+										break;
+									}
+									case 'ExclFKey': {
+										$ff += 1 << 11;
+										break;
+									}
+									case 'EmbedForm': {
+										$ff += 1 << 13;
+										break;
 									}
 								}
-							} else {
-								$ff = intval($val);
 							}
-							$opt['aa'] .= ' /Flags '.$ff;
+						} else {
+							$ff = intval($val);
 						}
+						$opt['aa'] .= ' /Flags '.$ff;
 					}
-					$opt['aa'] .= ' >>';
-				} else {
-					// Javascript action or raw action command
-					$js_obj_id = $this->addJavascriptObject($action);
-					$opt['aa'] = '/D '.$js_obj_id.' 0 R';
 				}
-			}
-			$this->Annotation($x, $y, $w, $h, $name, $opt, 0);
-			if ($this->rtl) {
-				$this->x -= $w;
+				$opt['aa'] .= ' >>';
 			} else {
-				$this->x += $w;
+				// Javascript action or raw action command
+				$js_obj_id = $this->addJavascriptObject($action);
+				$opt['aa'] = '/D '.$js_obj_id.' 0 R';
 			}
 		}
+		$this->Annotation($x, $y, $w, $h, $name, $opt, 0);
+		if ($this->rtl) {
+			$this->x -= $w;
+		} else {
+			$this->x += $w;
+		}
+	}
+
+	// --- END FORMS FIELDS ------------------------------------------------
+
+	/**
+	 * Add certification signature (DocMDP or UR3)
+	 * You can set only one signature type
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 4.6.008 (2009-05-07)
+	 */
+	protected function _putsignature() {
+		if ((!$this->sign) OR (!isset($this->signature_data['cert_type']))) {
+			return;
+		}
+		$out = $this->_getobj($this->sig_obj_id + 1)."\n";
+		$out .= '<< /Type /Sig';
+		$out .= ' /Filter /Adobe.PPKLite';
+		$out .= ' /SubFilter /adbe.pkcs7.detached';
+		$out .= ' '.$this->byterange_string;
+		$out .= ' /Contents<'.str_repeat('0', $this->signature_max_length).'>';
+		$out .= ' /Reference ['; // array of signature reference dictionaries
+		$out .= ' << /Type /SigRef';
+		if ($this->signature_data['cert_type'] > 0) {
+			$out .= ' /TransformMethod /DocMDP';
+			$out .= ' /TransformParams <<';
+			$out .= ' /Type /TransformParams';
+			$out .= ' /V /1.2';
+			$out .= ' /P '.$this->signature_data['cert_type'];
+		} else {
+			$out .= ' /TransformMethod /UR3';
+			$out .= ' /TransformParams <<';
+			$out .= ' /Type /TransformParams';
+			$out .= ' /V /2.2';
+			if (!$this->empty_string($this->ur['document'])) {
+				$out .= ' /Document['.$this->ur['document'].']';
+			}
+			if (!$this->empty_string($this->ur['form'])) {
+				$out .= ' /Form['.$this->ur['form'].']';
+			}
+			if (!$this->empty_string($this->ur['signature'])) {
+				$out .= ' /Signature['.$this->ur['signature'].']';
+			}
+			if (!$this->empty_string($this->ur['annots'])) {
+				$out .= ' /Annots['.$this->ur['annots'].']';
+			}
+			if (!$this->empty_string($this->ur['ef'])) {
+				$out .= ' /EF['.$this->ur['ef'].']';
+			}
+			if (!$this->empty_string($this->ur['formex'])) {
+				$out .= ' /FormEX['.$this->ur['formex'].']';
+			}
+		}
+		$out .= ' >>'; // close TransformParams
+		// optional digest data (values must be calculated and replaced later)
+		//$out .= ' /Data ********** 0 R';
+		//$out .= ' /DigestMethod/MD5';
+		//$out .= ' /DigestLocation[********** 34]';
+		//$out .= ' /DigestValue<********************************>';
+		$out .= ' >>';
+		$out .= ' ]'; // end of reference
+		if (isset($this->signature_data['info']['Name']) AND !$this->empty_string($this->signature_data['info']['Name'])) {
+			$out .= ' /Name '.$this->_textstring($this->signature_data['info']['Name']);
+		}
+		if (isset($this->signature_data['info']['Location']) AND !$this->empty_string($this->signature_data['info']['Location'])) {
+			$out .= ' /Location '.$this->_textstring($this->signature_data['info']['Location']);
+		}
+		if (isset($this->signature_data['info']['Reason']) AND !$this->empty_string($this->signature_data['info']['Reason'])) {
+			$out .= ' /Reason '.$this->_textstring($this->signature_data['info']['Reason']);
+		}
+		if (isset($this->signature_data['info']['ContactInfo']) AND !$this->empty_string($this->signature_data['info']['ContactInfo'])) {
+			$out .= ' /ContactInfo '.$this->_textstring($this->signature_data['info']['ContactInfo']);
+		}
+		$out .= ' /M '.$this->_datestring();
+		$out .= ' >>';
+		$out .= "\n".'endobj';
+		$this->_out($out);
+	}
+
+	/**
+	 * Set User's Rights for PDF Reader
+	 * WARNING: This is experimental and currently do not work.
+	 * Check the PDF Reference 8.7.1 Transform Methods,
+	 * Table 8.105 Entries in the UR transform parameters dictionary
+	 * @param $enable (boolean) if true enable user's rights on PDF reader
+	 * @param $document (string) Names specifying additional document-wide usage rights for the document. The only defined value is "/FullSave", which permits a user to save the document along with modified form and/or annotation data.
+	 * @param $annots (string) Names specifying additional annotation-related usage rights for the document. Valid names in PDF 1.5 and later are /Create/Delete/Modify/Copy/Import/Export, which permit the user to perform the named operation on annotations.
+	 * @param $form (string) Names specifying additional form-field-related usage rights for the document. Valid names are: /Add/Delete/FillIn/Import/Export/SubmitStandalone/SpawnTemplate
+	 * @param $signature (string) Names specifying additional signature-related usage rights for the document. The only defined value is /Modify, which permits a user to apply a digital signature to an existing signature form field or clear a signed signature form field.
+	 * @param $ef (string) Names specifying additional usage rights for named embedded files in the document. Valid names are /Create/Delete/Modify/Import, which permit the user to perform the named operation on named embedded files
+	 Names specifying additional embedded-files-related usage rights for the document.
+	 * @param $formex (string) Names specifying additional form-field-related usage rights. The only valid name is BarcodePlaintext, which permits text form field data to be encoded as a plaintext two-dimensional barcode.
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 2.9.000 (2008-03-26)
+	 */
+	public function setUserRights(
+			$enable=true,
+			$document='/FullSave',
+			$annots='/Create/Delete/Modify/Copy/Import/Export',
+			$form='/Add/Delete/FillIn/Import/Export/SubmitStandalone/SpawnTemplate',
+			$signature='/Modify',
+			$ef='/Create/Delete/Modify/Import',
+			$formex='') {
+		$this->ur['enabled'] = $enable;
+		$this->ur['document'] = $document;
+		$this->ur['annots'] = $annots;
+		$this->ur['form'] = $form;
+		$this->ur['signature'] = $signature;
+		$this->ur['ef'] = $ef;
+		$this->ur['formex'] = $formex;
+		if (!$this->sign) {
+			$this->setSignature('', '', '', '', 0, array());
+		}
+	}
+
+	/**
+	 * Enable document signature (requires the OpenSSL Library).
+	 * The digital signature improve document authenticity and integrity and allows o enable extra features on Acrobat Reader.
+	 * To create self-signed signature: openssl req -x509 -nodes -days 365000 -newkey rsa:1024 -keyout tcpdf.crt -out tcpdf.crt
+	 * To export crt to p12: openssl pkcs12 -export -in tcpdf.crt -out tcpdf.p12
+	 * To convert pfx certificate to pem: openssl pkcs12 -in tcpdf.pfx -out tcpdf.crt -nodes
+	 * @param $signing_cert (mixed) signing certificate (string or filename prefixed with 'file://')
+	 * @param $private_key (mixed) private key (string or filename prefixed with 'file://')
+	 * @param $private_key_password (string) password
+	 * @param $extracerts (string) specifies the name of a file containing a bunch of extra certificates to include in the signature which can for example be used to help the recipient to verify the certificate that you used.
+	 * @param $cert_type (int) The access permissions granted for this document. Valid values shall be: 1 = No changes to the document shall be permitted; any change to the document shall invalidate the signature; 2 = Permitted changes shall be filling in forms, instantiating page templates, and signing; other changes shall invalidate the signature; 3 = Permitted changes shall be the same as for 2, as well as annotation creation, deletion, and modification; other changes shall invalidate the signature.
+	 * @param $info (array) array of option information: Name, Location, Reason, ContactInfo.
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 4.6.005 (2009-04-24)
+	 */
+	public function setSignature($signing_cert='', $private_key='', $private_key_password='', $extracerts='', $cert_type=2, $info=array()) {
+		// to create self-signed signature: openssl req -x509 -nodes -days 365000 -newkey rsa:1024 -keyout tcpdf.crt -out tcpdf.crt
+		// to export crt to p12: openssl pkcs12 -export -in tcpdf.crt -out tcpdf.p12
+		// to convert pfx certificate to pem: openssl
+		//     OpenSSL> pkcs12 -in <cert.pfx> -out <cert.crt> -nodes
+		$this->sign = true;
+		++$this->n;
+		$this->sig_obj_id = $this->n; // signature widget
+		++$this->n; // signature object ($this->sig_obj_id + 1)
+		$this->signature_data = array();
+		if (strlen($signing_cert) == 0) {
+			$signing_cert = 'file://'.dirname(__FILE__).'/tcpdf.crt';
+			$private_key_password = 'tcpdfdemo';
+		}
+		if (strlen($private_key) == 0) {
+			$private_key = $signing_cert;
+		}
+		$this->signature_data['signcert'] = $signing_cert;
+		$this->signature_data['privkey'] = $private_key;
+		$this->signature_data['password'] = $private_key_password;
+		$this->signature_data['extracerts'] = $extracerts;
+		$this->signature_data['cert_type'] = $cert_type;
+		$this->signature_data['info'] = $info;
+	}
+
+	/**
+	 * Set the digital signature appearance (a cliccable rectangle area to get signature properties)
+	 * @param $x (float) Abscissa of the upper-left corner.
+	 * @param $y (float) Ordinate of the upper-left corner.
+	 * @param $w (float) Width of the signature area.
+	 * @param $h (float) Height of the signature area.
+	 * @param $page (int) option page number (if < 0 the current page is used).
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 5.3.011 (2010-06-17)
+	 */
+	public function setSignatureAppearance($x=0, $y=0, $w=0, $h=0, $page=-1) {
+		if (($page < 1) OR ($page > $this->numpages)) {
+			$this->signature_appearance['page'] = $this->page;
+		} else {
+			$this->signature_appearance['page'] = intval($page);
+		}
+		$a = $x * $this->k;
+		$b = $this->pagedim[($this->signature_appearance['page'])]['h'] - (($y + $h) * $this->k);
+		$c = $w * $this->k;
+		$d = $h * $this->k;
+		$this->signature_appearance['rect'] = sprintf('%.2F %.2F %.2F %.2F', $a, $b, $a+$c, $b+$d);
+	}
+
+	/**
+	 * Create a new page group.
+	 * NOTE: call this function before calling AddPage()
+	 * @param $page (int) starting group page (leave empty for next page).
+	 * @public
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	public function startPageGroup($page='') {
+		if (empty($page)) {
+			$page = $this->page + 1;
+		}
+		$this->newpagegroup[$page] = true;
+	}
+
+	/**
+	 * Defines a string alias for the total number of pages. It will be substituted as the document is closed.
+	 * @param $numalias (string) The alias.
+	 * @since 1.4
+	 * @see getAliasNbPages(), PageNo(), Footer()
+	 * @public
+	 */
+	public function AliasNbPages($numalias="{nb}") {
+		$this->AliasNbPages = $numalias;
+	}
+
+	/**
+	 * Returns the string alias used for the total number of pages.
+	 * If the current font is unicode type, the returned string is surrounded by additional curly braces.
+	 * @return string
+	 * @since 4.0.018 (2008-08-08)
+	 * @see AliasNbPages(), PageNo(), Footer()
+	 * @public
+	 */
+	public function getAliasNbPages() {
+		if ($this->isUnicodeFont()) {
+			return '{'.$this->AliasNbPages.'}';
+		}
+		return $this->AliasNbPages;
+	}
 
-		// --- END FORMS FIELDS ------------------------------------------------
+	/**
+	 * Defines a string alias for the page number. It will be substituted as the document is closed.
+	 * @param $numalias (string) The alias.
+	 * @since 4.5.000 (2009-01-02)
+	 * @see getAliasNbPages(), PageNo(), Footer()
+	 * @public
+	 */
+	public function AliasNumPage($numalias="{pnb}") {
+		$this->AliasNumPage = $numalias;
+	}
 
-		/**
-		 * Add certification signature (DocMDP or UR3)
-		 * You can set only one signature type
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 4.6.008 (2009-05-07)
-		 */
-		protected function _putsignature() {
-			if ((!$this->sign) OR (!isset($this->signature_data['cert_type']))) {
-				return;
+	/**
+	 * Returns the string alias used for the page number.
+	 * If the current font is unicode type, the returned string is surrounded by additional curly braces.
+	 * @return string
+	 * @since 4.5.000 (2009-01-02)
+	 * @see AliasNbPages(), PageNo(), Footer()
+	 * @public
+	 */
+	public function getAliasNumPage() {
+		if ($this->isUnicodeFont()) {
+			return '{'.$this->AliasNumPage.'}';
+		}
+		return $this->AliasNumPage;
+	}
+
+	/**
+	 * Return the current page in the group.
+	 * @return current page in the group
+	 * @public
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	public function getGroupPageNo() {
+		return $this->pagegroups[$this->currpagegroup];
+	}
+
+	/**
+	 * Returns the current group page number formatted as a string.
+	 * @public
+	 * @since 4.3.003 (2008-11-18)
+	 * @see PaneNo(), formatPageNumber()
+	 */
+	public function getGroupPageNoFormatted() {
+		return $this->formatPageNumber($this->getGroupPageNo());
+	}
+
+	/**
+	 * Return the alias of the current page group
+	 * If the current font is unicode type, the returned string is surrounded by additional curly braces.
+	 * (will be replaced by the total number of pages in this group).
+	 * @return alias of the current page group
+	 * @public
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	public function getPageGroupAlias() {
+		if ($this->isUnicodeFont()) {
+			return '{'.$this->currpagegroup.'}';
+		}
+		return $this->currpagegroup;
+	}
+
+	/**
+	 * Return the alias for the page number on the current page group
+	 * If the current font is unicode type, the returned string is surrounded by additional curly braces.
+	 * (will be replaced by the total number of pages in this group).
+	 * @return alias of the current page group
+	 * @public
+	 * @since 4.5.000 (2009-01-02)
+	 */
+	public function getPageNumGroupAlias() {
+		if ($this->isUnicodeFont()) {
+			return '{'.str_replace('{nb', '{pnb', $this->currpagegroup).'}';
+		}
+		return str_replace('{nb', '{pnb', $this->currpagegroup);
+	}
+
+	/**
+	 * Format the page numbers.
+	 * This method can be overriden for custom formats.
+	 * @param $num (int) page number
+	 * @protected
+	 * @since 4.2.005 (2008-11-06)
+	 */
+	protected function formatPageNumber($num) {
+		return number_format((float)$num, 0, '', '.');
+	}
+
+	/**
+	 * Format the page numbers on the Table Of Content.
+	 * This method can be overriden for custom formats.
+	 * @param $num (int) page number
+	 * @protected
+	 * @since 4.5.001 (2009-01-04)
+	 * @see addTOC(), addHTMLTOC()
+	 */
+	protected function formatTOCPageNumber($num) {
+		return number_format((float)$num, 0, '', '.');
+	}
+
+	/**
+	 * Returns the current page number formatted as a string.
+	 * @public
+	 * @since 4.2.005 (2008-11-06)
+	 * @see PaneNo(), formatPageNumber()
+	 */
+	public function PageNoFormatted() {
+		return $this->formatPageNumber($this->PageNo());
+	}
+
+	/**
+	 * Put visibility settings.
+	 * @protected
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	protected function _putocg() {
+		$this->n_ocg_print = $this->_newobj();
+		$this->_out('<< /Type /OCG /Name '.$this->_textstring('print', $this->n_ocg_print).' /Usage << /Print <</PrintState /ON>> /View <</ViewState /OFF>> >> >>'."\n".'endobj');
+		$this->n_ocg_view = $this->_newobj();
+		$this->_out('<< /Type /OCG /Name '.$this->_textstring('view', $this->n_ocg_view).' /Usage << /Print <</PrintState /OFF>> /View <</ViewState /ON>> >> >>'."\n".'endobj');
+	}
+
+	/**
+	 * Set the visibility of the successive elements.
+	 * This can be useful, for instance, to put a background
+	 * image or color that will show on screen but won't print.
+	 * @param $v (string) visibility mode. Legal values are: all, print, screen.
+	 * @public
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	public function setVisibility($v) {
+		if ($this->openMarkedContent) {
+			// close existing open marked-content
+			$this->_out('EMC');
+			$this->openMarkedContent = false;
+		}
+		switch($v) {
+			case 'print': {
+				$this->_out('/OC /OC1 BDC');
+				$this->openMarkedContent = true;
+				break;
 			}
-			$this->_newobj();
-			$out = '<< /Type /Sig';
-			$out .= ' /Filter /Adobe.PPKLite';
-			$out .= ' /SubFilter /adbe.pkcs7.detached';
-			$out .= ' '.$this->byterange_string;
-			$out .= ' /Contents<'.str_repeat('0', $this->signature_max_length).'>';
-			$out .= ' /Reference ['; // array of signature reference dictionaries
-			$out .= ' << /Type /SigRef';
-			if ($this->signature_data['cert_type'] > 0) {
-				$out .= ' /TransformMethod /DocMDP';
-				$out .= ' /TransformParams <<';
-				$out .= ' /Type /TransformParams';
-				$out .= ' /V /1.2';
-				$out .= ' /P '.$this->signature_data['cert_type'];
-			} else {
-				$out .= ' /TransformMethod /UR3';
-				$out .= ' /TransformParams <<';
-				$out .= ' /Type /TransformParams';
-				$out .= ' /V /2.2';
-				if (!$this->empty_string($this->ur_document)) {
-					$out .= ' /Document['.$this->ur_document.']';
-				}
-				if (!$this->empty_string($this->ur_annots)) {
-					$out .= ' /Annots['.$this->ur_annots.']';
-				}
-				if (!$this->empty_string($this->ur_form)) {
-					$out .= ' /Form['.$this->ur_form.']';
-				}
-				if (!$this->empty_string($this->ur_signature)) {
-					$out .= ' /Signature['.$this->ur_signature.']';
-				}
+			case 'screen': {
+				$this->_out('/OC /OC2 BDC');
+				$this->openMarkedContent = true;
+				break;
 			}
-			$out .= ' >>'; // close TransformParams
-			// optional digest data (values must be calculated and replaced later)
-			//$out .= ' /Data ********** 0 R';
-			//$out .= ' /DigestMethod/MD5';
-			//$out .= ' /DigestLocation[********** 34]';
-			//$out .= ' /DigestValue<********************************>';
-			$out .= ' >>';
-			$out .= ' ]'; // end of reference
-			if (isset($this->signature_data['info']['Name']) AND !$this->empty_string($this->signature_data['info']['Name'])) {
-				$out .= ' /Name '.$this->_textstring($this->signature_data['info']['Name']);
+			case 'all': {
+				$this->_out('');
+				break;
 			}
-			if (isset($this->signature_data['info']['Location']) AND !$this->empty_string($this->signature_data['info']['Location'])) {
-				$out .= ' /Location '.$this->_textstring($this->signature_data['info']['Location']);
+			default: {
+				$this->Error('Incorrect visibility: '.$v);
+				break;
 			}
-			if (isset($this->signature_data['info']['Reason']) AND !$this->empty_string($this->signature_data['info']['Reason'])) {
-				$out .= ' /Reason '.$this->_textstring($this->signature_data['info']['Reason']);
+		}
+		$this->visibility = $v;
+	}
+
+	/**
+	 * Add transparency parameters to the current extgstate
+	 * @param $parms (array) parameters
+	 * @return the number of extgstates
+	 * @protected
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	protected function addExtGState($parms) {
+		$n = count($this->extgstates) + 1;
+		// check if this ExtGState already exist
+		for ($i = 1; $i < $n; ++$i) {
+			if ($this->extgstates[$i]['parms'] == $parms) {
+				// return reference to existing ExtGState
+				return $i;
 			}
-			if (isset($this->signature_data['info']['ContactInfo']) AND !$this->empty_string($this->signature_data['info']['ContactInfo'])) {
-				$out .= ' /ContactInfo '.$this->_textstring($this->signature_data['info']['ContactInfo']);
+		}
+		$this->extgstates[$n]['parms'] = $parms;
+		return $n;
+	}
+
+	/**
+	 * Add an extgstate
+	 * @param $gs (array) extgstate
+	 * @protected
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	protected function setExtGState($gs) {
+		$this->_out(sprintf('/GS%d gs', $gs));
+	}
+
+	/**
+	 * Put extgstates for object transparency
+	 * @protected
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	protected function _putextgstates() {
+		$ne = count($this->extgstates);
+		for ($i = 1; $i <= $ne; ++$i) {
+			$this->extgstates[$i]['n'] = $this->_newobj();
+			$out = '<< /Type /ExtGState';
+			foreach ($this->extgstates[$i]['parms'] as $k => $v) {
+				if (is_float($v)) {
+					$v = sprintf('%.2F', $v);
+				}
+				$out .= ' /'.$k.' '.$v;
 			}
-			$out .= ' /M '.$this->_datestring();
 			$out .= ' >>';
 			$out .= "\n".'endobj';
 			$this->_out($out);
 		}
+	}
 
-		/**
-		 * Set User's Rights for PDF Reader
-		 * WARNING: This works only using the Adobe private key with the setSignature() method!.
-		 * Check the PDF Reference 8.7.1 Transform Methods,
-		 * Table 8.105 Entries in the UR transform parameters dictionary
-		 * @param boolean $enable if true enable user's rights on PDF reader
-		 * @param string $document Names specifying additional document-wide usage rights for the document. The only defined value is "/FullSave", which permits a user to save the document along with modified form and/or annotation data.
-		 * @param string $annots Names specifying additional annotation-related usage rights for the document. Valid names in PDF 1.5 and later are /Create/Delete/Modify/Copy/Import/Export, which permit the user to perform the named operation on annotations.
-		 * @param string $form Names specifying additional form-field-related usage rights for the document. Valid names are: /Add/Delete/FillIn/Import/Export/SubmitStandalone/SpawnTemplate
-		 * @param string $signature Names specifying additional signature-related usage rights for the document. The only defined value is /Modify, which permits a user to apply a digital signature to an existing signature form field or clear a signed signature form field.
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 2.9.000 (2008-03-26)
-		 */
-		public function setUserRights(
-				$enable=true,
-				$document='/FullSave',
-				$annots='/Create/Delete/Modify/Copy/Import/Export',
-				$form='/Add/Delete/FillIn/Import/Export/SubmitStandalone/SpawnTemplate',
-				$signature='/Modify') {
-			$this->ur = $enable;
-			$this->ur_document = $document;
-			$this->ur_annots = $annots;
-			$this->ur_form = $form;
-			$this->ur_signature = $signature;
-			if (!$this->sign) {
-				// This signature only works using the Adobe Private key that is unavailable!
-				$this->setSignature('', '', '', '', 0, array());
-			}
-		}
-
-		/**
-		 * Enable document signature (requires the OpenSSL Library).
-		 * The digital signature improve document authenticity and integrity and allows o enable extra features on Acrobat Reader.
-		 * To create self-signed signature: openssl req -x509 -nodes -days 365000 -newkey rsa:1024 -keyout tcpdf.crt -out tcpdf.crt
-		 * To export crt to p12: openssl pkcs12 -export -in tcpdf.crt -out tcpdf.p12
-		 * To convert pfx certificate to pem: openssl pkcs12 -in tcpdf.pfx -out tcpdf.crt -nodes
-		 * @param mixed $signing_cert signing certificate (string or filename prefixed with 'file://')
-		 * @param mixed $private_key private key (string or filename prefixed with 'file://')
-		 * @param string $private_key_password password
-		 * @param string $extracerts specifies the name of a file containing a bunch of extra certificates to include in the signature which can for example be used to help the recipient to verify the certificate that you used.
-		 * @param int $cert_type The access permissions granted for this document. Valid values shall be: 1 = No changes to the document shall be permitted; any change to the document shall invalidate the signature; 2 = Permitted changes shall be filling in forms, instantiating page templates, and signing; other changes shall invalidate the signature; 3 = Permitted changes shall be the same as for 2, as well as annotation creation, deletion, and modification; other changes shall invalidate the signature.
-		 * @param array $info array of option information: Name, Location, Reason, ContactInfo.
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 4.6.005 (2009-04-24)
-		 */
-		public function setSignature($signing_cert='', $private_key='', $private_key_password='', $extracerts='', $cert_type=2, $info=array()) {
-			// to create self-signed signature: openssl req -x509 -nodes -days 365000 -newkey rsa:1024 -keyout tcpdf.crt -out tcpdf.crt
-			// to export crt to p12: openssl pkcs12 -export -in tcpdf.crt -out tcpdf.p12
-			// to convert pfx certificate to pem: openssl
-			//     OpenSSL> pkcs12 -in <cert.pfx> -out <cert.crt> -nodes
-			$this->sign = true;
-			$this->signature_data = array();
-			if (strlen($signing_cert) == 0) {
-				$signing_cert = 'file://'.dirname(__FILE__).'/tcpdf.crt';
-				$private_key_password = 'tcpdfdemo';
-			}
-			if (strlen($private_key) == 0) {
-				$private_key = $signing_cert;
-			}
-			$this->signature_data['signcert'] = $signing_cert;
-			$this->signature_data['privkey'] = $private_key;
-			$this->signature_data['password'] = $private_key_password;
-			$this->signature_data['extracerts'] = $extracerts;
-			$this->signature_data['cert_type'] = $cert_type;
-			$this->signature_data['info'] = $info;
-		}
-
-		/**
-		 * Set the digital signature appearance (a cliccable rectangle area to get signature properties)
-		 * @param float $x Abscissa of the upper-left corner.
-		 * @param float $y Ordinate of the upper-left corner.
-		 * @param float $w Width of the signature area.
-		 * @param float $h Height of the signature area.
-		 * @param int $page option page number (if < 0 the current page is used).
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 5.3.011 (2010-06-17)
-		 */
-		public function setSignatureAppearance($x=0, $y=0, $w=0, $h=0, $page=-1) {
-			if (($page < 1) OR ($page > $this->numpages)) {
-				$this->signature_appearance['page'] = $this->page;
-			} else {
-				$this->signature_appearance['page'] = intval($page);
-			}
-			$a = $x * $this->k;
-			$b = $this->pagedim[($this->signature_appearance['page'])]['h'] - (($y + $h)  * $this->k);
-			$c = $w * $this->k;
-			$d = $h * $this->k;
-			$this->signature_appearance['rect'] = sprintf('%.2F %.2F %.2F %.2F', $a, $b, $a+$c, $b+$d);
-		}
-
-		/**
-		 * Create a new page group.
-		 * NOTE: call this function before calling AddPage()
-		 * @param int $page starting group page (leave empty for next page).
-		 * @access public
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		public function startPageGroup($page='') {
-			if (empty($page)) {
-				$page = $this->page + 1;
-			}
-			$this->newpagegroup[$page] = true;
-		}
-
-		/**
-		 * Defines an alias for the total number of pages.
-		 * It will be substituted as the document is closed.
-		 * @param string $alias The alias.
-		 * @access public
-		 * @since 1.4
-		 * @see getAliasNbPages(), PageNo(), Footer()
-		 */
-		public function AliasNbPages($alias='{nb}') {
-			$this->AliasNbPages = $alias;
-		}
-
-		/**
-		 * Returns the string alias used for the total number of pages.
-		 * If the current font is unicode type, the returned string is surrounded by additional curly braces.
-		 * @return string
-		 * @access public
-		 * @since 4.0.018 (2008-08-08)
-		 * @see AliasNbPages(), PageNo(), Footer()
-		 */
-		public function getAliasNbPages() {
-			if (($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) {
-				return '{'.$this->AliasNbPages.'}';
-			}
-			return $this->AliasNbPages;
-		}
-
-		/**
-		 * Defines an alias for the page number.
-		 * It will be substituted as the document is closed.
-		 * @param string $alias The alias.
-		 * @access public
-		 * @since 4.5.000 (2009-01-02)
-		 * @see getAliasNbPages(), PageNo(), Footer()
-		 */
-		public function AliasNumPage($alias='{pnb}') {
-			//Define an alias for total number of pages
-			$this->AliasNumPage = $alias;
-		}
-
-		/**
-		 * Returns the string alias used for the page number.
-		 * If the current font is unicode type, the returned string is surrounded by additional curly braces.
-		 * @return string
-		 * @access public
-		 * @since 4.5.000 (2009-01-02)
-		 * @see AliasNbPages(), PageNo(), Footer()
-		 */
-		public function getAliasNumPage() {
-			if (($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) {
-				return '{'.$this->AliasNumPage.'}';
-			}
-			return $this->AliasNumPage;
-		}
-
-		/**
-		 * Return the current page in the group.
-		 * @return current page in the group
-		 * @access public
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		public function getGroupPageNo() {
-			return $this->pagegroups[$this->currpagegroup];
-		}
-
-		/**
-		 * Returns the current group page number formatted as a string.
-		 * @access public
-		 * @since 4.3.003 (2008-11-18)
-		 * @see PaneNo(), formatPageNumber()
-		 */
-		public function getGroupPageNoFormatted() {
-			return $this->formatPageNumber($this->getGroupPageNo());
-		}
-
-		/**
-		 * Return the alias of the current page group
-		 * If the current font is unicode type, the returned string is surrounded by additional curly braces.
-		 * (will be replaced by the total number of pages in this group).
-		 * @return alias of the current page group
-		 * @access public
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		public function getPageGroupAlias() {
-			if (($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) {
-				return '{'.$this->currpagegroup.'}';
-			}
-			return $this->currpagegroup;
-		}
-
-		/**
-		 * Return the alias for the page number on the current page group
-		 * If the current font is unicode type, the returned string is surrounded by additional curly braces.
-		 * (will be replaced by the total number of pages in this group).
-		 * @return alias of the current page group
-		 * @access public
-		 * @since 4.5.000 (2009-01-02)
-		 */
-		public function getPageNumGroupAlias() {
-			if (($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) {
-				return '{'.str_replace('{nb', '{pnb', $this->currpagegroup).'}';
-			}
-			return str_replace('{nb', '{pnb', $this->currpagegroup);
-		}
-
-		/**
-		 * Format the page numbers.
-		 * This method can be overriden for custom formats.
-		 * @param int $num page number
-		 * @access protected
-		 * @since 4.2.005 (2008-11-06)
-		 */
-		protected function formatPageNumber($num) {
-			return number_format((float)$num, 0, '', '.');
-		}
-
-		/**
-		 * Format the page numbers on the Table Of Content.
-		 * This method can be overriden for custom formats.
-		 * @param int $num page number
-		 * @access protected
-		 * @since 4.5.001 (2009-01-04)
-		 * @see addTOC(), addHTMLTOC()
-		 */
-		protected function formatTOCPageNumber($num) {
-			return number_format((float)$num, 0, '', '.');
-		}
-
-		/**
-		 * Returns the current page number formatted as a string.
-		 * @access public
-		 * @since 4.2.005 (2008-11-06)
-		 * @see PaneNo(), formatPageNumber()
-		 */
-		public function PageNoFormatted() {
-			return $this->formatPageNumber($this->PageNo());
-		}
-
-		/**
-		 * Put visibility settings.
-		 * @access protected
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		protected function _putocg() {
-			$this->_newobj();
-			$this->n_ocg_print = $this->n;
-			$this->_out('<< /Type /OCG /Name '.$this->_textstring('print').' /Usage << /Print <</PrintState /ON>> /View <</ViewState /OFF>> >> >>'."\n".'endobj');
-			$this->_newobj();
-			$this->n_ocg_view = $this->n;
-			$this->_out('<< /Type /OCG /Name '.$this->_textstring('view').' /Usage << /Print <</PrintState /OFF>> /View <</ViewState /ON>> >> >>'."\n".'endobj');
-		}
-
-		/**
-		 * Set the visibility of the successive elements.
-		 * This can be useful, for instance, to put a background
-		 * image or color that will show on screen but won't print.
-		 * @param string $v visibility mode. Legal values are: all, print, screen.
-		 * @access public
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		public function setVisibility($v) {
-			if ($this->openMarkedContent) {
-				// close existing open marked-content
-				$this->_out('EMC');
-				$this->openMarkedContent = false;
-			}
-			switch($v) {
-				case 'print': {
-					$this->_out('/OC /OC1 BDC');
-					$this->openMarkedContent = true;
+	/**
+	 * Set alpha for stroking (CA) and non-stroking (ca) operations.
+	 * @param $alpha (float) real value from 0 (transparent) to 1 (opaque)
+	 * @param $bm (string) blend mode, one of the following: Normal, Multiply, Screen, Overlay, Darken, Lighten, ColorDodge, ColorBurn, HardLight, SoftLight, Difference, Exclusion, Hue, Saturation, Color, Luminosity
+	 * @public
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	public function setAlpha($alpha, $bm='Normal') {
+		$gs = $this->addExtGState(array('ca' => $alpha, 'CA' => $alpha, 'BM' => '/'.$bm, 'AIS' => 'false'));
+		$this->setExtGState($gs);
+	}
+
+	/**
+	 * Set the default JPEG compression quality (1-100)
+	 * @param $quality (int) JPEG quality, integer between 1 and 100
+	 * @public
+	 * @since 3.0.000 (2008-03-27)
+	 */
+	public function setJPEGQuality($quality) {
+		if (($quality < 1) OR ($quality > 100)) {
+			$quality = 75;
+		}
+		$this->jpeg_quality = intval($quality);
+	}
+
+	/**
+	 * Set the default number of columns in a row for HTML tables.
+	 * @param $cols (int) number of columns
+	 * @public
+	 * @since 3.0.014 (2008-06-04)
+	 */
+	public function setDefaultTableColumns($cols=4) {
+		$this->default_table_columns = intval($cols);
+	}
+
+	/**
+	 * Set the height of the cell (line height) respect the font height.
+	 * @param $h (int) cell proportion respect font height (typical value = 1.25).
+	 * @public
+	 * @since 3.0.014 (2008-06-04)
+	 */
+	public function setCellHeightRatio($h) {
+		$this->cell_height_ratio = $h;
+	}
+
+	/**
+	 * return the height of cell repect font height.
+	 * @public
+	 * @since 4.0.012 (2008-07-24)
+	 */
+	public function getCellHeightRatio() {
+		return $this->cell_height_ratio;
+	}
+
+	/**
+	 * Set the PDF version (check PDF reference for valid values).
+	 * @param $version (string) PDF document version.
+	 * @public
+	 * @since 3.1.000 (2008-06-09)
+	 */
+	public function setPDFVersion($version='1.7') {
+		$this->PDFVersion = $version;
+	}
+
+	/**
+	 * Set the viewer preferences dictionary controlling the way the document is to be presented on the screen or in print.
+	 * (see Section 8.1 of PDF reference, "Viewer Preferences").
+	 * <ul><li>HideToolbar boolean (Optional) A flag specifying whether to hide the viewer application's tool bars when the document is active. Default value: false.</li><li>HideMenubar boolean (Optional) A flag specifying whether to hide the viewer application's menu bar when the document is active. Default value: false.</li><li>HideWindowUI boolean (Optional) A flag specifying whether to hide user interface elements in the document's window (such as scroll bars and navigation controls), leaving only the document's contents displayed. Default value: false.</li><li>FitWindow boolean (Optional) A flag specifying whether to resize the document's window to fit the size of the first displayed page. Default value: false.</li><li>CenterWindow boolean (Optional) A flag specifying whether to position the document's window in the center of the screen. Default value: false.</li><li>DisplayDocTitle boolean (Optional; PDF 1.4) A flag specifying whether the window's title bar should display the document title taken from the Title entry of the document information dictionary (see Section 10.2.1, "Document Information Dictionary"). If false, the title bar should instead display the name of the PDF file containing the document. Default value: false.</li><li>NonFullScreenPageMode name (Optional) The document's page mode, specifying how to display the document on exiting full-screen mode:<ul><li>UseNone Neither document outline nor thumbnail images visible</li><li>UseOutlines Document outline visible</li><li>UseThumbs Thumbnail images visible</li><li>UseOC Optional content group panel visible</li></ul>This entry is meaningful only if the value of the PageMode entry in the catalog dictionary (see Section 3.6.1, "Document Catalog") is FullScreen; it is ignored otherwise. Default value: UseNone.</li><li>ViewArea name (Optional; PDF 1.4) The name of the page boundary representing the area of a page to be displayed when viewing the document on the screen. Valid values are (see Section 10.10.1, "Page Boundaries").:<ul><li>MediaBox</li><li>CropBox (default)</li><li>BleedBox</li><li>TrimBox</li><li>ArtBox</li></ul></li><li>ViewClip name (Optional; PDF 1.4) The name of the page boundary to which the contents of a page are to be clipped when viewing the document on the screen. Valid values are (see Section 10.10.1, "Page Boundaries").:<ul><li>MediaBox</li><li>CropBox (default)</li><li>BleedBox</li><li>TrimBox</li><li>ArtBox</li></ul></li><li>PrintArea name (Optional; PDF 1.4) The name of the page boundary representing the area of a page to be rendered when printing the document. Valid values are (see Section 10.10.1, "Page Boundaries").:<ul><li>MediaBox</li><li>CropBox (default)</li><li>BleedBox</li><li>TrimBox</li><li>ArtBox</li></ul></li><li>PrintClip name (Optional; PDF 1.4) The name of the page boundary to which the contents of a page are to be clipped when printing the document. Valid values are (see Section 10.10.1, "Page Boundaries").:<ul><li>MediaBox</li><li>CropBox (default)</li><li>BleedBox</li><li>TrimBox</li><li>ArtBox</li></ul></li><li>PrintScaling name (Optional; PDF 1.6) The page scaling option to be selected when a print dialog is displayed for this document. Valid values are: <ul><li>None, which indicates that the print dialog should reflect no page scaling</li><li>AppDefault (default), which indicates that applications should use the current print scaling</li></ul></li><li>Duplex name (Optional; PDF 1.7) The paper handling option to use when printing the file from the print dialog. The following values are valid:<ul><li>Simplex - Print single-sided</li><li>DuplexFlipShortEdge - Duplex and flip on the short edge of the sheet</li><li>DuplexFlipLongEdge - Duplex and flip on the long edge of the sheet</li></ul>Default value: none</li><li>PickTrayByPDFSize boolean (Optional; PDF 1.7) A flag specifying whether the PDF page size is used to select the input paper tray. This setting influences only the preset values used to populate the print dialog presented by a PDF viewer application. If PickTrayByPDFSize is true, the check box in the print dialog associated with input paper tray is checked. Note: This setting has no effect on Mac OS systems, which do not provide the ability to pick the input tray by size.</li><li>PrintPageRange array (Optional; PDF 1.7) The page numbers used to initialize the print dialog box when the file is printed. The first page of the PDF file is denoted by 1. Each pair consists of the first and last pages in the sub-range. An odd number of integers causes this entry to be ignored. Negative numbers cause the entire array to be ignored. Default value: as defined by PDF viewer application</li><li>NumCopies integer (Optional; PDF 1.7) The number of copies to be printed when the print dialog is opened for this file. Supported values are the integers 2 through 5. Values outside this range are ignored. Default value: as defined by PDF viewer application, but typically 1</li></ul>
+	 * @param $preferences (array) array of options.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 3.1.000 (2008-06-09)
+	 */
+	public function setViewerPreferences($preferences) {
+		$this->viewer_preferences = $preferences;
+	}
+
+	/**
+	 * Paints color transition registration bars
+	 * @param $x (float) abscissa of the top left corner of the rectangle.
+	 * @param $y (float) ordinate of the top left corner of the rectangle.
+	 * @param $w (float) width of the rectangle.
+	 * @param $h (float) height of the rectangle.
+	 * @param $transition (boolean) if true prints tcolor transitions to white.
+	 * @param $vertical (boolean) if true prints bar vertically.
+	 * @param $colors (string) colors to print, one letter per color separated by comma (for example 'A,W,R,G,B,C,M,Y,K'): A=black, W=white, R=red, G=green, B=blue, C=cyan, M=magenta, Y=yellow, K=black.
+	 * @author Nicola Asuni
+	 * @since 4.9.000 (2010-03-26)
+	 * @public
+	 */
+	public function colorRegistrationBar($x, $y, $w, $h, $transition=true, $vertical=false, $colors='A,R,G,B,C,M,Y,K') {
+		$bars = explode(',', $colors);
+		$numbars = count($bars); // number of bars to print
+		// set bar measures
+		if ($vertical) {
+			$coords = array(0, 0, 0, 1);
+			$wb = $w / $numbars; // bar width
+			$hb = $h; // bar height
+			$xd = $wb; // delta x
+			$yd = 0; // delta y
+		} else {
+			$coords = array(1, 0, 0, 0);
+			$wb = $w; // bar width
+			$hb = $h / $numbars; // bar height
+			$xd = 0; // delta x
+			$yd = $hb; // delta y
+		}
+		$xb = $x;
+		$yb = $y;
+		foreach ($bars as $col) {
+			switch ($col) {
+				// set transition colors
+				case 'A': { // BLACK
+					$col_a = array(255);
+					$col_b = array(0);
 					break;
 				}
-				case 'screen': {
-					$this->_out('/OC /OC2 BDC');
-					$this->openMarkedContent = true;
+				case 'W': { // WHITE
+					$col_a = array(0);
+					$col_b = array(255);
 					break;
 				}
-				case 'all': {
-					$this->_out('');
+				case 'R': { // R
+					$col_a = array(255,255,255);
+					$col_b = array(255,0,0);
 					break;
 				}
-				default: {
-					$this->Error('Incorrect visibility: '.$v);
+				case 'G': { // G
+					$col_a = array(255,255,255);
+					$col_b = array(0,255,0);
 					break;
 				}
-			}
-			$this->visibility = $v;
-		}
-
-		/**
-		 * Add transparency parameters to the current extgstate
-		 * @param array $params parameters
-		 * @return the number of extgstates
-		 * @access protected
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		protected function addExtGState($parms) {
-			$n = count($this->extgstates) + 1;
-			// check if this ExtGState already exist
-			for ($i = 1; $i < $n; ++$i) {
-				if ($this->extgstates[$i]['parms'] == $parms) {
-					// return reference to existing ExtGState
-					return $i;
-				}
-			}
-			$this->extgstates[$n]['parms'] = $parms;
-			return $n;
-		}
-
-		/**
-		 * Add an extgstate
-		 * @param array $gs extgstate
-		 * @access protected
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		protected function setExtGState($gs) {
-			$this->_out(sprintf('/GS%d gs', $gs));
-		}
-
-		/**
-		 * Put extgstates for object transparency
-		 * @param array $gs extgstate
-		 * @access protected
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		protected function _putextgstates() {
-			$ne = count($this->extgstates);
-			for ($i = 1; $i <= $ne; ++$i) {
-				$this->_newobj();
-				$this->extgstates[$i]['n'] = $this->n;
-				$out = '<< /Type /ExtGState';
-				foreach ($this->extgstates[$i]['parms'] as $k => $v) {
-					if (is_float($v)) {
-						$v = sprintf('%.2F', $v);
-					}
-					$out .= ' /'.$k.' '.$v;
+				case 'B': { // B
+					$col_a = array(255,255,255);
+					$col_b = array(0,0,255);
+					break;
 				}
-				$out .= ' >>';
-				$out .= "\n".'endobj';
-				$this->_out($out);
+				case 'C': { // C
+					$col_a = array(0,0,0,0);
+					$col_b = array(100,0,0,0);
+					break;
+				}
+				case 'M': { // M
+					$col_a = array(0,0,0,0);
+					$col_b = array(0,100,0,0);
+					break;
+				}
+				case 'Y': { // Y
+					$col_a = array(0,0,0,0);
+					$col_b = array(0,0,100,0);
+					break;
+				}
+				case 'K': { // K
+					$col_a = array(0,0,0,0);
+					$col_b = array(0,0,0,100);
+					break;
+				}
+				default: { // GRAY
+					$col_a = array(255);
+					$col_b = array(0);
+					break;
+				}
+			}
+			if ($transition) {
+				// color gradient
+				$this->LinearGradient($xb, $yb, $wb, $hb, $col_a, $col_b, $coords);
+			} else {
+				// color rectangle
+				$this->SetFillColorArray($col_b);
+				$this->Rect($xb, $yb, $wb, $hb, 'F', array());
 			}
+			$xb += $xd;
+			$yb += $yd;
 		}
+	}
 
-		/**
-		 * Set alpha for stroking (CA) and non-stroking (ca) operations.
-		 * @param float $alpha real value from 0 (transparent) to 1 (opaque)
-		 * @param string $bm blend mode, one of the following: Normal, Multiply, Screen, Overlay, Darken, Lighten, ColorDodge, ColorBurn, HardLight, SoftLight, Difference, Exclusion, Hue, Saturation, Color, Luminosity
-		 * @access public
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		public function setAlpha($alpha, $bm='Normal') {
-			$gs = $this->addExtGState(array('ca' => $alpha, 'CA' => $alpha, 'BM' => '/'.$bm, 'AIS' => 'false'));
-			$this->setExtGState($gs);
-		}
-
-		/**
-		 * Set the default JPEG compression quality (1-100)
-		 * @param int $quality JPEG quality, integer between 1 and 100
-		 * @access public
-		 * @since 3.0.000 (2008-03-27)
-		 */
-		public function setJPEGQuality($quality) {
-			if (($quality < 1) OR ($quality > 100)) {
-				$quality = 75;
-			}
-			$this->jpeg_quality = intval($quality);
-		}
-
-		/**
-		 * Set the default number of columns in a row for HTML tables.
-		 * @param int $cols number of columns
-		 * @access public
-		 * @since 3.0.014 (2008-06-04)
-		 */
-		public function setDefaultTableColumns($cols=4) {
-			$this->default_table_columns = intval($cols);
-		}
-
-		/**
-		 * Set the height of the cell (line height) respect the font height.
-		 * @param int $h cell proportion respect font height (typical value = 1.25).
-		 * @access public
-		 * @since 3.0.014 (2008-06-04)
-		 */
-		public function setCellHeightRatio($h) {
-			$this->cell_height_ratio = $h;
-		}
-
-		/**
-		 * return the height of cell repect font height.
-		 * @access public
-		 * @since 4.0.012 (2008-07-24)
-		 */
-		public function getCellHeightRatio() {
-			return $this->cell_height_ratio;
-		}
-
-		/**
-		 * Set the PDF version (check PDF reference for valid values).
-		 * Default value is 1.t
-		 * @access public
-		 * @since 3.1.000 (2008-06-09)
-		 */
-		public function setPDFVersion($version='1.7') {
-			$this->PDFVersion = $version;
-		}
-
-		/**
-		 * Set the viewer preferences dictionary controlling the way the document is to be presented on the screen or in print.
-		 * (see Section 8.1 of PDF reference, "Viewer Preferences").
-		 * <ul><li>HideToolbar boolean (Optional) A flag specifying whether to hide the viewer application's tool bars when the document is active. Default value: false.</li><li>HideMenubar boolean (Optional) A flag specifying whether to hide the viewer application's menu bar when the document is active. Default value: false.</li><li>HideWindowUI boolean (Optional) A flag specifying whether to hide user interface elements in the document's window (such as scroll bars and navigation controls), leaving only the document's contents displayed. Default value: false.</li><li>FitWindow boolean (Optional) A flag specifying whether to resize the document's window to fit the size of the first displayed page. Default value: false.</li><li>CenterWindow boolean (Optional) A flag specifying whether to position the document's window in the center of the screen. Default value: false.</li><li>DisplayDocTitle boolean (Optional; PDF 1.4) A flag specifying whether the window's title bar should display the document title taken from the Title entry of the document information dictionary (see Section 10.2.1, "Document Information Dictionary"). If false, the title bar should instead display the name of the PDF file containing the document. Default value: false.</li><li>NonFullScreenPageMode name (Optional) The document's page mode, specifying how to display the document on exiting full-screen mode:<ul><li>UseNone Neither document outline nor thumbnail images visible</li><li>UseOutlines Document outline visible</li><li>UseThumbs Thumbnail images visible</li><li>UseOC Optional content group panel visible</li></ul>This entry is meaningful only if the value of the PageMode entry in the catalog dictionary (see Section 3.6.1, "Document Catalog") is FullScreen; it is ignored otherwise. Default value: UseNone.</li><li>ViewArea name (Optional; PDF 1.4) The name of the page boundary representing the area of a page to be displayed when viewing the document on the screen. Valid values are (see Section 10.10.1, "Page Boundaries").:<ul><li>MediaBox</li><li>CropBox (default)</li><li>BleedBox</li><li>TrimBox</li><li>ArtBox</li></ul></li><li>ViewClip name (Optional; PDF 1.4) The name of the page boundary to which the contents of a page are to be clipped when viewing the document on the screen. Valid values are (see Section 10.10.1, "Page Boundaries").:<ul><li>MediaBox</li><li>CropBox (default)</li><li>BleedBox</li><li>TrimBox</li><li>ArtBox</li></ul></li><li>PrintArea name (Optional; PDF 1.4) The name of the page boundary representing the area of a page to be rendered when printing the document. Valid values are (see Section 10.10.1, "Page Boundaries").:<ul><li>MediaBox</li><li>CropBox (default)</li><li>BleedBox</li><li>TrimBox</li><li>ArtBox</li></ul></li><li>PrintClip name (Optional; PDF 1.4) The name of the page boundary to which the contents of a page are to be clipped when printing the document. Valid values are (see Section 10.10.1, "Page Boundaries").:<ul><li>MediaBox</li><li>CropBox (default)</li><li>BleedBox</li><li>TrimBox</li><li>ArtBox</li></ul></li><li>PrintScaling name (Optional; PDF 1.6) The page scaling option to be selected when a print dialog is displayed for this document. Valid values are: <ul><li>None, which indicates that the print dialog should reflect no page scaling</li><li>AppDefault (default), which indicates that applications should use the current print scaling</li></ul></li><li>Duplex name (Optional; PDF 1.7) The paper handling option to use when printing the file from the print dialog. The following values are valid:<ul><li>Simplex - Print single-sided</li><li>DuplexFlipShortEdge - Duplex and flip on the short edge of the sheet</li><li>DuplexFlipLongEdge - Duplex and flip on the long edge of the sheet</li></ul>Default value: none</li><li>PickTrayByPDFSize boolean (Optional; PDF 1.7) A flag specifying whether the PDF page size is used to select the input paper tray. This setting influences only the preset values used to populate the print dialog presented by a PDF viewer application. If PickTrayByPDFSize is true, the check box in the print dialog associated with input paper tray is checked. Note: This setting has no effect on Mac OS systems, which do not provide the ability to pick the input tray by size.</li><li>PrintPageRange array (Optional; PDF 1.7) The page numbers used to initialize the print dialog box when the file is printed. The first page of the PDF file is denoted by 1. Each pair consists of the first and last pages in the sub-range. An odd number of integers causes this entry to be ignored. Negative numbers cause the entire array to be ignored. Default value: as defined by PDF viewer application</li><li>NumCopies integer (Optional; PDF 1.7) The number of copies to be printed when the print dialog is opened for this file. Supported values are the integers 2 through 5. Values outside this range are ignored. Default value: as defined by PDF viewer application, but typically 1</li></ul>
-		 * @param array $preferences array of options.
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 3.1.000 (2008-06-09)
-		 */
-		public function setViewerPreferences($preferences) {
-			$this->viewer_preferences = $preferences;
-		}
-
-		/**
-		 * Paints color transition registration bars
-		 * @param float $x abscissa of the top left corner of the rectangle.
-		 * @param float $y ordinate of the top left corner of the rectangle.
-		 * @param float $w width of the rectangle.
-		 * @param float $h height of the rectangle.
-		 * @param boolean $transition if true prints tcolor transitions to white.
-		 * @param boolean $vertical if true prints bar vertically.
-		 * @param string $colors colors to print, one letter per color separated by comma (for example 'A,W,R,G,B,C,M,Y,K'): A=black, W=white, R=red, G=green, B=blue, C=cyan, M=magenta, Y=yellow, K=black.
-		 * @author Nicola Asuni
-		 * @since 4.9.000 (2010-03-26)
-		 * @access public
-		 */
-		public function colorRegistrationBar($x, $y, $w, $h, $transition=true, $vertical=false, $colors='A,R,G,B,C,M,Y,K') {
-			$bars = explode(',', $colors);
-			$numbars = count($bars); // number of bars to print
-			// set bar measures
-			if ($vertical) {
-				$coords = array(0, 0, 0, 1);
-				$wb = $w / $numbars; // bar width
-				$hb = $h; // bar height
-				$xd = $wb; // delta x
-				$yd = 0; // delta y
-			} else {
-				$coords = array(1, 0, 0, 0);
-				$wb = $w; // bar width
-				$hb = $h / $numbars; // bar height
-				$xd = 0; // delta x
-				$yd = $hb; // delta y
-			}
-			$xb = $x;
-			$yb = $y;
-			foreach ($bars as $col) {
-				switch ($col) {
-					// set transition colors
-					case 'A': { // BLACK
-						$col_a = array(255);
-						$col_b = array(0);
-						break;
-					}
-					case 'W': { // WHITE
-						$col_a = array(0);
-						$col_b = array(255);
-						break;
-					}
-					case 'R': { // R
-						$col_a = array(255,255,255);
-						$col_b = array(255,0,0);
-						break;
-					}
-					case 'G': { // G
-						$col_a = array(255,255,255);
-						$col_b = array(0,255,0);
-						break;
-					}
-					case 'B': { // B
-						$col_a = array(255,255,255);
-						$col_b = array(0,0,255);
-						break;
-					}
-					case 'C': { // C
-						$col_a = array(0,0,0,0);
-						$col_b = array(100,0,0,0);
-						break;
-					}
-					case 'M': { // M
-						$col_a = array(0,0,0,0);
-						$col_b = array(0,100,0,0);
-						break;
-					}
-					case 'Y': { // Y
-						$col_a = array(0,0,0,0);
-						$col_b = array(0,0,100,0);
-						break;
-					}
-					case 'K': { // K
-						$col_a = array(0,0,0,0);
-						$col_b = array(0,0,0,100);
-						break;
-					}
-					default: { // GRAY
-						$col_a = array(255);
-						$col_b = array(0);
-						break;
-					}
+	/**
+	 * Paints crop mark
+	 * @param $x (float) abscissa of the crop mark center.
+	 * @param $y (float) ordinate of the crop mark center.
+	 * @param $w (float) width of the crop mark.
+	 * @param $h (float) height of the crop mark.
+	 * @param $type (string) type of crop mark, one sybol per type separated by comma: A = top left, B = top right, C = bottom left, D = bottom right.
+	 * @param $color (array) crop mark color (default black).
+	 * @author Nicola Asuni
+	 * @since 4.9.000 (2010-03-26)
+	 * @public
+	 */
+	public function cropMark($x, $y, $w, $h, $type='A,B,C,D', $color=array(0,0,0)) {
+		$this->SetLineStyle(array('width' => (0.5 / $this->k), 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => $color));
+		$crops = explode(',', $type);
+		$numcrops = count($crops); // number of crop marks to print
+		$dw = $w / 4; // horizontal space to leave before the intersection point
+		$dh = $h / 4; // vertical space to leave before the intersection point
+		foreach ($crops as $crop) {
+			switch ($crop) {
+				case 'A': {
+					$x1 = $x;
+					$y1 = $y - $h;
+					$x2 = $x;
+					$y2 = $y - $dh;
+					$x3 = $x - $w;
+					$y3 = $y;
+					$x4 = $x - $dw;
+					$y4 = $y;
+					break;
 				}
-				if ($transition) {
-					// color gradient
-					$this->LinearGradient($xb, $yb, $wb, $hb, $col_a, $col_b, $coords);
-				} else {
-					// color rectangle
-					$this->SetFillColorArray($col_b);
-					$this->Rect($xb, $yb, $wb, $hb, 'F', array());
-				}
-				$xb += $xd;
-				$yb += $yd;
-			}
-		}
-
-		/**
-		 * Paints crop mark
-		 * @param float $x abscissa of the crop mark center.
-		 * @param float $y ordinate of the crop mark center.
-		 * @param float $w width of the crop mark.
-		 * @param float $h height of the crop mark.
-		 * @param string $type type of crop mark, one sybol per type separated by comma: A = top left, B = top right, C = bottom left, D = bottom right.
-		 * @param array $color crop mark color (default black).
-		 * @author Nicola Asuni
-		 * @since 4.9.000 (2010-03-26)
-		 * @access public
-		 */
-		public function cropMark($x, $y, $w, $h, $type='A,B,C,D', $color=array(0,0,0)) {
-			$this->SetLineStyle(array('width' => (0.5 / $this->k), 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => $color));
-			$crops = explode(',', $type);
-			$numcrops = count($crops); // number of crop marks to print
-			$dw = $w / 4; // horizontal space to leave before the intersection point
-			$dh = $h / 4; // vertical space to leave before the intersection point
-			foreach ($crops as $crop) {
-				switch ($crop) {
-					case 'A': {
-						$x1 = $x;
-						$y1 = $y - $h;
-						$x2 = $x;
-						$y2 = $y - $dh;
-						$x3 = $x - $w;
-						$y3 = $y;
-						$x4 = $x - $dw;
-						$y4 = $y;
-						break;
-					}
-					case 'B': {
-						$x1 = $x;
-						$y1 = $y - $h;
-						$x2 = $x;
-						$y2 = $y - $dh;
-						$x3 = $x + $dw;
-						$y3 = $y;
-						$x4 = $x + $w;
-						$y4 = $y;
-						break;
-					}
-					case 'C': {
-						$x1 = $x - $w;
-						$y1 = $y;
-						$x2 = $x - $dw;
-						$y2 = $y;
-						$x3 = $x;
-						$y3 = $y + $dh;
-						$x4 = $x;
-						$y4 = $y + $h;
-						break;
-					}
-					case 'D': {
-						$x1 = $x + $dw;
-						$y1 = $y;
-						$x2 = $x + $w;
-						$y2 = $y;
-						$x3 = $x;
-						$y3 = $y + $dh;
-						$x4 = $x;
-						$y4 = $y + $h;
-						break;
-					}
+				case 'B': {
+					$x1 = $x;
+					$y1 = $y - $h;
+					$x2 = $x;
+					$y2 = $y - $dh;
+					$x3 = $x + $dw;
+					$y3 = $y;
+					$x4 = $x + $w;
+					$y4 = $y;
+					break;
+				}
+				case 'C': {
+					$x1 = $x - $w;
+					$y1 = $y;
+					$x2 = $x - $dw;
+					$y2 = $y;
+					$x3 = $x;
+					$y3 = $y + $dh;
+					$x4 = $x;
+					$y4 = $y + $h;
+					break;
+				}
+				case 'D': {
+					$x1 = $x + $dw;
+					$y1 = $y;
+					$x2 = $x + $w;
+					$y2 = $y;
+					$x3 = $x;
+					$y3 = $y + $dh;
+					$x4 = $x;
+					$y4 = $y + $h;
+					break;
 				}
-				$this->Line($x1, $y1, $x2, $y2);
-				$this->Line($x3, $y3, $x4, $y4);
 			}
+			$this->Line($x1, $y1, $x2, $y2);
+			$this->Line($x3, $y3, $x4, $y4);
 		}
+	}
 
-		/**
-		 * Paints a registration mark
-		 * @param float $x abscissa of the registration mark center.
-		 * @param float $y ordinate of the registration mark center.
-		 * @param float $r radius of the crop mark.
-		 * @param boolean $double if true print two concentric crop marks.
-		 * @param array $cola crop mark color (default black).
-		 * @param array $colb second crop mark color.
-		 * @author Nicola Asuni
-		 * @since 4.9.000 (2010-03-26)
-		 * @access public
-		 */
-		public function registrationMark($x, $y, $r, $double=false, $cola=array(0,0,0), $colb=array(255,255,255)) {
-			$line_style = array('width' => (0.5 / $this->k), 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => $cola);
+	/**
+	 * Paints a registration mark
+	 * @param $x (float) abscissa of the registration mark center.
+	 * @param $y (float) ordinate of the registration mark center.
+	 * @param $r (float) radius of the crop mark.
+	 * @param $double (boolean) if true print two concentric crop marks.
+	 * @param $cola (array) crop mark color (default black).
+	 * @param $colb (array) second crop mark color.
+	 * @author Nicola Asuni
+	 * @since 4.9.000 (2010-03-26)
+	 * @public
+	 */
+	public function registrationMark($x, $y, $r, $double=false, $cola=array(0,0,0), $colb=array(255,255,255)) {
+		$line_style = array('width' => (0.5 / $this->k), 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => $cola);
+		$this->SetFillColorArray($cola);
+		$this->PieSector($x, $y, $r, 90, 180, 'F');
+		$this->PieSector($x, $y, $r, 270, 360, 'F');
+		$this->Circle($x, $y, $r, 0, 360, 'C', $line_style, array(), 8);
+		if ($double) {
+			$r2 = $r * 0.5;
+			$this->SetFillColorArray($colb);
+			$this->PieSector($x, $y, $r2, 90, 180, 'F');
+			$this->PieSector($x, $y, $r2, 270, 360, 'F');
 			$this->SetFillColorArray($cola);
-			$this->PieSector($x, $y, $r, 90, 180, 'F');
-			$this->PieSector($x, $y, $r, 270, 360, 'F');
-			$this->Circle($x, $y, $r, 0, 360, 'C', $line_style, array(), 8);
-			if ($double) {
-				$r2 = $r * 0.5;
-				$this->SetFillColorArray($colb);
-				$this->PieSector($x, $y, $r2, 90, 180, 'F');
-				$this->PieSector($x, $y, $r2, 270, 360, 'F');
-				$this->SetFillColorArray($cola);
-				$this->PieSector($x, $y, $r2, 0, 90, 'F');
-				$this->PieSector($x, $y, $r2, 180, 270, 'F');
-				$this->Circle($x, $y, $r2, 0, 360, 'C', $line_style, array(), 8);
-			}
-		}
-
-		/**
-		 * Paints a linear colour gradient.
-		 * @param float $x abscissa of the top left corner of the rectangle.
-		 * @param float $y ordinate of the top left corner of the rectangle.
-		 * @param float $w width of the rectangle.
-		 * @param float $h height of the rectangle.
-		 * @param array $col1 first color (Grayscale, RGB or CMYK components).
-		 * @param array $col2 second color (Grayscale, RGB or CMYK components).
-		 * @param array $coords array of the form (x1, y1, x2, y2) which defines the gradient vector (see linear_gradient_coords.jpg). The default value is from left to right (x1=0, y1=0, x2=1, y2=0).
-		 * @author Andreas W�rmser, Nicola Asuni
-		 * @since 3.1.000 (2008-06-09)
-		 * @access public
-		 */
-		public function LinearGradient($x, $y, $w, $h, $col1=array(), $col2=array(), $coords=array(0,0,1,0)) {
-			$this->Clip($x, $y, $w, $h);
-			$this->Gradient(2, $coords, array(array('color' => $col1, 'offset' => 0, 'exponent' => 1), array('color' => $col2, 'offset' => 1, 'exponent' => 1)), array(), false);
-		}
-
-		/**
-		 * Paints a radial colour gradient.
-		 * @param float $x abscissa of the top left corner of the rectangle.
-		 * @param float $y ordinate of the top left corner of the rectangle.
-		 * @param float $w width of the rectangle.
-		 * @param float $h height of the rectangle.
-		 * @param array $col1 first color (Grayscale, RGB or CMYK components).
-		 * @param array $col2 second color (Grayscale, RGB or CMYK components).
-		 * @param array $coords array of the form (fx, fy, cx, cy, r) where (fx, fy) is the starting point of the gradient with color1, (cx, cy) is the center of the circle with color2, and r is the radius of the circle (see radial_gradient_coords.jpg). (fx, fy) should be inside the circle, otherwise some areas will not be defined.
-		 * @author Andreas W�rmser, Nicola Asuni
-		 * @since 3.1.000 (2008-06-09)
-		 * @access public
-		 */
-		public function RadialGradient($x, $y, $w, $h, $col1=array(), $col2=array(), $coords=array(0.5,0.5,0.5,0.5,1)) {
-			$this->Clip($x, $y, $w, $h);
-			$this->Gradient(3, $coords, array(array('color' => $col1, 'offset' => 0, 'exponent' => 1), array('color' => $col2, 'offset' => 1, 'exponent' => 1)), array(), false);
-		}
-
-		/**
-		 * Paints a coons patch mesh.
-		 * @param float $x abscissa of the top left corner of the rectangle.
-		 * @param float $y ordinate of the top left corner of the rectangle.
-		 * @param float $w width of the rectangle.
-		 * @param float $h height of the rectangle.
-		 * @param array $col1 first color (lower left corner) (RGB components).
-		 * @param array $col2 second color (lower right corner) (RGB components).
-		 * @param array $col3 third color (upper right corner) (RGB components).
-		 * @param array $col4 fourth color (upper left corner) (RGB components).
-		 * @param array $coords <ul><li>for one patch mesh: array(float x1, float y1, .... float x12, float y12): 12 pairs of coordinates (normally from 0 to 1) which specify the Bezier control points that define the patch. First pair is the lower left edge point, next is its right control point (control point 2). Then the other points are defined in the order: control point 1, edge point, control point 2 going counter-clockwise around the patch. Last (x12, y12) is the first edge point's left control point (control point 1).</li><li>for two or more patch meshes: array[number of patches]: arrays with the following keys for each patch: f: where to put that patch (0 = first patch, 1, 2, 3 = right, top and left of precedent patch - I didn't figure this out completely - just try and error ;-) points: 12 pairs of coordinates of the Bezier control points as above for the first patch, 8 pairs of coordinates for the following patches, ignoring the coordinates already defined by the precedent patch (I also didn't figure out the order of these - also: try and see what's happening) colors: must be 4 colors for the first patch, 2 colors for the following patches</li></ul>
-		 * @param array $coords_min minimum value used by the coordinates. If a coordinate's value is smaller than this it will be cut to coords_min. default: 0
-		 * @param array $coords_max maximum value used by the coordinates. If a coordinate's value is greater than this it will be cut to coords_max. default: 1
-		 * @param boolean $antialias A flag indicating whether to filter the shading function to prevent aliasing artifacts.
-		 * @author Andreas W�rmser, Nicola Asuni
-		 * @since 3.1.000 (2008-06-09)
-		 * @access public
-		 */
-		public function CoonsPatchMesh($x, $y, $w, $h, $col1=array(), $col2=array(), $col3=array(), $col4=array(), $coords=array(0.00,0.0,0.33,0.00,0.67,0.00,1.00,0.00,1.00,0.33,1.00,0.67,1.00,1.00,0.67,1.00,0.33,1.00,0.00,1.00,0.00,0.67,0.00,0.33), $coords_min=0, $coords_max=1, $antialias=false) {
-			$this->Clip($x, $y, $w, $h);
-			$n = count($this->gradients) + 1;
-			$this->gradients[$n] = array();
-			$this->gradients[$n]['type'] = 6; //coons patch mesh
-			$this->gradients[$n]['coords'] = array();
-			$this->gradients[$n]['antialias'] = $antialias;
-			$this->gradients[$n]['colors'] = array();
-			$this->gradients[$n]['transparency'] = false;
-			//check the coords array if it is the simple array or the multi patch array
-			if (!isset($coords[0]['f'])) {
-				//simple array -> convert to multi patch array
-				if (!isset($col1[1])) {
-					$col1[1] = $col1[2] = $col1[0];
-				}
-				if (!isset($col2[1])) {
-					$col2[1] = $col2[2] = $col2[0];
-				}
-				if (!isset($col3[1])) {
-					$col3[1] = $col3[2] = $col3[0];
-				}
-				if (!isset($col4[1])) {
-					$col4[1] = $col4[2] = $col4[0];
-				}
-				$patch_array[0]['f'] = 0;
-				$patch_array[0]['points'] = $coords;
-				$patch_array[0]['colors'][0]['r'] = $col1[0];
-				$patch_array[0]['colors'][0]['g'] = $col1[1];
-				$patch_array[0]['colors'][0]['b'] = $col1[2];
-				$patch_array[0]['colors'][1]['r'] = $col2[0];
-				$patch_array[0]['colors'][1]['g'] = $col2[1];
-				$patch_array[0]['colors'][1]['b'] = $col2[2];
-				$patch_array[0]['colors'][2]['r'] = $col3[0];
-				$patch_array[0]['colors'][2]['g'] = $col3[1];
-				$patch_array[0]['colors'][2]['b'] = $col3[2];
-				$patch_array[0]['colors'][3]['r'] = $col4[0];
-				$patch_array[0]['colors'][3]['g'] = $col4[1];
-				$patch_array[0]['colors'][3]['b'] = $col4[2];
-			} else {
-				//multi patch array
-				$patch_array = $coords;
-			}
-			$bpcd = 65535; //16 bits per coordinate
-			//build the data stream
-			$this->gradients[$n]['stream'] = '';
-			$count_patch = count($patch_array);
-			for ($i=0; $i < $count_patch; ++$i) {
-				$this->gradients[$n]['stream'] .= chr($patch_array[$i]['f']); //start with the edge flag as 8 bit
-				$count_points = count($patch_array[$i]['points']);
-				for ($j=0; $j < $count_points; ++$j) {
-					//each point as 16 bit
-					$patch_array[$i]['points'][$j] = (($patch_array[$i]['points'][$j] - $coords_min) / ($coords_max - $coords_min)) * $bpcd;
-					if ($patch_array[$i]['points'][$j] < 0) {
-						$patch_array[$i]['points'][$j] = 0;
-					}
-					if ($patch_array[$i]['points'][$j] > $bpcd) {
-						$patch_array[$i]['points'][$j] = $bpcd;
-					}
-					$this->gradients[$n]['stream'] .= chr(floor($patch_array[$i]['points'][$j] / 256));
-					$this->gradients[$n]['stream'] .= chr(floor($patch_array[$i]['points'][$j] % 256));
-				}
-				$count_cols = count($patch_array[$i]['colors']);
-				for ($j=0; $j < $count_cols; ++$j) {
-					//each color component as 8 bit
-					$this->gradients[$n]['stream'] .= chr($patch_array[$i]['colors'][$j]['r']);
-					$this->gradients[$n]['stream'] .= chr($patch_array[$i]['colors'][$j]['g']);
-					$this->gradients[$n]['stream'] .= chr($patch_array[$i]['colors'][$j]['b']);
-				}
-			}
-			//paint the gradient
-			$this->_out('/Sh'.$n.' sh');
-			//restore previous Graphic State
-			$this->_out('Q');
+			$this->PieSector($x, $y, $r2, 0, 90, 'F');
+			$this->PieSector($x, $y, $r2, 180, 270, 'F');
+			$this->Circle($x, $y, $r2, 0, 360, 'C', $line_style, array(), 8);
 		}
+	}
 
-		/**
-		 * Set a rectangular clipping area.
-		 * @param float $x abscissa of the top left corner of the rectangle (or top right corner for RTL mode).
-		 * @param float $y ordinate of the top left corner of the rectangle.
-		 * @param float $w width of the rectangle.
-		 * @param float $h height of the rectangle.
-		 * @author Andreas W�rmser, Nicola Asuni
-		 * @since 3.1.000 (2008-06-09)
-		 * @access protected
-		 */
-		protected function Clip($x, $y, $w, $h) {
-			if ($this->rtl) {
-				$x = $this->w - $x - $w;
-			}
-			//save current Graphic State
-			$s = 'q';
-			//set clipping area
-			$s .= sprintf(' %.2F %.2F %.2F %.2F re W n', $x*$this->k, ($this->h-$y)*$this->k, $w*$this->k, -$h*$this->k);
-			//set up transformation matrix for gradient
-			$s .= sprintf(' %.3F 0 0 %.3F %.3F %.3F cm', $w*$this->k, $h*$this->k, $x*$this->k, ($this->h-($y+$h))*$this->k);
-			$this->_out($s);
-		}
+	/**
+	 * Paints a linear colour gradient.
+	 * @param $x (float) abscissa of the top left corner of the rectangle.
+	 * @param $y (float) ordinate of the top left corner of the rectangle.
+	 * @param $w (float) width of the rectangle.
+	 * @param $h (float) height of the rectangle.
+	 * @param $col1 (array) first color (Grayscale, RGB or CMYK components).
+	 * @param $col2 (array) second color (Grayscale, RGB or CMYK components).
+	 * @param $coords (array) array of the form (x1, y1, x2, y2) which defines the gradient vector (see linear_gradient_coords.jpg). The default value is from left to right (x1=0, y1=0, x2=1, y2=0).
+	 * @author Andreas Würmser, Nicola Asuni
+	 * @since 3.1.000 (2008-06-09)
+	 * @public
+	 */
+	public function LinearGradient($x, $y, $w, $h, $col1=array(), $col2=array(), $coords=array(0,0,1,0)) {
+		$this->Clip($x, $y, $w, $h);
+		$this->Gradient(2, $coords, array(array('color' => $col1, 'offset' => 0, 'exponent' => 1), array('color' => $col2, 'offset' => 1, 'exponent' => 1)), array(), false);
+	}
 
-		/**
-		 * Output gradient.
-		 * @param int $type type of gradient (1 Function-based shading; 2 Axial shading; 3 Radial shading; 4 Free-form Gouraud-shaded triangle mesh; 5 Lattice-form Gouraud-shaded triangle mesh; 6 Coons patch mesh; 7 Tensor-product patch mesh). (Not all types are currently supported)
-		 * @param array $coords array of coordinates.
-		 * @param array $stops array gradient color components: color = array of GRAY, RGB or CMYK color components; offset = (0 to 1) represents a location along the gradient vector; exponent = exponent of the exponential interpolation function (default = 1).
-		 * @param array $background An array of colour components appropriate to the colour space, specifying a single background colour value.
-		 * @param boolean $antialias A flag indicating whether to filter the shading function to prevent aliasing artifacts.
-		 * @author Nicola Asuni
-		 * @since 3.1.000 (2008-06-09)
-		 * @access public
-		 */
-		public function Gradient($type, $coords, $stops, $background=array(), $antialias=false) {
-			$n = count($this->gradients) + 1;
-			$this->gradients[$n] = array();
-			$this->gradients[$n]['type'] = $type;
-			$this->gradients[$n]['coords'] = $coords;
-			$this->gradients[$n]['antialias'] = $antialias;
-			$this->gradients[$n]['colors'] = array();
-			$this->gradients[$n]['transparency'] = false;
-			// color space
-			$numcolspace = count($stops[0]['color']);
-			$bcolor = array_values($background);
+	/**
+	 * Paints a radial colour gradient.
+	 * @param $x (float) abscissa of the top left corner of the rectangle.
+	 * @param $y (float) ordinate of the top left corner of the rectangle.
+	 * @param $w (float) width of the rectangle.
+	 * @param $h (float) height of the rectangle.
+	 * @param $col1 (array) first color (Grayscale, RGB or CMYK components).
+	 * @param $col2 (array) second color (Grayscale, RGB or CMYK components).
+	 * @param $coords (array) array of the form (fx, fy, cx, cy, r) where (fx, fy) is the starting point of the gradient with color1, (cx, cy) is the center of the circle with color2, and r is the radius of the circle (see radial_gradient_coords.jpg). (fx, fy) should be inside the circle, otherwise some areas will not be defined.
+	 * @author Andreas Würmser, Nicola Asuni
+	 * @since 3.1.000 (2008-06-09)
+	 * @public
+	 */
+	public function RadialGradient($x, $y, $w, $h, $col1=array(), $col2=array(), $coords=array(0.5,0.5,0.5,0.5,1)) {
+		$this->Clip($x, $y, $w, $h);
+		$this->Gradient(3, $coords, array(array('color' => $col1, 'offset' => 0, 'exponent' => 1), array('color' => $col2, 'offset' => 1, 'exponent' => 1)), array(), false);
+	}
+
+	/**
+	 * Paints a coons patch mesh.
+	 * @param $x (float) abscissa of the top left corner of the rectangle.
+	 * @param $y (float) ordinate of the top left corner of the rectangle.
+	 * @param $w (float) width of the rectangle.
+	 * @param $h (float) height of the rectangle.
+	 * @param $col1 (array) first color (lower left corner) (RGB components).
+	 * @param $col2 (array) second color (lower right corner) (RGB components).
+	 * @param $col3 (array) third color (upper right corner) (RGB components).
+	 * @param $col4 (array) fourth color (upper left corner) (RGB components).
+	 * @param $coords (array) <ul><li>for one patch mesh: array(float x1, float y1, .... float x12, float y12): 12 pairs of coordinates (normally from 0 to 1) which specify the Bezier control points that define the patch. First pair is the lower left edge point, next is its right control point (control point 2). Then the other points are defined in the order: control point 1, edge point, control point 2 going counter-clockwise around the patch. Last (x12, y12) is the first edge point's left control point (control point 1).</li><li>for two or more patch meshes: array[number of patches]: arrays with the following keys for each patch: f: where to put that patch (0 = first patch, 1, 2, 3 = right, top and left of precedent patch - I didn't figure this out completely - just try and error ;-) points: 12 pairs of coordinates of the Bezier control points as above for the first patch, 8 pairs of coordinates for the following patches, ignoring the coordinates already defined by the precedent patch (I also didn't figure out the order of these - also: try and see what's happening) colors: must be 4 colors for the first patch, 2 colors for the following patches</li></ul>
+	 * @param $coords_min (array) minimum value used by the coordinates. If a coordinate's value is smaller than this it will be cut to coords_min. default: 0
+	 * @param $coords_max (array) maximum value used by the coordinates. If a coordinate's value is greater than this it will be cut to coords_max. default: 1
+	 * @param $antialias (boolean) A flag indicating whether to filter the shading function to prevent aliasing artifacts.
+	 * @author Andreas Würmser, Nicola Asuni
+	 * @since 3.1.000 (2008-06-09)
+	 * @public
+	 */
+	public function CoonsPatchMesh($x, $y, $w, $h, $col1=array(), $col2=array(), $col3=array(), $col4=array(), $coords=array(0.00,0.0,0.33,0.00,0.67,0.00,1.00,0.00,1.00,0.33,1.00,0.67,1.00,1.00,0.67,1.00,0.33,1.00,0.00,1.00,0.00,0.67,0.00,0.33), $coords_min=0, $coords_max=1, $antialias=false) {
+		$this->Clip($x, $y, $w, $h);
+		$n = count($this->gradients) + 1;
+		$this->gradients[$n] = array();
+		$this->gradients[$n]['type'] = 6; //coons patch mesh
+		$this->gradients[$n]['coords'] = array();
+		$this->gradients[$n]['antialias'] = $antialias;
+		$this->gradients[$n]['colors'] = array();
+		$this->gradients[$n]['transparency'] = false;
+		//check the coords array if it is the simple array or the multi patch array
+		if (!isset($coords[0]['f'])) {
+			//simple array -> convert to multi patch array
+			if (!isset($col1[1])) {
+				$col1[1] = $col1[2] = $col1[0];
+			}
+			if (!isset($col2[1])) {
+				$col2[1] = $col2[2] = $col2[0];
+			}
+			if (!isset($col3[1])) {
+				$col3[1] = $col3[2] = $col3[0];
+			}
+			if (!isset($col4[1])) {
+				$col4[1] = $col4[2] = $col4[0];
+			}
+			$patch_array[0]['f'] = 0;
+			$patch_array[0]['points'] = $coords;
+			$patch_array[0]['colors'][0]['r'] = $col1[0];
+			$patch_array[0]['colors'][0]['g'] = $col1[1];
+			$patch_array[0]['colors'][0]['b'] = $col1[2];
+			$patch_array[0]['colors'][1]['r'] = $col2[0];
+			$patch_array[0]['colors'][1]['g'] = $col2[1];
+			$patch_array[0]['colors'][1]['b'] = $col2[2];
+			$patch_array[0]['colors'][2]['r'] = $col3[0];
+			$patch_array[0]['colors'][2]['g'] = $col3[1];
+			$patch_array[0]['colors'][2]['b'] = $col3[2];
+			$patch_array[0]['colors'][3]['r'] = $col4[0];
+			$patch_array[0]['colors'][3]['g'] = $col4[1];
+			$patch_array[0]['colors'][3]['b'] = $col4[2];
+		} else {
+			//multi patch array
+			$patch_array = $coords;
+		}
+		$bpcd = 65535; //16 bits per coordinate
+		//build the data stream
+		$this->gradients[$n]['stream'] = '';
+		$count_patch = count($patch_array);
+		for ($i=0; $i < $count_patch; ++$i) {
+			$this->gradients[$n]['stream'] .= chr($patch_array[$i]['f']); //start with the edge flag as 8 bit
+			$count_points = count($patch_array[$i]['points']);
+			for ($j=0; $j < $count_points; ++$j) {
+				//each point as 16 bit
+				$patch_array[$i]['points'][$j] = (($patch_array[$i]['points'][$j] - $coords_min) / ($coords_max - $coords_min)) * $bpcd;
+				if ($patch_array[$i]['points'][$j] < 0) {
+					$patch_array[$i]['points'][$j] = 0;
+				}
+				if ($patch_array[$i]['points'][$j] > $bpcd) {
+					$patch_array[$i]['points'][$j] = $bpcd;
+				}
+				$this->gradients[$n]['stream'] .= chr(floor($patch_array[$i]['points'][$j] / 256));
+				$this->gradients[$n]['stream'] .= chr(floor($patch_array[$i]['points'][$j] % 256));
+			}
+			$count_cols = count($patch_array[$i]['colors']);
+			for ($j=0; $j < $count_cols; ++$j) {
+				//each color component as 8 bit
+				$this->gradients[$n]['stream'] .= chr($patch_array[$i]['colors'][$j]['r']);
+				$this->gradients[$n]['stream'] .= chr($patch_array[$i]['colors'][$j]['g']);
+				$this->gradients[$n]['stream'] .= chr($patch_array[$i]['colors'][$j]['b']);
+			}
+		}
+		//paint the gradient
+		$this->_out('/Sh'.$n.' sh');
+		//restore previous Graphic State
+		$this->_out('Q');
+	}
+
+	/**
+	 * Set a rectangular clipping area.
+	 * @param $x (float) abscissa of the top left corner of the rectangle (or top right corner for RTL mode).
+	 * @param $y (float) ordinate of the top left corner of the rectangle.
+	 * @param $w (float) width of the rectangle.
+	 * @param $h (float) height of the rectangle.
+	 * @author Andreas Würmser, Nicola Asuni
+	 * @since 3.1.000 (2008-06-09)
+	 * @protected
+	 */
+	protected function Clip($x, $y, $w, $h) {
+		if ($this->rtl) {
+			$x = $this->w - $x - $w;
+		}
+		//save current Graphic State
+		$s = 'q';
+		//set clipping area
+		$s .= sprintf(' %.2F %.2F %.2F %.2F re W n', $x*$this->k, ($this->h-$y)*$this->k, $w*$this->k, -$h*$this->k);
+		//set up transformation matrix for gradient
+		$s .= sprintf(' %.3F 0 0 %.3F %.3F %.3F cm', $w*$this->k, $h*$this->k, $x*$this->k, ($this->h-($y+$h))*$this->k);
+		$this->_out($s);
+	}
+
+	/**
+	 * Output gradient.
+	 * @param $type (int) type of gradient (1 Function-based shading; 2 Axial shading; 3 Radial shading; 4 Free-form Gouraud-shaded triangle mesh; 5 Lattice-form Gouraud-shaded triangle mesh; 6 Coons patch mesh; 7 Tensor-product patch mesh). (Not all types are currently supported)
+	 * @param $coords (array) array of coordinates.
+	 * @param $stops (array) array gradient color components: color = array of GRAY, RGB or CMYK color components; offset = (0 to 1) represents a location along the gradient vector; exponent = exponent of the exponential interpolation function (default = 1).
+	 * @param $background (array) An array of colour components appropriate to the colour space, specifying a single background colour value.
+	 * @param $antialias (boolean) A flag indicating whether to filter the shading function to prevent aliasing artifacts.
+	 * @author Nicola Asuni
+	 * @since 3.1.000 (2008-06-09)
+	 * @public
+	 */
+	public function Gradient($type, $coords, $stops, $background=array(), $antialias=false) {
+		$n = count($this->gradients) + 1;
+		$this->gradients[$n] = array();
+		$this->gradients[$n]['type'] = $type;
+		$this->gradients[$n]['coords'] = $coords;
+		$this->gradients[$n]['antialias'] = $antialias;
+		$this->gradients[$n]['colors'] = array();
+		$this->gradients[$n]['transparency'] = false;
+		// color space
+		$numcolspace = count($stops[0]['color']);
+		$bcolor = array_values($background);
+		switch($numcolspace) {
+			case 4: { // CMYK
+				$this->gradients[$n]['colspace'] = 'DeviceCMYK';
+				if (!empty($background)) {
+					$this->gradients[$n]['background'] = sprintf('%.3F %.3F %.3F %.3F', $bcolor[0]/100, $bcolor[1]/100, $bcolor[2]/100, $bcolor[3]/100);
+				}
+				break;
+			}
+			case 3: { // RGB
+				$this->gradients[$n]['colspace'] = 'DeviceRGB';
+				if (!empty($background)) {
+					$this->gradients[$n]['background'] = sprintf('%.3F %.3F %.3F', $bcolor[0]/255, $bcolor[1]/255, $bcolor[2]/255);
+				}
+				break;
+			}
+			case 1: { // Gray scale
+				$this->gradients[$n]['colspace'] = 'DeviceGray';
+				if (!empty($background)) {
+					$this->gradients[$n]['background'] = sprintf('%.3F', $bcolor[0]/255);
+				}
+				break;
+			}
+		}
+		$num_stops = count($stops);
+		$last_stop_id = $num_stops - 1;
+		foreach ($stops as $key => $stop) {
+			$this->gradients[$n]['colors'][$key] = array();
+			// offset represents a location along the gradient vector
+			if (isset($stop['offset'])) {
+				$this->gradients[$n]['colors'][$key]['offset'] = $stop['offset'];
+			} else {
+				if ($key == 0) {
+					$this->gradients[$n]['colors'][$key]['offset'] = 0;
+				} elseif ($key == $last_stop_id) {
+					$this->gradients[$n]['colors'][$key]['offset'] = 1;
+				} else {
+					$offsetstep = (1 - $this->gradients[$n]['colors'][($key - 1)]['offset']) / ($num_stops - $key);
+					$this->gradients[$n]['colors'][$key]['offset'] = $this->gradients[$n]['colors'][($key - 1)]['offset'] + $offsetstep;
+				}
+			}
+			if (isset($stop['opacity'])) {
+				$this->gradients[$n]['colors'][$key]['opacity'] = $stop['opacity'];
+				if ($stop['opacity'] < 1) {
+					$this->gradients[$n]['transparency'] = true;
+				}
+			} else {
+				$this->gradients[$n]['colors'][$key]['opacity'] = 1;
+			}
+			// exponent for the exponential interpolation function
+			if (isset($stop['exponent'])) {
+				$this->gradients[$n]['colors'][$key]['exponent'] = $stop['exponent'];
+			} else {
+				$this->gradients[$n]['colors'][$key]['exponent'] = 1;
+			}
+			// set colors
+			$color = array_values($stop['color']);
 			switch($numcolspace) {
 				case 4: { // CMYK
-					$this->gradients[$n]['colspace'] = 'DeviceCMYK';
-					if (!empty($background)) {
-						$this->gradients[$n]['background'] = sprintf('%.3F %.3F %.3F %.3F', $bcolor[0]/100, $bcolor[1]/100, $bcolor[2]/100, $bcolor[3]/100);
-					}
+					$this->gradients[$n]['colors'][$key]['color'] = sprintf('%.3F %.3F %.3F %.3F', $color[0]/100, $color[1]/100, $color[2]/100, $color[3]/100);
 					break;
 				}
 				case 3: { // RGB
-					$this->gradients[$n]['colspace'] = 'DeviceRGB';
-					if (!empty($background)) {
-						$this->gradients[$n]['background'] = sprintf('%.3F %.3F %.3F', $bcolor[0]/255, $bcolor[1]/255, $bcolor[2]/255);
-					}
+					$this->gradients[$n]['colors'][$key]['color'] = sprintf('%.3F %.3F %.3F', $color[0]/255, $color[1]/255, $color[2]/255);
 					break;
 				}
 				case 1: { // Gray scale
-					$this->gradients[$n]['colspace'] = 'DeviceGray';
-					if (!empty($background)) {
-						$this->gradients[$n]['background'] = sprintf('%.3F', $bcolor[0]/255);
-					}
+					$this->gradients[$n]['colors'][$key]['color'] = sprintf('%.3F', $color[0]/255);
 					break;
 				}
 			}
-			$num_stops = count($stops);
-			$last_stop_id = $num_stops - 1;
-			foreach ($stops as $key => $stop) {
-				$this->gradients[$n]['colors'][$key] = array();
-				// offset represents a location along the gradient vector
-				if (isset($stop['offset'])) {
-					$this->gradients[$n]['colors'][$key]['offset'] = $stop['offset'];
-				} else {
-					if ($key == 0) {
-						$this->gradients[$n]['colors'][$key]['offset'] = 0;
-					} elseif ($key == $last_stop_id) {
-						$this->gradients[$n]['colors'][$key]['offset'] = 1;
-					} else {
-						$offsetstep = (1 - $this->gradients[$n]['colors'][($key - 1)]['offset']) / ($num_stops - $key);
-						$this->gradients[$n]['colors'][$key]['offset'] = $this->gradients[$n]['colors'][($key - 1)]['offset'] + $offsetstep;
-					}
-				}
-				if (isset($stop['opacity'])) {
-					$this->gradients[$n]['colors'][$key]['opacity'] = $stop['opacity'];
-					if ($stop['opacity'] < 1) {
-						$this->gradients[$n]['transparency'] = true;
-					}
-				} else {
-					$this->gradients[$n]['colors'][$key]['opacity'] = 1;
-				}
-				// exponent for the exponential interpolation function
-				if (isset($stop['exponent'])) {
-					$this->gradients[$n]['colors'][$key]['exponent'] = $stop['exponent'];
-				} else {
-					$this->gradients[$n]['colors'][$key]['exponent'] = 1;
-				}
-				// set colors
-				$color = array_values($stop['color']);
-				switch($numcolspace) {
-					case 4: { // CMYK
-						$this->gradients[$n]['colors'][$key]['color'] = sprintf('%.3F %.3F %.3F %.3F', $color[0]/100, $color[1]/100, $color[2]/100, $color[3]/100);
-						break;
-					}
-					case 3: { // RGB
-						$this->gradients[$n]['colors'][$key]['color'] = sprintf('%.3F %.3F %.3F', $color[0]/255, $color[1]/255, $color[2]/255);
-						break;
-					}
-					case 1: { // Gray scale
-						$this->gradients[$n]['colors'][$key]['color'] = sprintf('%.3F', $color[0]/255);
-						break;
-					}
-				}
-			}
-			if ($this->gradients[$n]['transparency']) {
-				// paint luminosity gradient
-				$this->_out('/TGS'.$n.' gs');
-			}
-			//paint the gradient
-			$this->_out('/Sh'.$n.' sh');
-			//restore previous Graphic State
-			$this->_out('Q');
 		}
+		if ($this->gradients[$n]['transparency']) {
+			// paint luminosity gradient
+			$this->_out('/TGS'.$n.' gs');
+		}
+		//paint the gradient
+		$this->_out('/Sh'.$n.' sh');
+		//restore previous Graphic State
+		$this->_out('Q');
+	}
 
-		/**
-		 * Output gradient shaders.
-		 * @author Nicola Asuni
-		 * @since 3.1.000 (2008-06-09)
-		 * @access protected
-		 */
-		function _putshaders() {
-			$idt = count($this->gradients); //index for transparency gradients
-			foreach ($this->gradients as $id => $grad) {
-				if (($grad['type'] == 2) OR ($grad['type'] == 3)) {
+	/**
+	 * Output gradient shaders.
+	 * @author Nicola Asuni
+	 * @since 3.1.000 (2008-06-09)
+	 * @protected
+	 */
+	function _putshaders() {
+		$idt = count($this->gradients); //index for transparency gradients
+		foreach ($this->gradients as $id => $grad) {
+			if (($grad['type'] == 2) OR ($grad['type'] == 3)) {
+				$fc = $this->_newobj();
+				$out = '<<';
+				$out .= ' /FunctionType 3';
+				$out .= ' /Domain [0 1]';
+				$functions = '';
+				$bounds = '';
+				$encode = '';
+				$i = 1;
+				$num_cols = count($grad['colors']);
+				$lastcols = $num_cols - 1;
+				for ($i = 1; $i < $num_cols; ++$i) {
+					$functions .= ($fc + $i).' 0 R ';
+					if ($i < $lastcols) {
+						$bounds .= sprintf('%.3F ', $grad['colors'][$i]['offset']);
+					}
+					$encode .= '0 1 ';
+				}
+				$out .= ' /Functions ['.trim($functions).']';
+				$out .= ' /Bounds ['.trim($bounds).']';
+				$out .= ' /Encode ['.trim($encode).']';
+				$out .= ' >>';
+				$out .= "\n".'endobj';
+				$this->_out($out);
+				for ($i = 1; $i < $num_cols; ++$i) {
 					$this->_newobj();
-					$fc = $this->n;
+					$out = '<<';
+					$out .= ' /FunctionType 2';
+					$out .= ' /Domain [0 1]';
+					$out .= ' /C0 ['.$grad['colors'][($i - 1)]['color'].']';
+					$out .= ' /C1 ['.$grad['colors'][$i]['color'].']';
+					$out .= ' /N '.$grad['colors'][$i]['exponent'];
+					$out .= ' >>';
+					$out .= "\n".'endobj';
+					$this->_out($out);
+				}
+				// set transparency fuctions
+				if ($grad['transparency']) {
+					$ft = $this->_newobj();
 					$out = '<<';
 					$out .= ' /FunctionType 3';
 					$out .= ' /Domain [0 1]';
 					$functions = '';
-					$bounds = '';
-					$encode = '';
 					$i = 1;
 					$num_cols = count($grad['colors']);
-					$lastcols = $num_cols - 1;
 					for ($i = 1; $i < $num_cols; ++$i) {
-						$functions .= ($fc + $i).' 0 R ';
-						if ($i < $lastcols) {
-							$bounds .= sprintf('%.3F ', $grad['colors'][$i]['offset']);
-						}
-						$encode .= '0 1 ';
+						$functions .= ($ft + $i).' 0 R ';
 					}
 					$out .= ' /Functions ['.trim($functions).']';
 					$out .= ' /Bounds ['.trim($bounds).']';
@@ -15116,2170 +16311,3038 @@ if (!class_exists('TCPDF', false)) {
 						$out = '<<';
 						$out .= ' /FunctionType 2';
 						$out .= ' /Domain [0 1]';
-						$out .= ' /C0 ['.$grad['colors'][($i - 1)]['color'].']';
-						$out .= ' /C1 ['.$grad['colors'][$i]['color'].']';
+						$out .= ' /C0 ['.$grad['colors'][($i - 1)]['opacity'].']';
+						$out .= ' /C1 ['.$grad['colors'][$i]['opacity'].']';
 						$out .= ' /N '.$grad['colors'][$i]['exponent'];
 						$out .= ' >>';
 						$out .= "\n".'endobj';
 						$this->_out($out);
 					}
-					// set transparency fuctions
-					if ($grad['transparency']) {
-						$this->_newobj();
-						$ft = $this->n;
-						$out = '<<';
-						$out .= ' /FunctionType 3';
-						$out .= ' /Domain [0 1]';
-						$functions = '';
-						$i = 1;
-						$num_cols = count($grad['colors']);
-						for ($i = 1; $i < $num_cols; ++$i) {
-							$functions .= ($ft + $i).' 0 R ';
-						}
-						$out .= ' /Functions ['.trim($functions).']';
-						$out .= ' /Bounds ['.trim($bounds).']';
-						$out .= ' /Encode ['.trim($encode).']';
-						$out .= ' >>';
-						$out .= "\n".'endobj';
-						$this->_out($out);
-						for ($i = 1; $i < $num_cols; ++$i) {
-							$this->_newobj();
-							$out = '<<';
-							$out .= ' /FunctionType 2';
-							$out .= ' /Domain [0 1]';
-							$out .= ' /C0 ['.$grad['colors'][($i - 1)]['opacity'].']';
-							$out .= ' /C1 ['.$grad['colors'][$i]['opacity'].']';
-							$out .= ' /N '.$grad['colors'][$i]['exponent'];
-							$out .= ' >>';
-							$out .= "\n".'endobj';
-							$this->_out($out);
-						}
-					}
-				}
-				// set shading object
-				$this->_newobj();
-				$out = '<< /ShadingType '.$grad['type'];
-				if (isset($grad['colspace'])) {
-					$out .= ' /ColorSpace /'.$grad['colspace'];
-				} else {
-					$out .= ' /ColorSpace /DeviceRGB';
-				}
-				if (isset($grad['background']) AND !empty($grad['background'])) {
-					$out .= ' /Background ['.$grad['background'].']';
-				}
-				if (isset($grad['antialias']) AND ($grad['antialias'] === true)) {
-					$out .= ' /AntiAlias true';
-				}
-				if ($grad['type'] == 2) {
-					$out .= ' '.sprintf('/Coords [%.3F %.3F %.3F %.3F]', $grad['coords'][0], $grad['coords'][1], $grad['coords'][2], $grad['coords'][3]);
-					$out .= ' /Domain [0 1]';
-					$out .= ' /Function '.$fc.' 0 R';
-					$out .= ' /Extend [true true]';
-					$out .= ' >>';
-				} elseif ($grad['type'] == 3) {
-					//x0, y0, r0, x1, y1, r1
-					//at this this time radius of inner circle is 0
-					$out .= ' '.sprintf('/Coords [%.3F %.3F 0 %.3F %.3F %.3F]', $grad['coords'][0], $grad['coords'][1], $grad['coords'][2], $grad['coords'][3], $grad['coords'][4]);
-					$out .= ' /Domain [0 1]';
-					$out .= ' /Function '.$fc.' 0 R';
-					$out .= ' /Extend [true true]';
-					$out .= ' >>';
-				} elseif ($grad['type'] == 6) {
-					$out .= ' /BitsPerCoordinate 16';
-					$out .= ' /BitsPerComponent 8';
-					$out .= ' /Decode[0 1 0 1 0 1 0 1 0 1]';
-					$out .= ' /BitsPerFlag 8';
-					$stream = $this->_getrawstream($grad['stream']);
-					$out .= ' /Length '.strlen($stream);
-					$out .= ' >>';
-					$out .= ' stream'."\n".$stream."\n".'endstream';
-				}
-				$out .= "\n".'endobj';
-				$this->_out($out);
-				if ($grad['transparency']) {
-					$shading_transparency = preg_replace('/\/ColorSpace \/[^\s]+/si', '/ColorSpace /DeviceGray', $out);
-					$shading_transparency = preg_replace('/\/Function [0-9]+ /si', '/Function '.$ft.' ', $shading_transparency);
 				}
-				$this->gradients[$id]['id'] = $this->n;
-				// set pattern object
+			}
+			// set shading object
+			$this->_newobj();
+			$out = '<< /ShadingType '.$grad['type'];
+			if (isset($grad['colspace'])) {
+				$out .= ' /ColorSpace /'.$grad['colspace'];
+			} else {
+				$out .= ' /ColorSpace /DeviceRGB';
+			}
+			if (isset($grad['background']) AND !empty($grad['background'])) {
+				$out .= ' /Background ['.$grad['background'].']';
+			}
+			if (isset($grad['antialias']) AND ($grad['antialias'] === true)) {
+				$out .= ' /AntiAlias true';
+			}
+			if ($grad['type'] == 2) {
+				$out .= ' '.sprintf('/Coords [%.3F %.3F %.3F %.3F]', $grad['coords'][0], $grad['coords'][1], $grad['coords'][2], $grad['coords'][3]);
+				$out .= ' /Domain [0 1]';
+				$out .= ' /Function '.$fc.' 0 R';
+				$out .= ' /Extend [true true]';
+				$out .= ' >>';
+			} elseif ($grad['type'] == 3) {
+				//x0, y0, r0, x1, y1, r1
+				//at this this time radius of inner circle is 0
+				$out .= ' '.sprintf('/Coords [%.3F %.3F 0 %.3F %.3F %.3F]', $grad['coords'][0], $grad['coords'][1], $grad['coords'][2], $grad['coords'][3], $grad['coords'][4]);
+				$out .= ' /Domain [0 1]';
+				$out .= ' /Function '.$fc.' 0 R';
+				$out .= ' /Extend [true true]';
+				$out .= ' >>';
+			} elseif ($grad['type'] == 6) {
+				$out .= ' /BitsPerCoordinate 16';
+				$out .= ' /BitsPerComponent 8';
+				$out .= ' /Decode[0 1 0 1 0 1 0 1 0 1]';
+				$out .= ' /BitsPerFlag 8';
+				$stream = $this->_getrawstream($grad['stream']);
+				$out .= ' /Length '.strlen($stream);
+				$out .= ' >>';
+				$out .= ' stream'."\n".$stream."\n".'endstream';
+			}
+			$out .= "\n".'endobj';
+			$this->_out($out);
+			if ($grad['transparency']) {
+				$shading_transparency = preg_replace('/\/ColorSpace \/[^\s]+/si', '/ColorSpace /DeviceGray', $out);
+				$shading_transparency = preg_replace('/\/Function [0-9]+ /si', '/Function '.$ft.' ', $shading_transparency);
+			}
+			$this->gradients[$id]['id'] = $this->n;
+			// set pattern object
+			$this->_newobj();
+			$out = '<< /Type /Pattern /PatternType 2';
+			$out .= ' /Shading '.$this->gradients[$id]['id'].' 0 R';
+			$out .= ' >>';
+			$out .= "\n".'endobj';
+			$this->_out($out);
+			$this->gradients[$id]['pattern'] = $this->n;
+			// set shading and pattern for transparency mask
+			if ($grad['transparency']) {
+				// luminosity pattern
+				$idgs = $id + $idt;
+				$this->_newobj();
+				$this->_out($shading_transparency);
+				$this->gradients[$idgs]['id'] = $this->n;
 				$this->_newobj();
 				$out = '<< /Type /Pattern /PatternType 2';
-				$out .= ' /Shading '.$this->gradients[$id]['id'].' 0 R';
+				$out .= ' /Shading '.$this->gradients[$idgs]['id'].' 0 R';
 				$out .= ' >>';
 				$out .= "\n".'endobj';
 				$this->_out($out);
-				$this->gradients[$id]['pattern'] = $this->n;
-				// set shading and pattern for transparency mask
-				if ($grad['transparency']) {
-					// luminosity pattern
-					$idgs = $id + $idt;
-					$this->_newobj();
-					$this->_out($shading_transparency);
-					$this->gradients[$idgs]['id'] = $this->n;
-					$this->_newobj();
-					$out = '<< /Type /Pattern /PatternType 2';
-					$out .= ' /Shading '.$this->gradients[$idgs]['id'].' 0 R';
-					$out .= ' >>';
-					$out .= "\n".'endobj';
-					$this->_out($out);
-					$this->gradients[$idgs]['pattern'] = $this->n;
-					// luminosity XObject
-					$this->_newobj();
-					$filter = '';
-					$stream = 'q /a0 gs /Pattern cs /p'.$idgs.' scn 0 0 '.$this->wPt.' '.$this->hPt.' re f Q';
-					if ($this->compress) {
-						$filter = ' /Filter /FlateDecode';
-						$stream = gzcompress($stream);
-					}
-					$stream = $this->_getrawstream($stream);
-					$out = '<< /Type /XObject /Subtype /Form /FormType 1'.$filter;
-					$out .= ' /Length '.strlen($stream);
-					$out .= ' /BBox [0 0 '.$this->wPt.' '.$this->hPt.']';
-					$out .= ' /Group << /Type /Group /S /Transparency /CS /DeviceGray >>';
-					$out .= ' /Resources <<';
-					$out .= ' /ExtGState << /a0 << /ca 1 /CA 1 >> >>';
-					$out .= ' /Pattern << /p'.$idgs.' '.$this->gradients[$idgs]['pattern'].' 0 R >>';
-					$out .= ' >>';
-					$out .= ' >> ';
-					$out .= ' stream'."\n".$stream."\n".'endstream';
-					$out .= "\n".'endobj';
-					$this->_out($out);
-					// SMask
-					$this->_newobj();
-					$out = '<< /Type /Mask /S /Luminosity /G '.($this->n - 1).' 0 R >>'."\n".'endobj';
-					$this->_out($out);
-					// ExtGState
-					$this->_newobj();
-					$out = '<< /Type /ExtGState /SMask '.($this->n - 1).' 0 R /AIS false >>'."\n".'endobj';
-					$this->_out($out);
-					$this->extgstates[] = array('n' => $this->n, 'name' => 'TGS'.$id);
-				}
-			}
-		}
-
-		/**
-		 * Draw the sector of a circle.
-		 * It can be used for instance to render pie charts.
-		 * @param float $xc abscissa of the center.
-		 * @param float $yc ordinate of the center.
-		 * @param float $r radius.
-		 * @param float $a start angle (in degrees).
-		 * @param float $b end angle (in degrees).
-		 * @param string $style Style of rendering. See the getPathPaintOperator() function for more information.
-		 * @param float $cw: indicates whether to go clockwise (default: true).
-		 * @param float $o: origin of angles (0 for 3 o'clock, 90 for noon, 180 for 9 o'clock, 270 for 6 o'clock). Default: 90.
-		 * @author Maxime Delorme, Nicola Asuni
-		 * @since 3.1.000 (2008-06-09)
-		 * @access public
-		 */
-		public function PieSector($xc, $yc, $r, $a, $b, $style='FD', $cw=true, $o=90) {
-			$this->PieSectorXY($xc, $yc, $r, $r, $a, $b, $style, $cw, $o);
-		}
-
-		/**
-		 * Draw the sector of an ellipse.
-		 * It can be used for instance to render pie charts.
-		 * @param float $xc abscissa of the center.
-		 * @param float $yc ordinate of the center.
-		 * @param float $rx the x-axis radius.
-		 * @param float $ry the y-axis radius.
-		 * @param float $a start angle (in degrees).
-		 * @param float $b end angle (in degrees).
-		 * @param string $style Style of rendering. See the getPathPaintOperator() function for more information.
-		 * @param float $cw: indicates whether to go clockwise.
-		 * @param float $o: origin of angles (0 for 3 o'clock, 90 for noon, 180 for 9 o'clock, 270 for 6 o'clock).
-		 * @param integer $nc Number of curves used to draw a 90 degrees portion of arc.
-		 * @author Maxime Delorme, Nicola Asuni
-		 * @since 3.1.000 (2008-06-09)
-		 * @access public
-		 */
-		public function PieSectorXY($xc, $yc, $rx, $ry, $a, $b, $style='FD', $cw=false, $o=0, $nc=2) {
-			if ($this->rtl) {
-				$xc = $this->w - $xc;
-			}
-			$op = $this->getPathPaintOperator($style);
-			if ($op == 'f') {
-				$line_style = array();
-			}
-			if ($cw) {
-				$d = $b;
-				$b = 360 - $a + $o;
-				$a = 360 - $d + $o;
-			} else {
-				$b += $o;
-				$a += $o;
+				$this->gradients[$idgs]['pattern'] = $this->n;
+				// luminosity XObject
+				$oid = $this->_newobj();
+				$this->xobjects['LX'.$oid] = array('n' => $oid);
+				$filter = '';
+				$stream = 'q /a0 gs /Pattern cs /p'.$idgs.' scn 0 0 '.$this->wPt.' '.$this->hPt.' re f Q';
+				if ($this->compress) {
+					$filter = ' /Filter /FlateDecode';
+					$stream = gzcompress($stream);
+				}
+				$stream = $this->_getrawstream($stream);
+				$out = '<< /Type /XObject /Subtype /Form /FormType 1'.$filter;
+				$out .= ' /Length '.strlen($stream);
+				$rect = sprintf('%.2F %.2F', $this->wPt, $this->hPt);
+				$out .= ' /BBox [0 0 '.$rect.']';
+				$out .= ' /Group << /Type /Group /S /Transparency /CS /DeviceGray >>';
+				$out .= ' /Resources <<';
+				$out .= ' /ExtGState << /a0 << /ca 1 /CA 1 >> >>';
+				$out .= ' /Pattern << /p'.$idgs.' '.$this->gradients[$idgs]['pattern'].' 0 R >>';
+				$out .= ' >>';
+				$out .= ' >> ';
+				$out .= ' stream'."\n".$stream."\n".'endstream';
+				$out .= "\n".'endobj';
+				$this->_out($out);
+				// SMask
+				$this->_newobj();
+				$out = '<< /Type /Mask /S /Luminosity /G '.($this->n - 1).' 0 R >>'."\n".'endobj';
+				$this->_out($out);
+				// ExtGState
+				$this->_newobj();
+				$out = '<< /Type /ExtGState /SMask '.($this->n - 1).' 0 R /AIS false >>'."\n".'endobj';
+				$this->_out($out);
+				$this->extgstates[] = array('n' => $this->n, 'name' => 'TGS'.$id);
 			}
-			$this->_outellipticalarc($xc, $yc, $rx, $ry, 0, $a, $b, true, $nc);
-			$this->_out($op);
 		}
+	}
 
-		/**
-		 * Embed vector-based Adobe Illustrator (AI) or AI-compatible EPS files.
-		 * NOTE: EPS is not yet fully implemented, use the setRasterizeVectorImages() method to enable/disable rasterization of SVG images using ImageMagick library.
-		 * Only vector drawing is supported, not text or bitmap.
-		 * Although the script was successfully tested with various AI format versions, best results are probably achieved with files that were exported in the AI3 format (tested with Illustrator CS2, Freehand MX and Photoshop CS2).
-		 * @param string $file Name of the file containing the image.
-		 * @param float $x Abscissa of the upper-left corner.
-		 * @param float $y Ordinate of the upper-left corner.
-		 * @param float $w Width of the image in the page. If not specified or equal to zero, it is automatically calculated.
-		 * @param float $h Height of the image in the page. If not specified or equal to zero, it is automatically calculated.
-		 * @param mixed $link URL or identifier returned by AddLink().
-		 * @param boolean useBoundingBox specifies whether to position the bounding box (true) or the complete canvas (false) at location (x,y). Default value is true.
-		 * @param string $align Indicates the alignment of the pointer next to image insertion relative to image height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul>
-		 * @param string $palign Allows to center or align the image on the current line. Possible values are:<ul><li>L : left align</li><li>C : center</li><li>R : right align</li><li>'' : empty string : left for LTR or right for RTL</li></ul>
-		 * @param mixed $border Indicates if borders must be drawn around the image. The value can be either a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul>or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul>
-		 * @param boolean $fitonpage if true the image is resized to not exceed page dimensions.
-		 * @author Valentin Schmidt, Nicola Asuni
-		 * @since 3.1.000 (2008-06-09)
-		 * @access public
-		 */
-		public function ImageEps($file, $x='', $y='', $w=0, $h=0, $link='', $useBoundingBox=true, $align='', $palign='', $border=0, $fitonpage=false) {
-			if ($this->rasterize_vector_images AND ($w > 0) AND ($h > 0)) {
-				// convert EPS to raster image using GD or ImageMagick libraries
-				return $this->Image($file, $x, $y, $w, $h, 'EPS', $link, $align, true, 300, $palign, false, false, $border, false, false, $fitonpage);
-			}
-			if ($x === '') {
-				$x = $this->x;
-			}
-			if ($y === '') {
-				$y = $this->y;
-			}
-			$k = $this->k;
+	/**
+	 * Draw the sector of a circle.
+	 * It can be used for instance to render pie charts.
+	 * @param $xc (float) abscissa of the center.
+	 * @param $yc (float) ordinate of the center.
+	 * @param $r (float) radius.
+	 * @param $a (float) start angle (in degrees).
+	 * @param $b (float) end angle (in degrees).
+	 * @param $style (string) Style of rendering. See the getPathPaintOperator() function for more information.
+	 * @param $cw: (float) indicates whether to go clockwise (default: true).
+	 * @param $o: (float) origin of angles (0 for 3 o'clock, 90 for noon, 180 for 9 o'clock, 270 for 6 o'clock). Default: 90.
+	 * @author Maxime Delorme, Nicola Asuni
+	 * @since 3.1.000 (2008-06-09)
+	 * @public
+	 */
+	public function PieSector($xc, $yc, $r, $a, $b, $style='FD', $cw=true, $o=90) {
+		$this->PieSectorXY($xc, $yc, $r, $r, $a, $b, $style, $cw, $o);
+	}
+
+	/**
+	 * Draw the sector of an ellipse.
+	 * It can be used for instance to render pie charts.
+	 * @param $xc (float) abscissa of the center.
+	 * @param $yc (float) ordinate of the center.
+	 * @param $rx (float) the x-axis radius.
+	 * @param $ry (float) the y-axis radius.
+	 * @param $a (float) start angle (in degrees).
+	 * @param $b (float) end angle (in degrees).
+	 * @param $style (string) Style of rendering. See the getPathPaintOperator() function for more information.
+	 * @param $cw: (float) indicates whether to go clockwise.
+	 * @param $o: (float) origin of angles (0 for 3 o'clock, 90 for noon, 180 for 9 o'clock, 270 for 6 o'clock).
+	 * @param $nc (integer) Number of curves used to draw a 90 degrees portion of arc.
+	 * @author Maxime Delorme, Nicola Asuni
+	 * @since 3.1.000 (2008-06-09)
+	 * @public
+	 */
+	public function PieSectorXY($xc, $yc, $rx, $ry, $a, $b, $style='FD', $cw=false, $o=0, $nc=2) {
+		if ($this->rtl) {
+			$xc = $this->w - $xc;
+		}
+		$op = $this->getPathPaintOperator($style);
+		if ($op == 'f') {
+			$line_style = array();
+		}
+		if ($cw) {
+			$d = $b;
+			$b = 360 - $a + $o;
+			$a = 360 - $d + $o;
+		} else {
+			$b += $o;
+			$a += $o;
+		}
+		$this->_outellipticalarc($xc, $yc, $rx, $ry, 0, $a, $b, true, $nc);
+		$this->_out($op);
+	}
+
+	/**
+	 * Embed vector-based Adobe Illustrator (AI) or AI-compatible EPS files.
+	 * NOTE: EPS is not yet fully implemented, use the setRasterizeVectorImages() method to enable/disable rasterization of vector images using ImageMagick library.
+	 * Only vector drawing is supported, not text or bitmap.
+	 * Although the script was successfully tested with various AI format versions, best results are probably achieved with files that were exported in the AI3 format (tested with Illustrator CS2, Freehand MX and Photoshop CS2).
+	 * @param $file (string) Name of the file containing the image or a '@' character followed by the EPS/AI data string.
+	 * @param $x (float) Abscissa of the upper-left corner.
+	 * @param $y (float) Ordinate of the upper-left corner.
+	 * @param $w (float) Width of the image in the page. If not specified or equal to zero, it is automatically calculated.
+	 * @param $h (float) Height of the image in the page. If not specified or equal to zero, it is automatically calculated.
+	 * @param $link (mixed) URL or identifier returned by AddLink().
+	 * @param $useBoundingBox (boolean) specifies whether to position the bounding box (true) or the complete canvas (false) at location (x,y). Default value is true.
+	 * @param $align (string) Indicates the alignment of the pointer next to image insertion relative to image height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul>
+	 * @param $palign (string) Allows to center or align the image on the current line. Possible values are:<ul><li>L : left align</li><li>C : center</li><li>R : right align</li><li>'' : empty string : left for LTR or right for RTL</li></ul>
+	 * @param $border (mixed) Indicates if borders must be drawn around the cell. The value can be a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul> or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+	 * @param $fitonpage (boolean) if true the image is resized to not exceed page dimensions.
+	 * @param $fixoutvals (boolean) if true remove values outside the bounding box.
+	 * @author Valentin Schmidt, Nicola Asuni
+	 * @since 3.1.000 (2008-06-09)
+	 * @public
+	 */
+	public function ImageEps($file, $x='', $y='', $w=0, $h=0, $link='', $useBoundingBox=true, $align='', $palign='', $border=0, $fitonpage=false, $fixoutvals=false) {
+		if ($this->rasterize_vector_images AND ($w > 0) AND ($h > 0)) {
+			// convert EPS to raster image using GD or ImageMagick libraries
+			return $this->Image($file, $x, $y, $w, $h, 'EPS', $link, $align, true, 300, $palign, false, false, $border, false, false, $fitonpage);
+		}
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($h, $x, $y);
+		$k = $this->k;
+		if ($file{0} === '@') { // image from string
+			$data = substr($file, 1);
+		} else { // EPS/AI file
 			$data = file_get_contents($file);
-			if ($data === false) {
-				$this->Error('EPS file not found: '.$file);
-			}
-			$regs = array();
-			// EPS/AI compatibility check (only checks files created by Adobe Illustrator!)
-			preg_match("/%%Creator:([^\r\n]+)/", $data, $regs); # find Creator
-			if (count($regs) > 1) {
-				$version_str = trim($regs[1]); # e.g. "Adobe Illustrator(R) 8.0"
-				if (strpos($version_str, 'Adobe Illustrator') !== false) {
-					$versexp = explode(' ', $version_str);
-					$version = (float)array_pop($versexp);
-					if ($version >= 9) {
-						$this->Error('This version of Adobe Illustrator file is not supported: '.$file);
-					}
-				}
-			}
-			// strip binary bytes in front of PS-header
-			$start = strpos($data, '%!PS-Adobe');
-			if ($start > 0) {
-				$data = substr($data, $start);
-			}
-			// find BoundingBox params
-			preg_match("/%%BoundingBox:([^\r\n]+)/", $data, $regs);
-			if (count($regs) > 1) {
-				list($x1, $y1, $x2, $y2) = explode(' ', trim($regs[1]));
-			} else {
-				$this->Error('No BoundingBox found in EPS file: '.$file);
-			}
-			$start = strpos($data, '%%EndSetup');
-			if ($start === false) {
-				$start = strpos($data, '%%EndProlog');
-			}
-			if ($start === false) {
-				$start = strpos($data, '%%BoundingBox');
+		}
+		if ($data === false) {
+			$this->Error('EPS file not found: '.$file);
+		}
+		$regs = array();
+		// EPS/AI compatibility check (only checks files created by Adobe Illustrator!)
+		preg_match("/%%Creator:([^\r\n]+)/", $data, $regs); # find Creator
+		if (count($regs) > 1) {
+			$version_str = trim($regs[1]); # e.g. "Adobe Illustrator(R) 8.0"
+			if (strpos($version_str, 'Adobe Illustrator') !== false) {
+				$versexp = explode(' ', $version_str);
+				$version = (float)array_pop($versexp);
+				if ($version >= 9) {
+					$this->Error('This version of Adobe Illustrator file is not supported: '.$file);
+				}
 			}
+		}
+		// strip binary bytes in front of PS-header
+		$start = strpos($data, '%!PS-Adobe');
+		if ($start > 0) {
 			$data = substr($data, $start);
-			$end = strpos($data, '%%PageTrailer');
-			if ($end===false) {
-				$end = strpos($data, 'showpage');
-			}
-			if ($end) {
-				$data = substr($data, 0, $end);
-			}
-			// calculate image width and height on document
-			if (($w <= 0) AND ($h <= 0)) {
-				$w = ($x2 - $x1) / $k;
-				$h = ($y2 - $y1) / $k;
-			} elseif ($w <= 0) {
-				$w = ($x2-$x1) / $k * ($h / (($y2 - $y1) / $k));
-			} elseif ($h <= 0) {
-				$h = ($y2 - $y1) / $k * ($w / (($x2 - $x1) / $k));
-			}
-			// fit the image on available space
-			$this->fitBlock($w, $h, $x, $y, $fitonpage);
-			if ($this->rasterize_vector_images) {
-				// convert EPS to raster image using GD or ImageMagick libraries
-				return $this->Image($file, $x, $y, $w, $h, 'EPS', $link, $align, true, 300, $palign, false, false, $border, false, false, $fitonpage);
-			}
-			// set scaling factors
-			$scale_x = $w / (($x2 - $x1) / $k);
-			$scale_y = $h / (($y2 - $y1) / $k);
-			// set alignment
-			$this->img_rb_y = $y + $h;
-			// set alignment
-			if ($this->rtl) {
-				if ($palign == 'L') {
-					$ximg = $this->lMargin;
-				} elseif ($palign == 'C') {
-					$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
-				} elseif ($palign == 'R') {
-					$ximg = $this->w - $this->rMargin - $w;
-				} else {
-					$ximg = $x - $w;
-				}
-				$this->img_rb_x = $ximg;
+		}
+		// find BoundingBox params
+		preg_match("/%%BoundingBox:([^\r\n]+)/", $data, $regs);
+		if (count($regs) > 1) {
+			list($x1, $y1, $x2, $y2) = explode(' ', trim($regs[1]));
+		} else {
+			$this->Error('No BoundingBox found in EPS/AI file: '.$file);
+		}
+		$start = strpos($data, '%%EndSetup');
+		if ($start === false) {
+			$start = strpos($data, '%%EndProlog');
+		}
+		if ($start === false) {
+			$start = strpos($data, '%%BoundingBox');
+		}
+		$data = substr($data, $start);
+		$end = strpos($data, '%%PageTrailer');
+		if ($end===false) {
+			$end = strpos($data, 'showpage');
+		}
+		if ($end) {
+			$data = substr($data, 0, $end);
+		}
+		// calculate image width and height on document
+		if (($w <= 0) AND ($h <= 0)) {
+			$w = ($x2 - $x1) / $k;
+			$h = ($y2 - $y1) / $k;
+		} elseif ($w <= 0) {
+			$w = ($x2-$x1) / $k * ($h / (($y2 - $y1) / $k));
+		} elseif ($h <= 0) {
+			$h = ($y2 - $y1) / $k * ($w / (($x2 - $x1) / $k));
+		}
+		// fit the image on available space
+		$this->fitBlock($w, $h, $x, $y, $fitonpage);
+		if ($this->rasterize_vector_images) {
+			// convert EPS to raster image using GD or ImageMagick libraries
+			return $this->Image($file, $x, $y, $w, $h, 'EPS', $link, $align, true, 300, $palign, false, false, $border, false, false, $fitonpage);
+		}
+		// set scaling factors
+		$scale_x = $w / (($x2 - $x1) / $k);
+		$scale_y = $h / (($y2 - $y1) / $k);
+		// set alignment
+		$this->img_rb_y = $y + $h;
+		// set alignment
+		if ($this->rtl) {
+			if ($palign == 'L') {
+				$ximg = $this->lMargin;
+			} elseif ($palign == 'C') {
+				$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
+			} elseif ($palign == 'R') {
+				$ximg = $this->w - $this->rMargin - $w;
 			} else {
-				if ($palign == 'L') {
-					$ximg = $this->lMargin;
-				} elseif ($palign == 'C') {
-					$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
-				} elseif ($palign == 'R') {
-					$ximg = $this->w - $this->rMargin - $w;
-				} else {
-					$ximg = $x;
-				}
-				$this->img_rb_x = $ximg + $w;
-			}
-			if ($useBoundingBox) {
-				$dx = $ximg * $k - $x1;
-				$dy = $y * $k - $y1;
+				$ximg = $x - $w;
+			}
+			$this->img_rb_x = $ximg;
+		} else {
+			if ($palign == 'L') {
+				$ximg = $this->lMargin;
+			} elseif ($palign == 'C') {
+				$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
+			} elseif ($palign == 'R') {
+				$ximg = $this->w - $this->rMargin - $w;
 			} else {
-				$dx = $ximg * $k;
-				$dy = $y * $k;
-			}
-			// save the current graphic state
-			$this->_out('q'.$this->epsmarker);
-			// translate
-			$this->_out(sprintf('%.3F %.3F %.3F %.3F %.3F %.3F cm', 1, 0, 0, 1, $dx, $dy + ($this->hPt - (2 * $y * $k) - ($y2 - $y1))));
-			// scale
-			if (isset($scale_x)) {
-				$this->_out(sprintf('%.3F %.3F %.3F %.3F %.3F %.3F cm', $scale_x, 0, 0, $scale_y, $x1 * (1 - $scale_x), $y2 * (1 - $scale_y)));
-			}
-			// handle pc/unix/mac line endings
-			preg_match('/[\r\n]+/s', $data, $regs);
-			$lines = explode($regs[0], $data);
-			$u=0;
-			$cnt = count($lines);
-			for ($i=0; $i < $cnt; ++$i) {
-				$line = $lines[$i];
-				if (($line == '') OR ($line{0} == '%')) {
-					continue;
-				}
-				$len = strlen($line);
-				$chunks = explode(' ', $line);
-				$cmd = array_pop($chunks);
-				// RGB
-				if (($cmd == 'Xa') OR ($cmd == 'XA')) {
-					$b = array_pop($chunks);
-					$g = array_pop($chunks);
-					$r = array_pop($chunks);
-					$this->_out(''.$r.' '.$g.' '.$b.' '.($cmd=='Xa'?'rg':'RG')); //substr($line, 0, -2).'rg' -> in EPS (AI8): c m y k r g b rg!
-					continue;
-				}
+				$ximg = $x;
+			}
+			$this->img_rb_x = $ximg + $w;
+		}
+		if ($useBoundingBox) {
+			$dx = $ximg * $k - $x1;
+			$dy = $y * $k - $y1;
+		} else {
+			$dx = $ximg * $k;
+			$dy = $y * $k;
+		}
+		// save the current graphic state
+		$this->_out('q'.$this->epsmarker);
+		// translate
+		$this->_out(sprintf('%.3F %.3F %.3F %.3F %.3F %.3F cm', 1, 0, 0, 1, $dx, $dy + ($this->hPt - (2 * $y * $k) - ($y2 - $y1))));
+		// scale
+		if (isset($scale_x)) {
+			$this->_out(sprintf('%.3F %.3F %.3F %.3F %.3F %.3F cm', $scale_x, 0, 0, $scale_y, $x1 * (1 - $scale_x), $y2 * (1 - $scale_y)));
+		}
+		// handle pc/unix/mac line endings
+		$lines = preg_split('/[\r\n]+/si', $data, -1, PREG_SPLIT_NO_EMPTY);
+		$u=0;
+		$cnt = count($lines);
+		for ($i=0; $i < $cnt; ++$i) {
+			$line = $lines[$i];
+			if (($line == '') OR ($line{0} == '%')) {
+				continue;
+			}
+			$len = strlen($line);
+			// check for spot color names
+			$color_name = '';
+			if (strcasecmp('x', substr(trim($line), -1)) == 0) {
+				if (preg_match('/\([^\)]*\)/', $line, $matches) > 0) {
+					// extract spot color name
+					$color_name = $matches[0];
+					// remove color name from string
+					$line = str_replace(' '.$color_name, '', $line);
+					// remove pharentesis from color name
+					$color_name = substr($color_name, 1, -1);
+				}
+			}
+			$chunks = explode(' ', $line);
+			$cmd = trim(array_pop($chunks));
+			// RGB
+			if (($cmd == 'Xa') OR ($cmd == 'XA')) {
+				$b = array_pop($chunks);
+				$g = array_pop($chunks);
+				$r = array_pop($chunks);
+				$this->_out(''.$r.' '.$g.' '.$b.' '.($cmd=='Xa'?'rg':'RG')); //substr($line, 0, -2).'rg' -> in EPS (AI8): c m y k r g b rg!
+				continue;
+			}
+			$skip = false;
+			if ($fixoutvals) {
+				// check for values outside the bounding box
 				switch ($cmd) {
 					case 'm':
 					case 'l':
-					case 'v':
-					case 'y':
-					case 'c':
-					case 'k':
-					case 'K':
-					case 'g':
-					case 'G':
-					case 's':
-					case 'S':
-					case 'J':
-					case 'j':
-					case 'w':
-					case 'M':
-					case 'd':
-					case 'n': {
-						$this->_out($line);
-						break;
-					}
-					case 'x': {// custom fill color
-						list($c,$m,$y,$k) = $chunks;
-						$this->_out(''.$c.' '.$m.' '.$y.' '.$k.' k');
-						break;
-					}
-					case 'X': { // custom stroke color
-						list($c,$m,$y,$k) = $chunks;
-						$this->_out(''.$c.' '.$m.' '.$y.' '.$k.' K');
-						break;
-					}
-					case 'Y':
-					case 'N':
-					case 'V':
-					case 'L':
-					case 'C': {
-						$line{$len-1} = strtolower($cmd);
-						$this->_out($line);
-						break;
-					}
-					case 'b':
-					case 'B': {
-						$this->_out($cmd . '*');
-						break;
-					}
-					case 'f':
-					case 'F': {
-						if ($u > 0) {
-							$isU = false;
-							$max = min($i+5, $cnt);
-							for ($j=$i+1; $j < $max; ++$j) {
-								$isU = ($isU OR (($lines[$j] == 'U') OR ($lines[$j] == '*U')));
-							}
-							if ($isU) {
-								$this->_out('f*');
+					case 'L': {
+						// skip values outside bounding box
+						foreach ($chunks as $key => $val) {
+							if ((($key % 2) == 0) AND (($val < $x1) OR ($val > $x2))) {
+								$skip = true;
+							} elseif ((($key % 2) != 0) AND (($val < $y1) OR ($val > $y2))) {
+								$skip = true;
 							}
-						} else {
-							$this->_out('f*');
 						}
-						break;
 					}
-					case '*u': {
-						++$u;
+				}
+			}
+			switch ($cmd) {
+				case 'm':
+				case 'l':
+				case 'v':
+				case 'y':
+				case 'c':
+				case 'k':
+				case 'K':
+				case 'g':
+				case 'G':
+				case 's':
+				case 'S':
+				case 'J':
+				case 'j':
+				case 'w':
+				case 'M':
+				case 'd':
+				case 'n': {
+					if ($skip) {
 						break;
 					}
-					case '*U': {
-						--$u;
-						break;
+					$this->_out($line);
+					break;
+				}
+				case 'x': {// custom fill color
+					if (empty($color_name)) {
+						// CMYK color
+						list($col_c, $col_m, $col_y, $col_k) = $chunks;
+						$this->_out(''.$col_c.' '.$col_m.' '.$col_y.' '.$col_k.' k');
+					} else {
+						// Spot Color (CMYK + tint)
+						list($col_c, $col_m, $col_y, $col_k, $col_t) = $chunks;
+						$this->AddSpotColor($color_name, ($col_c * 100), ($col_m * 100), ($col_y * 100), ($col_k * 100));
+						$color_cmd = sprintf('/CS%d cs %.3F scn', $this->spot_colors[$color_name]['i'], (1 - $col_t));
+						$this->_out($color_cmd);
 					}
+					break;
 				}
-			}
-			// restore previous graphic state
-			$this->_out($this->epsmarker.'Q');
-			if (!empty($border)) {
-				$bx = $x;
-				$by = $y;
-				$this->x = $ximg;
-				if ($this->rtl) {
-					$this->x += $w;
+				case 'X': { // custom stroke color
+					if (empty($color_name)) {
+						// CMYK color
+						list($col_c, $col_m, $col_y, $col_k) = $chunks;
+						$this->_out(''.$col_c.' '.$col_m.' '.$col_y.' '.$col_k.' K');
+					} else {
+						// Spot Color (CMYK + tint)
+						list($col_c, $col_m, $col_y, $col_k, $col_t) = $chunks;
+						$this->AddSpotColor($color_name, ($col_c * 100), ($col_m * 100), ($col_y * 100), ($col_k * 100));
+						$color_cmd = sprintf('/CS%d CS %.3F SCN', $this->spot_colors[$color_name]['i'], (1 - $col_t));
+						$this->_out($color_cmd);
+					}
+					break;
 				}
-				$this->y = $y;
-				$this->Cell($w, $h, '', $border, 0, '', 0, '', 0, true);
-				$this->x = $bx;
-				$this->y = $by;
-			}
-			if ($link) {
-				$this->Link($ximg, $y, $w, $h, $link, 0);
-			}
-			// set pointer to align the successive text/objects
-			switch($align) {
-				case 'T':{
-					$this->y = $y;
-					$this->x = $this->img_rb_x;
+				case 'Y':
+				case 'N':
+				case 'V':
+				case 'L':
+				case 'C': {
+					if ($skip) {
+						break;
+					}
+					$line{$len-1} = strtolower($cmd);
+					$this->_out($line);
 					break;
 				}
-				case 'M':{
-					$this->y = $y + round($h/2);
-					$this->x = $this->img_rb_x;
+				case 'b':
+				case 'B': {
+					$this->_out($cmd . '*');
 					break;
 				}
-				case 'B':{
-					$this->y = $this->img_rb_y;
-					$this->x = $this->img_rb_x;
+				case 'f':
+				case 'F': {
+					if ($u > 0) {
+						$isU = false;
+						$max = min(($i + 5), $cnt);
+						for ($j = ($i + 1); $j < $max; ++$j) {
+							$isU = ($isU OR (($lines[$j] == 'U') OR ($lines[$j] == '*U')));
+						}
+						if ($isU) {
+							$this->_out('f*');
+						}
+					} else {
+						$this->_out('f*');
+					}
 					break;
 				}
-				case 'N':{
-					$this->SetY($this->img_rb_y);
+				case '*u': {
+					++$u;
 					break;
 				}
-				default:{
+				case '*U': {
+					--$u;
 					break;
 				}
 			}
-			$this->endlinex = $this->img_rb_x;
-		}
-
-		/**
-	 	 * Set document barcode.
-		 * @param string $bc barcode
-		 * @access public
-		 */
-		public function setBarcode($bc='') {
-			$this->barcode = $bc;
-		}
-
-		/**
-	 	 * Get current barcode.
-		 * @return string
-		 * @access public
-		 * @since 4.0.012 (2008-07-24)
-		 */
-		public function getBarcode() {
-			return $this->barcode;
-		}
-
-		/**
-	 	 * Print a Linear Barcode.
-	 	 * @param string $code code to print
-	 	 * @param string $type type of barcode (see barcodes.php for supported formats).
-		 * @param int $x x position in user units
-		 * @param int $y y position in user units
-		 * @param int $w width in user units
-		 * @param int $h height in user units
-		 * @param float $xres width of the smallest bar in user units
-		 * @param array $style array of options:<ul><li>boolean $style['border'] if true prints a border around the barcode</li><li>int $style['padding'] padding to leave around the barcode in user units (set to 'auto' for automatic padding)</li><li>array $style['fgcolor'] color array for bars and text</li><li>mixed $style['bgcolor'] color array for background or false for transparent</li><li>boolean $style["text"] boolean if true prints text below the barcode</li><li>string $style['font'] font name for text</li><li>int $style['fontsize'] font size for text</li><li>int $style['stretchtext']: 0 = disabled; 1 = horizontal scaling only if necessary; 2 = forced horizontal scaling; 3 = character spacing only if necessary; 4 = forced character spacing</li><li>string $style['position'] barcode position on the page: L = left margin; C = center; R = right margin; S = stretch</li></ul>
-		 * @param string $align Indicates the alignment of the pointer next to barcode insertion relative to barcode height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul>
-		 * @author Nicola Asuni
-		 * @since 3.1.000 (2008-06-09)
-		 * @access public
-		 */
-		public function write1DBarcode($code, $type, $x='', $y='', $w='', $h='', $xres=0.4, $style='', $align='') {
-			if ($this->empty_string(trim($code))) {
-				return;
-			}
-			require_once(dirname(__FILE__).'/barcodes.php');
-			// save current graphic settings
-			$gvars = $this->getGraphicVars();
-			// create new barcode object
-			$barcodeobj = new TCPDFBarcode($code, $type);
-			$arrcode = $barcodeobj->getBarcodeArray();
-			if ($arrcode === false) {
-				$this->Error('Error in 1D barcode string');
-			}
-			// set default values
-			if (!isset($style['position'])) {
-				$style['position'] = '';
-			}
-			if (!isset($style['fgcolor'])) {
-				$style['fgcolor'] = array(0,0,0); // default black
-			}
-			if (!isset($style['bgcolor'])) {
-				$style['bgcolor'] = false; // default transparent
+		}
+		// restore previous graphic state
+		$this->_out($this->epsmarker.'Q');
+		if (!empty($border)) {
+			$bx = $this->x;
+			$by = $this->y;
+			$this->x = $ximg;
+			if ($this->rtl) {
+				$this->x += $w;
 			}
-			if (!isset($style['border'])) {
-				$style['border'] = false;
+			$this->y = $y;
+			$this->Cell($w, $h, '', $border, 0, '', 0, '', 0, true);
+			$this->x = $bx;
+			$this->y = $by;
+		}
+		if ($link) {
+			$this->Link($ximg, $y, $w, $h, $link, 0);
+		}
+		// set pointer to align the next text/objects
+		switch($align) {
+			case 'T':{
+				$this->y = $y;
+				$this->x = $this->img_rb_x;
+				break;
 			}
-			$fontsize = 0;
-			if (!isset($style['text'])) {
-				$style['text'] = false;
+			case 'M':{
+				$this->y = $y + round($h/2);
+				$this->x = $this->img_rb_x;
+				break;
 			}
-			if ($style['text'] AND isset($style['font'])) {
-				if (isset($style['fontsize'])) {
-					$fontsize = $style['fontsize'];
-				}
-				$this->SetFont($style['font'], '', $fontsize);
+			case 'B':{
+				$this->y = $this->img_rb_y;
+				$this->x = $this->img_rb_x;
+				break;
 			}
-			if (!isset($style['stretchtext'])) {
-				$style['stretchtext'] = 4;
+			case 'N':{
+				$this->SetY($this->img_rb_y);
+				break;
 			}
-			// set foreground color
-			$this->SetDrawColorArray($style['fgcolor']);
-			$this->SetTextColorArray($style['fgcolor']);
-			if ($x === '') {
-				$x = $this->x;
+			default:{
+				break;
 			}
-			if ($y === '') {
-				$y = $this->y;
+		}
+		$this->endlinex = $this->img_rb_x;
+	}
+
+	/**
+	 * Set document barcode.
+	 * @param $bc (string) barcode
+	 * @public
+	 */
+	public function setBarcode($bc='') {
+		$this->barcode = $bc;
+	}
+
+	/**
+	 * Get current barcode.
+	 * @return string
+	 * @public
+	 * @since 4.0.012 (2008-07-24)
+	 */
+	public function getBarcode() {
+		return $this->barcode;
+	}
+
+	/**
+	 * Print a Linear Barcode.
+	 * @param $code (string) code to print
+	 * @param $type (string) type of barcode (see barcodes.php for supported formats).
+	 * @param $x (int) x position in user units (empty string = current x position)
+	 * @param $y (int) y position in user units (empty string = current y position)
+	 * @param $w (int) width in user units (empty string = remaining page width)
+	 * @param $h (int) height in user units (empty string = remaining page height)
+	 * @param $xres (float) width of the smallest bar in user units (empty string = default value = 0.4mm)
+	 * @param $style (array) array of options:<ul>
+	 * <li>boolean $style['border'] if true prints a border</li>
+	 * <li>int $style['padding'] padding to leave around the barcode in user units (set to 'auto' for automatic padding)</li>
+	 * <li>int $style['hpadding'] horizontal padding in user units (set to 'auto' for automatic padding)</li>
+	 * <li>int $style['vpadding'] vertical padding in user units (set to 'auto' for automatic padding)</li>
+	 * <li>array $style['fgcolor'] color array for bars and text</li>
+	 * <li>mixed $style['bgcolor'] color array for background (set to false for transparent)</li>
+	 * <li>boolean $style['text'] if true prints text below the barcode</li>
+	 * <li>string $style['label'] override default label</li>
+	 * <li>string $style['font'] font name for text</li><li>int $style['fontsize'] font size for text</li>
+	 * <li>int $style['stretchtext']: 0 = disabled; 1 = horizontal scaling only if necessary; 2 = forced horizontal scaling; 3 = character spacing only if necessary; 4 = forced character spacing.</li>
+	 * <li>string $style['position'] horizontal position of the containing barcode cell on the page: L = left margin; C = center; R = right margin.</li>
+	 * <li>string $style['align'] horizontal position of the barcode on the containing rectangle: L = left; C = center; R = right.</li>
+	 * <li>string $style['stretch'] if true stretch the barcode to best fit the available width, otherwise uses $xres resolution for a single bar.</li>
+	 * <li>string $style['fitwidth'] if true reduce the width to fit the barcode width + padding. When this option is enabled the 'stretch' option is automatically disabled.</li>
+	 * <li>string $style['cellfitalign'] this option works only when 'fitwidth' is true and 'position' is unset or empty. Set the horizontal position of the containing barcode cell inside the specified rectangle: L = left; C = center; R = right.</li></ul>
+	 * @param $align (string) Indicates the alignment of the pointer next to barcode insertion relative to barcode height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul>
+	 * @author Nicola Asuni
+	 * @since 3.1.000 (2008-06-09)
+	 * @public
+	 */
+	public function write1DBarcode($code, $type, $x='', $y='', $w='', $h='', $xres='', $style='', $align='') {
+		if ($this->empty_string(trim($code))) {
+			return;
+		}
+		require_once(dirname(__FILE__).'/barcodes.php');
+		// save current graphic settings
+		$gvars = $this->getGraphicVars();
+		// create new barcode object
+		$barcodeobj = new TCPDFBarcode($code, $type);
+		$arrcode = $barcodeobj->getBarcodeArray();
+		if ($arrcode === false) {
+			$this->Error('Error in 1D barcode string');
+		}
+		// set default values
+		if (!isset($style['position'])) {
+			$style['position'] = '';
+		} elseif ($style['position'] == 'S') {
+			// keep this for backward compatibility
+			$style['position'] = '';
+			$style['stretch'] = true;
+		}
+		if (!isset($style['fitwidth'])) {
+			if (!isset($style['stretch'])) {
+				$style['fitwidth'] = true;
+			} else {
+				$style['fitwidth'] = false;
 			}
+		}
+		if ($style['fitwidth']) {
+			// disable stretch
+			$style['stretch'] = false;
+		}
+		if (!isset($style['stretch'])) {
 			if (($w === '') OR ($w <= 0)) {
-				if ($this->rtl) {
-					$w = $this->x - $this->lMargin;
-				} else {
-					$w = $this->w - $this->rMargin - $this->x;
-				}
-			}
-			if (($h === '') OR ($h <= 0)) {
-				// horizontal aspect ration by default
-				$h = $w / 3;
+				$style['stretch'] = false;
+			} else {
+				$style['stretch'] = true;
 			}
-			if ($this->empty_string($xres)) {
-				$xres = 0.4;
+		}
+		if (!isset($style['fgcolor'])) {
+			$style['fgcolor'] = array(0,0,0); // default black
+		}
+		if (!isset($style['bgcolor'])) {
+			$style['bgcolor'] = false; // default transparent
+		}
+		if (!isset($style['border'])) {
+			$style['border'] = false;
+		}
+		$fontsize = 0;
+		if (!isset($style['text'])) {
+			$style['text'] = false;
+		}
+		if ($style['text'] AND isset($style['font'])) {
+			if (isset($style['fontsize'])) {
+				$fontsize = $style['fontsize'];
 			}
-			// padding
-			if (!isset($style['padding'])) {
-				$style['padding'] = 0;
-			} elseif ($style['padding'] === 'auto') {
-				$style['padding'] = $h / 4;
-			}
-			$fbw = ($arrcode['maxw'] * $xres) + (2 * $style['padding']);
-			$extraspace = ($this->cell_height_ratio * $fontsize / $this->k) + (2 * $style['padding']);
-			// maximum bar height
-			$barh = $h;
-			$h += $extraspace;
-			// fit the barcode on available space
-			$this->fitBlock($w, $h, $x, $y, false);
-			// set alignment
-			$this->img_rb_y = $y + $h;
-			// set alignment
+			$this->SetFont($style['font'], '', $fontsize);
+		}
+		if (!isset($style['stretchtext'])) {
+			$style['stretchtext'] = 4;
+		}
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($h, $x, $y);
+		if (($w === '') OR ($w <= 0)) {
 			if ($this->rtl) {
-				if ($style['position'] == 'L') {
-					$xpos = $this->lMargin;
-				} elseif ($style['position'] == 'C') {
-					$xpos = ($this->w + $this->lMargin - $this->rMargin - $fbw) / 2;
-				} elseif ($style['position'] == 'R') {
-					$xpos = $this->w - $this->rMargin - $fbw;
-				} elseif ($style['position'] == 'S') {
-					$fbw = $w;
-					$xres = ($w - (2 * $style['padding'])) / $arrcode['maxw'];
-					$xpos = $x - $w;
-				} else {
-					$xpos = $x - $fbw;
-				}
-				$this->img_rb_x = $xpos;
+				$w = $x - $this->lMargin;
 			} else {
-				if ($style['position'] == 'L') {
-					$xpos = $this->lMargin;
-				} elseif ($style['position'] == 'C') {
-					$xpos = ($this->w + $this->lMargin - $this->rMargin - $fbw) / 2;
-				} elseif ($style['position'] == 'R') {
-					$xpos = $this->w - $this->rMargin - $fbw;
-				} elseif ($style['position'] == 'S') {
-					$fbw = $w;
-					$xres = ($w - (2 * $style['padding'])) / $arrcode['maxw'];
-					$xpos = $x;
-				} else {
-					$xpos = $x;
-				}
-				$this->img_rb_x = $xpos + $fbw;
+				$w = $this->w - $this->rMargin - $x;
+			}
+		}
+		// padding
+		if (!isset($style['padding'])) {
+			$padding = 0;
+		} elseif ($style['padding'] === 'auto') {
+			$padding = 10 * ($w / ($arrcode['maxw'] + 20));
+		} else {
+			$padding = floatval($style['padding']);
+		}
+		// horizontal padding
+		if (!isset($style['hpadding'])) {
+			$hpadding = $padding;
+		} elseif ($style['hpadding'] === 'auto') {
+			$hpadding = 10 * ($w / ($arrcode['maxw'] + 20));
+		} else {
+			$hpadding = floatval($style['hpadding']);
+		}
+		// vertical padding
+		if (!isset($style['vpadding'])) {
+			$vpadding = $padding;
+		} elseif ($style['vpadding'] === 'auto') {
+			$vpadding = ($hpadding / 2);
+		} else {
+			$vpadding = floatval($style['vpadding']);
+		}
+		// calculate xres (single bar width)
+		$max_xres = ($w - (2 * $hpadding)) / $arrcode['maxw'];
+		if ($style['stretch']) {
+			$xres = $max_xres;
+		} else {
+			if ($this->empty_string($xres)) {
+				$xres = (0.141 * $this->k); // default bar width = 0.4 mm
 			}
-			$xpos_rect = $xpos;
-			$xpos = $xpos_rect + $style['padding'];
-			$xpos_text = $xpos;
-			// barcode is always printed in LTR direction
-			$tempRTL = $this->rtl;
-			$this->rtl = false;
-			// print background color
-			if ($style['bgcolor']) {
-				$this->Rect($xpos_rect, $y, $fbw, $h, $style['border'] ? 'DF' : 'F', '', $style['bgcolor']);
-			} elseif ($style['border']) {
-				$this->Rect($xpos_rect, $y, $fbw, $h, 'D');
-			}
-			// print bars
-			foreach ($arrcode['bcode'] as $k => $v) {
-				$bw = ($v['w'] * $xres);
-				if ($v['t']) {
-					// draw a vertical bar
-					$ypos = $y + $style['padding'] + ($v['p'] * $barh / $arrcode['maxh']);
-					$this->Rect($xpos, $ypos, $bw, ($v['h'] * $barh  / $arrcode['maxh']), 'F', array(), $style['fgcolor']);
-				}
-				$xpos += $bw;
+			if ($xres > $max_xres) {
+				// correct xres to fit on $w
+				$xres = $max_xres;
 			}
-			// print text
-			if ($style['text']) {
-				// print text
-				$this->x = $xpos_text;
-				$this->y = $y + $style['padding'] + $barh;
-				$this->Cell(($arrcode['maxw'] * $xres), ($this->cell_height_ratio * $fontsize / $this->k), $code, 0, 0, 'C', 0, '', $style['stretchtext']);
-			}
-			// restore original direction
-			$this->rtl = $tempRTL;
-			// restore previous settings
-			$this->setGraphicVars($gvars);
-			// set pointer to align the successive text/objects
-			switch($align) {
-				case 'T':{
-					$this->y = $y;
-					$this->x = $this->img_rb_x;
-					break;
-				}
-				case 'M':{
-					$this->y = $y + round($h/2);
-					$this->x = $this->img_rb_x;
-					break;
-				}
-				case 'B':{
-					$this->y = $this->img_rb_y;
-					$this->x = $this->img_rb_x;
-					break;
-				}
-				case 'N':{
-					$this->SetY($this->img_rb_y);
-					break;
+			if ((isset($style['padding']) AND ($style['padding'] === 'auto'))
+				OR (isset($style['hpadding']) AND ($style['hpadding'] === 'auto'))) {
+				$hpadding = 10 * $xres;
+				if (isset($style['vpadding']) AND ($style['vpadding'] === 'auto')) {
+					$vpadding = ($hpadding / 2);
 				}
-				default:{
-					break;
+			}
+		}
+		if ($style['fitwidth']) {
+			$wold = $w;
+			$w = (($arrcode['maxw'] * $xres) + (2 * $hpadding));
+			if (isset($style['cellfitalign'])) {
+				switch ($style['cellfitalign']) {
+					case 'L': {
+						if ($this->rtl) {
+							$x -= ($wold - $w);
+						}
+						break;
+					}
+					case 'R': {
+						if (!$this->rtl) {
+							$x += ($wold - $w);
+						}
+						break;
+					}
+					case 'C': {
+						if ($this->rtl) {
+							$x -= (($wold - $w) / 2);
+						} else {
+							$x += (($wold - $w) / 2);
+						}
+						break;
+					}
+					default : {
+						break;
+					}
 				}
 			}
-			$this->endlinex = $this->img_rb_x;
-		}
-
-		/**
-	 	 * This function is DEPRECATED, please use the new write1DBarcode() function.
-		 * @param int $x x position in user units
-		 * @param int $y y position in user units
-		 * @param int $w width in user units
-		 * @param int $h height position in user units
-		 * @param string $type type of barcode (I25, C128A, C128B, C128C, C39)
-		 * @param string $style barcode style
-		 * @param string $font font for text
-		 * @param int $xres x resolution
-		 * @param string $code code to print
-		 * @deprecated deprecated since version 3.1.000 (2008-06-10)
-		 * @access public
-		 * @see write1DBarcode()
-		 */
-		public function writeBarcode($x, $y, $w, $h, $type, $style, $font, $xres, $code) {
-			// convert old settings for the new write1DBarcode() function.
-			$xres = 1 / $xres;
-			$newstyle = array(
-				'position' => 'L',
-				'border' => false,
-				'padding' => 0,
-				'fgcolor' => array(0,0,0),
-				'bgcolor' => false,
-				'text' => true,
-				'font' => $font,
-				'fontsize' => 8,
-				'stretchtext' => 4
-			);
-			if ($style & 1) {
-				$newstyle['border'] = true;
-			}
-			if ($style & 2) {
-				$newstyle['bgcolor'] = false;
-			}
-			if ($style & 4) {
-				$newstyle['position'] = 'C';
-			} elseif ($style & 8) {
-				$newstyle['position'] = 'L';
-			} elseif ($style & 16) {
-				$newstyle['position'] = 'R';
-			}
-			if ($style & 128) {
-				$newstyle['text'] = true;
-			}
-			if ($style & 256) {
-				$newstyle['stretchtext'] = 4;
-			}
-			$this->write1DBarcode($code, $type, $x, $y, $w, $h, $xres, $newstyle, '');
-		}
-
-		/**
-	 	 * Print 2D Barcode.
-	 	 * @param string $code code to print
-	 	 * @param string $type type of barcode (see 2dbarcodes.php for supported formats).
-		 * @param int $x x position in user units
-		 * @param int $y y position in user units
-		 * @param int $w width in user units
-		 * @param int $h height in user units
-		 * @param array $style array of options:<ul><li>boolean $style['border'] if true prints a border around the barcode</li><li>int $style['padding'] padding to leave around the barcode in barcode units (set to 'auto' for automatic padding)</li><li>int $style['hpadding'] horizontal padding in barcode units (set to 'auto' for automatic padding)</li><li>int $style['vpadding'] vertical padding in barcode units (set to 'auto' for automatic padding)</li><li>int $style['module_width'] width of a single module in points</li><li>int $style['module_height'] height of a single module in points</li><li>array $style['fgcolor'] color array for bars and text</li><li>mixed $style['bgcolor'] color array for background or false for transparent</li><li>string $style['position'] barcode position on the page: L = left margin; C = center; R = right margin; S = stretch</li><li>$style['module_width'] width of a single module in points</li><li>$style['module_height'] height of a single module in points</li></ul>
-		 * @param string $align Indicates the alignment of the pointer next to barcode insertion relative to barcode height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul>
-		 * @param boolean $distort if true distort the barcode to fit width and height, otherwise preserve aspect ratio
-		 * @author Nicola Asuni
-		 * @since 4.5.037 (2009-04-07)
-		 * @access public
-		 */
-		public function write2DBarcode($code, $type, $x='', $y='', $w='', $h='', $style='', $align='', $distort=false) {
-			if ($this->empty_string(trim($code))) {
-				return;
+		}
+		$text_height = ($this->cell_height_ratio * $fontsize / $this->k);
+		// height
+		if (($h === '') OR ($h <= 0)) {
+			// set default height
+			$h = (($arrcode['maxw'] * $xres) / 3) + (2 * $vpadding) + $text_height;
+		}
+		$barh = $h - $text_height - (2 * $vpadding);
+		if ($barh <=0) {
+			// try to reduce font or padding to fit barcode on available height
+			if ($text_height > $h) {
+				$fontsize = (($h * $this->k) / (4 * $this->cell_height_ratio));
+				$text_height = ($this->cell_height_ratio * $fontsize / $this->k);
+				$this->SetFont($style['font'], '', $fontsize);
 			}
-			require_once(dirname(__FILE__).'/2dbarcodes.php');
-			// save current graphic settings
-			$gvars = $this->getGraphicVars();
-			// create new barcode object
-			$barcodeobj = new TCPDF2DBarcode($code, $type);
-			$arrcode = $barcodeobj->getBarcodeArray();
-			if ($arrcode === false) {
-				$this->Error('Error in 2D barcode string');
+			if ($vpadding > 0) {
+				$vpadding = (($h - $text_height) / 4);
+			}
+			$barh = $h - $text_height - (2 * $vpadding);
+		}
+		// fit the barcode on available space
+		$this->fitBlock($w, $h, $x, $y, false);
+		// set alignment
+		$this->img_rb_y = $y + $h;
+		// set alignment
+		if ($this->rtl) {
+			if ($style['position'] == 'L') {
+				$xpos = $this->lMargin;
+			} elseif ($style['position'] == 'C') {
+				$xpos = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
+			} elseif ($style['position'] == 'R') {
+				$xpos = $this->w - $this->rMargin - $w;
+			} else {
+				$xpos = $x - $w;
+			}
+			$this->img_rb_x = $xpos;
+		} else {
+			if ($style['position'] == 'L') {
+				$xpos = $this->lMargin;
+			} elseif ($style['position'] == 'C') {
+				$xpos = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
+			} elseif ($style['position'] == 'R') {
+				$xpos = $this->w - $this->rMargin - $w;
+			} else {
+				$xpos = $x;
+			}
+			$this->img_rb_x = $xpos + $w;
+		}
+		$xpos_rect = $xpos;
+		if (!isset($style['align'])) {
+			$style['align'] = 'C';
+		}
+		switch ($style['align']) {
+			case 'L': {
+				$xpos = $xpos_rect + $hpadding;
+				break;
+			}
+			case 'R': {
+				$xpos = $xpos_rect + ($w - ($arrcode['maxw'] * $xres)) - $hpadding;
+				break;
+			}
+			case 'C':
+			default : {
+				$xpos = $xpos_rect + (($w - ($arrcode['maxw'] * $xres)) / 2);
+				break;
+			}
+		}
+		$xpos_text = $xpos;
+		// barcode is always printed in LTR direction
+		$tempRTL = $this->rtl;
+		$this->rtl = false;
+		// print background color
+		if ($style['bgcolor']) {
+			$this->Rect($xpos_rect, $y, $w, $h, $style['border'] ? 'DF' : 'F', '', $style['bgcolor']);
+		} elseif ($style['border']) {
+			$this->Rect($xpos_rect, $y, $w, $h, 'D');
+		}
+		// set foreground color
+		$this->SetDrawColorArray($style['fgcolor']);
+		$this->SetTextColorArray($style['fgcolor']);
+		// print bars
+		foreach ($arrcode['bcode'] as $k => $v) {
+			$bw = ($v['w'] * $xres);
+			if ($v['t']) {
+				// draw a vertical bar
+				$ypos = $y + $vpadding + ($v['p'] * $barh / $arrcode['maxh']);
+				$this->Rect($xpos, $ypos, $bw, ($v['h'] * $barh / $arrcode['maxh']), 'F', array(), $style['fgcolor']);
+			}
+			$xpos += $bw;
+		}
+		// print text
+		if ($style['text']) {
+			if (isset($style['label']) AND !$this->empty_string($style['label'])) {
+				$label = $style['label'];
+			} else {
+				$label = $code;
 			}
-			// set default values
-			if (!isset($style['position'])) {
-				$style['position'] = '';
+			$txtwidth = ($arrcode['maxw'] * $xres);
+			if ($this->GetStringWidth($label) > $txtwidth) {
+				$style['stretchtext'] = 2;
 			}
-			if (!isset($style['fgcolor'])) {
-				$style['fgcolor'] = array(0,0,0); // default black
+			// print text
+			$this->x = $xpos_text;
+			$this->y = $y + $vpadding + $barh;
+			$cellpadding = $this->cell_padding;
+			$this->SetCellPadding(0);
+			$this->Cell($txtwidth, '', $label, 0, 0, 'C', 0, '', $style['stretchtext'], false, 'T', 'T');
+			$this->cell_padding = $cellpadding;
+		}
+		// restore original direction
+		$this->rtl = $tempRTL;
+		// restore previous settings
+		$this->setGraphicVars($gvars);
+		// set pointer to align the next text/objects
+		switch($align) {
+			case 'T':{
+				$this->y = $y;
+				$this->x = $this->img_rb_x;
+				break;
 			}
-			if (!isset($style['bgcolor'])) {
-				$style['bgcolor'] = false; // default transparent
+			case 'M':{
+				$this->y = $y + round($h / 2);
+				$this->x = $this->img_rb_x;
+				break;
 			}
-			if (!isset($style['border'])) {
-				$style['border'] = false;
+			case 'B':{
+				$this->y = $this->img_rb_y;
+				$this->x = $this->img_rb_x;
+				break;
 			}
-			// padding
-			if (!isset($style['padding'])) {
-				$style['padding'] = 0;
-			} elseif ($style['padding'] === 'auto') {
-				$style['padding'] = 4;
-			}
-			if (!isset($style['hpadding'])) {
-				$style['hpadding'] = $style['padding'];
-			} elseif ($style['hpadding'] === 'auto') {
-				$style['hpadding'] = 4;
-			}
-			if (!isset($style['vpadding'])) {
-				$style['vpadding'] = $style['padding'];
-			} elseif ($style['vpadding'] === 'auto') {
-				$style['vpadding'] = 4;
-			}
-			// cell (module) dimension
-			if (!isset($style['module_width'])) {
-				$style['module_width'] = 1; // width of a single module in points
-			}
-			if (!isset($style['module_height'])) {
-				$style['module_height'] = 1; // height of a single module in points
-			}
-			// set foreground color
-			$this->SetDrawColorArray($style['fgcolor']);
-			if ($x === '') {
-				$x = $this->x;
+			case 'N':{
+				$this->SetY($this->img_rb_y);
+				break;
 			}
-			if ($y === '') {
-				$y = $this->y;
+			default:{
+				break;
 			}
-			// number of barcode columns and rows
-			$rows = $arrcode['num_rows'];
-			$cols = $arrcode['num_cols'];
-			// module width and height
-			$mw = $style['module_width'];
-			$mh = $style['module_height'];
-			// get max dimensions
-			if ($this->rtl) {
-				$maxw = $this->x - $this->lMargin;
+		}
+		$this->endlinex = $this->img_rb_x;
+	}
+
+	/**
+	 * This function is DEPRECATED, please use the new write1DBarcode() function.
+	 * @param $x (int) x position in user units
+	 * @param $y (int) y position in user units
+	 * @param $w (int) width in user units
+	 * @param $h (int) height position in user units
+	 * @param $type (string) type of barcode
+	 * @param $style (string) barcode style
+	 * @param $font (string) font for text
+	 * @param $xres (int) x resolution
+	 * @param $code (string) code to print
+	 * @deprecated deprecated since version 3.1.000 (2008-06-10)
+	 * @public
+	 * @see write1DBarcode()
+	 */
+	public function writeBarcode($x, $y, $w, $h, $type, $style, $font, $xres, $code) {
+		// convert old settings for the new write1DBarcode() function.
+		$xres = 1 / $xres;
+		$newstyle = array(
+			'position' => '',
+			'align' => '',
+			'stretch' => false,
+			'fitwidth' => false,
+			'cellfitalign' => '',
+			'border' => false,
+			'padding' => 0,
+			'fgcolor' => array(0,0,0),
+			'bgcolor' => false,
+			'text' => true,
+			'font' => $font,
+			'fontsize' => 8,
+			'stretchtext' => 4
+		);
+		if ($style & 1) {
+			$newstyle['border'] = true;
+		}
+		if ($style & 2) {
+			$newstyle['bgcolor'] = false;
+		}
+		if ($style & 4) {
+			$newstyle['position'] = 'C';
+		} elseif ($style & 8) {
+			$newstyle['position'] = 'L';
+		} elseif ($style & 16) {
+			$newstyle['position'] = 'R';
+		}
+		if ($style & 128) {
+			$newstyle['text'] = true;
+		}
+		if ($style & 256) {
+			$newstyle['stretchtext'] = 4;
+		}
+		$this->write1DBarcode($code, $type, $x, $y, $w, $h, $xres, $newstyle, '');
+	}
+
+	/**
+	 * Print 2D Barcode.
+	 * @param $code (string) code to print
+	 * @param $type (string) type of barcode (see 2dbarcodes.php for supported formats).
+	 * @param $x (int) x position in user units
+	 * @param $y (int) y position in user units
+	 * @param $w (int) width in user units
+	 * @param $h (int) height in user units
+	 * @param $style (array) array of options:<ul>
+	 * <li>boolean $style['border'] if true prints a border around the barcode</li>
+	 * <li>int $style['padding'] padding to leave around the barcode in barcode units (set to 'auto' for automatic padding)</li>
+	 * <li>int $style['hpadding'] horizontal padding in barcode units (set to 'auto' for automatic padding)</li>
+	 * <li>int $style['vpadding'] vertical padding in barcode units (set to 'auto' for automatic padding)</li>
+	 * <li>int $style['module_width'] width of a single module in points</li>
+	 * <li>int $style['module_height'] height of a single module in points</li>
+	 * <li>array $style['fgcolor'] color array for bars and text</li>
+	 * <li>mixed $style['bgcolor'] color array for background or false for transparent</li>
+	 * <li>string $style['position'] barcode position on the page: L = left margin; C = center; R = right margin; S = stretch</li><li>$style['module_width'] width of a single module in points</li>
+	 * <li>$style['module_height'] height of a single module in points</li></ul>
+	 * @param $align (string) Indicates the alignment of the pointer next to barcode insertion relative to barcode height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul>
+	 * @param $distort (boolean) if true distort the barcode to fit width and height, otherwise preserve aspect ratio
+	 * @author Nicola Asuni
+	 * @since 4.5.037 (2009-04-07)
+	 * @public
+	 */
+	public function write2DBarcode($code, $type, $x='', $y='', $w='', $h='', $style='', $align='', $distort=false) {
+		if ($this->empty_string(trim($code))) {
+			return;
+		}
+		require_once(dirname(__FILE__).'/2dbarcodes.php');
+		// save current graphic settings
+		$gvars = $this->getGraphicVars();
+		// create new barcode object
+		$barcodeobj = new TCPDF2DBarcode($code, $type);
+		$arrcode = $barcodeobj->getBarcodeArray();
+		if (($arrcode === false) OR empty($arrcode)) {
+			$this->Error('Error in 2D barcode string');
+		}
+		// set default values
+		if (!isset($style['position'])) {
+			$style['position'] = '';
+		}
+		if (!isset($style['fgcolor'])) {
+			$style['fgcolor'] = array(0,0,0); // default black
+		}
+		if (!isset($style['bgcolor'])) {
+			$style['bgcolor'] = false; // default transparent
+		}
+		if (!isset($style['border'])) {
+			$style['border'] = false;
+		}
+		// padding
+		if (!isset($style['padding'])) {
+			$style['padding'] = 0;
+		} elseif ($style['padding'] === 'auto') {
+			$style['padding'] = 4;
+		}
+		if (!isset($style['hpadding'])) {
+			$style['hpadding'] = $style['padding'];
+		} elseif ($style['hpadding'] === 'auto') {
+			$style['hpadding'] = 4;
+		}
+		if (!isset($style['vpadding'])) {
+			$style['vpadding'] = $style['padding'];
+		} elseif ($style['vpadding'] === 'auto') {
+			$style['vpadding'] = 4;
+		}
+		// cell (module) dimension
+		if (!isset($style['module_width'])) {
+			$style['module_width'] = 1; // width of a single module in points
+		}
+		if (!isset($style['module_height'])) {
+			$style['module_height'] = 1; // height of a single module in points
+		}
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($h, $x, $y);
+		// number of barcode columns and rows
+		$rows = $arrcode['num_rows'];
+		$cols = $arrcode['num_cols'];
+		// module width and height
+		$mw = $style['module_width'];
+		$mh = $style['module_height'];
+		// get max dimensions
+		if ($this->rtl) {
+			$maxw = $x - $this->lMargin;
+		} else {
+			$maxw = $this->w - $this->rMargin - $x;
+		}
+		$maxh = ($this->h - $this->tMargin - $this->bMargin);
+		$ratioHW = ($rows * $mh) / ($cols * $mw);
+		$ratioWH = ($cols * $mw) / ($rows * $mh);
+		if (!$distort) {
+			if (($maxw * $ratioHW) > $maxh) {
+				$maxw = $maxh * $ratioWH;
+			}
+			if (($maxh * $ratioWH) > $maxw) {
+				$maxh = $maxw * $ratioHW;
+			}
+		}
+		// set maximum dimesions
+		if ($w > $maxw) {
+			$w = $maxw;
+		}
+		if ($h > $maxh) {
+			$h = $maxh;
+		}
+		$hpad = (2 * $style['hpadding']);
+		$vpad = (2 * $style['vpadding']);
+		// set dimensions
+		if ((($w === '') OR ($w <= 0)) AND (($h === '') OR ($h <= 0))) {
+			$w = ($cols + $hpad) * ($mw / $this->k);
+			$h = ($rows + $vpad) * ($mh / $this->k);
+		} elseif (($w === '') OR ($w <= 0)) {
+			$w = $h * $ratioWH;
+		} elseif (($h === '') OR ($h <= 0)) {
+			$h = $w * $ratioHW;
+		}
+		// barcode size (excluding padding)
+		$bw = ($w * $cols) / ($cols + $hpad);
+		$bh = ($h * $rows) / ($rows + $vpad);
+		// dimension of single barcode cell unit
+		$cw = $bw / $cols;
+		$ch = $bh / $rows;
+		if (!$distort) {
+			if (($cw / $ch) > ($mw / $mh)) {
+				// correct horizontal distortion
+				$cw = $ch * $mw / $mh;
+				$bw = $cw * $cols;
+				$style['hpadding'] = ($w - $bw) / (2 * $cw);
 			} else {
-				$maxw = $this->w - $this->rMargin - $this->x;
-			}
-			$maxh = ($this->h - $this->tMargin - $this->bMargin);
-			$ratioHW = ($rows * $mh) / ($cols * $mw);
-			$ratioWH = ($cols * $mw) / ($rows * $mh);
-			if (!$distort) {
-				if (($maxw * $ratioHW) > $maxh) {
-					$maxw = $maxh * $ratioWH;
-				}
-				if (($maxh * $ratioWH) > $maxw) {
-					$maxh = $maxw * $ratioHW;
-				}
-			}
-			// set maximum dimesions
-			if ($w > $maxw) {
-				$w = $maxw;
-			}
-			if ($h > $maxh) {
-				$h = $maxh;
-			}
-			$hpad = (2 * $style['hpadding']);
-			$vpad = (2 * $style['vpadding']);
-			// set dimensions
-			if ((($w === '') OR ($w <= 0)) AND (($h === '') OR ($h <= 0))) {
-				$w = ($cols + $hpad) * ($mw / $this->k);
-				$h = ($rows + $vpad) * ($mh / $this->k);
-			} elseif (($w === '') OR ($w <= 0)) {
-				$w = $h * $ratioWH;
-			} elseif (($h === '') OR ($h <= 0)) {
-				$h = $w * $ratioHW;
-			}
-			// barcode size (excluding padding)
-			$bw = ($w * $cols) / ($cols + $hpad);
-			$bh = ($h * $rows) / ($rows + $vpad);
-			// dimension of single barcode cell unit
-			$cw = $bw / $cols;
-			$ch = $bh / $rows;
-			if (!$distort) {
-				if (($cw / $ch) > ($mw / $mh)) {
-					// correct horizontal distortion
-					$cw = $ch * $mw / $mh;
-					$bw = $cw * $cols;
-					$style['hpadding'] = ($w - $bw) / (2 * $cw);
-				} else {
-					// correct vertical distortion
-					$ch = $cw * $mh / $mw;
-					$bh = $ch * $rows;
-					$style['vpadding'] = ($h - $bh) / (2 * $ch);
-				}
-			}
-			// fit the barcode on available space
-			$this->fitBlock($w, $h, $x, $y, false);
-			// set alignment
-			$this->img_rb_y = $y + $h;
-			// set alignment
-			if ($this->rtl) {
-				if ($style['position'] == 'L') {
-					$xpos = $this->lMargin;
-				} elseif ($style['position'] == 'C') {
-					$xpos = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
-				} elseif ($style['position'] == 'R') {
-					$xpos = $this->w - $this->rMargin - $w;
-				} else {
-					$xpos = $x - $w;
-				}
-				$this->img_rb_x = $xpos;
+				// correct vertical distortion
+				$ch = $cw * $mh / $mw;
+				$bh = $ch * $rows;
+				$style['vpadding'] = ($h - $bh) / (2 * $ch);
+			}
+		}
+		// fit the barcode on available space
+		$this->fitBlock($w, $h, $x, $y, false);
+		// set alignment
+		$this->img_rb_y = $y + $h;
+		// set alignment
+		if ($this->rtl) {
+			if ($style['position'] == 'L') {
+				$xpos = $this->lMargin;
+			} elseif ($style['position'] == 'C') {
+				$xpos = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
+			} elseif ($style['position'] == 'R') {
+				$xpos = $this->w - $this->rMargin - $w;
 			} else {
-				if ($style['position'] == 'L') {
-					$xpos = $this->lMargin;
-				} elseif ($style['position'] == 'C') {
-					$xpos = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
-				} elseif ($style['position'] == 'R') {
-					$xpos = $this->w - $this->rMargin - $w;
-				} else {
-					$xpos = $x;
-				}
-				$this->img_rb_x = $xpos + $w;
-			}
-			$xstart = $xpos + ($style['hpadding'] * $cw);
-			$ystart = $y + ($style['vpadding'] * $ch);
-			// barcode is always printed in LTR direction
-			$tempRTL = $this->rtl;
-			$this->rtl = false;
-			// print background color
-			if ($style['bgcolor']) {
-				$this->Rect($xpos, $y, $w, $h, $style['border'] ? 'DF' : 'F', '', $style['bgcolor']);
-			} elseif ($style['border']) {
-				$this->Rect($xpos, $y, $w, $h, 'D');
-			}
-			// print barcode cells
-			// for each row
-			for ($r = 0; $r < $rows; ++$r) {
-				$xr = $xstart;
-				// for each column
-				for ($c = 0; $c < $cols; ++$c) {
-					if ($arrcode['bcode'][$r][$c] == 1) {
-						// draw a single barcode cell
-						$this->Rect($xr, $ystart, $cw, $ch, 'F', array(), $style['fgcolor']);
-					}
-					$xr += $cw;
-				}
-				$ystart += $ch;
-			}
-			// restore original direction
-			$this->rtl = $tempRTL;
-			// restore previous settings
-			$this->setGraphicVars($gvars);
-			// set pointer to align the successive text/objects
-			switch($align) {
-				case 'T':{
-					$this->y = $y;
-					$this->x = $this->img_rb_x;
-					break;
-				}
-				case 'M':{
-					$this->y = $y + round($h/2);
-					$this->x = $this->img_rb_x;
-					break;
-				}
-				case 'B':{
-					$this->y = $this->img_rb_y;
-					$this->x = $this->img_rb_x;
-					break;
-				}
-				case 'N':{
-					$this->SetY($this->img_rb_y);
-					break;
-				}
-				default:{
-					break;
-				}
-			}
-			$this->endlinex = $this->img_rb_x;
-		}
-
-		/**
-		 * Returns an array containing current margins:
-		 * <ul>
-				<li>$ret['left'] = left  margin</li>
-				<li>$ret['right'] = right margin</li>
-				<li>$ret['top'] = top margin</li>
-				<li>$ret['bottom'] = bottom margin</li>
-				<li>$ret['header'] = header margin</li>
-				<li>$ret['footer'] = footer margin</li>
-				<li>$ret['cell'] = cell margin</li>
-		 * </ul>
-		 * @return array containing all margins measures
-		 * @access public
-		 * @since 3.2.000 (2008-06-23)
-		 */
-		public function getMargins() {
-			$ret = array(
-				'left' => $this->lMargin,
-				'right' => $this->rMargin,
-				'top' => $this->tMargin,
-				'bottom' => $this->bMargin,
-				'header' => $this->header_margin,
-				'footer' => $this->footer_margin,
-				'cell' => $this->cMargin,
-			);
-			return $ret;
-		}
-
-		/**
-		 * Returns an array containing original margins:
-		 * <ul>
-				<li>$ret['left'] = left  margin</li>
-				<li>$ret['right'] = right margin</li>
-		 * </ul>
-		 * @return array containing all margins measures
-		 * @access public
-		 * @since 4.0.012 (2008-07-24)
-		 */
-		public function getOriginalMargins() {
-			$ret = array(
-				'left' => $this->original_lMargin,
-				'right' => $this->original_rMargin
-			);
-			return $ret;
-		}
-
-		/**
-		 * Returns the current font size.
-		 * @return current font size
-		 * @access public
-		 * @since 3.2.000 (2008-06-23)
-		 */
-		public function getFontSize() {
-			return $this->FontSize;
-		}
-
-		/**
-		 * Returns the current font size in points unit.
-		 * @return current font size in points unit
-		 * @access public
-		 * @since 3.2.000 (2008-06-23)
-		 */
-		public function getFontSizePt() {
-			return $this->FontSizePt;
-		}
-
-		/**
-		 * Returns the current font family name.
-		 * @return string current font family name
-		 * @access public
-		 * @since 4.3.008 (2008-12-05)
-		 */
-		public function getFontFamily() {
-			return $this->FontFamily;
-		}
-
-		/**
-		 * Returns the current font style.
-		 * @return string current font style
-		 * @access public
-		 * @since 4.3.008 (2008-12-05)
-		 */
-		public function getFontStyle() {
-			return $this->FontStyle;
-		}
-
-		/**
-		 * Extracts the CSS properties from a CSS string.
-		 * @param string $cssdata string containing CSS definitions.
-		 * @return An array where the keys are the CSS selectors and the values are the CSS properties.
-		 * @author Nicola Asuni
-		 * @since 5.1.000 (2010-05-25)
-		 * @access protected
-		 */
-		protected function extractCSSproperties($cssdata) {
-			if (empty($cssdata)) {
-				return array();
-			}
-			// remove comments
-			$cssdata = preg_replace('/\/\*[^\*]*\*\//', '', $cssdata);
-			// remove newlines and multiple spaces
-			$cssdata = preg_replace('/[\s]+/', ' ', $cssdata);
-			// remove some spaces
-			$cssdata = preg_replace('/[\s]*([;:\{\}]{1})[\s]*/', '\\1', $cssdata);
-			// remove empty blocks
-			$cssdata = preg_replace('/([^\}\{]+)\{\}/', '', $cssdata);
-			// replace media type parenthesis
-			$cssdata = preg_replace('/@media[\s]+([^\{]*)\{/i', '@media \\1�', $cssdata);
-			$cssdata = preg_replace('/\}\}/si', '}�', $cssdata);
-			// trim string
-			$cssdata = trim($cssdata);
-			// find media blocks (all, braille, embossed, handheld, print, projection, screen, speech, tty, tv)
-			$cssblocks = array();
-			$matches = array();
-			if (preg_match_all('/@media[\s]+([^\�]*)�([^�]*)�/i', $cssdata, $matches) > 0) {
-				foreach ($matches[1] as $key => $type) {
-					$cssblocks[$type] = $matches[2][$key];
-				}
-				// remove media blocks
-				$cssdata = preg_replace('/@media[\s]+([^\�]*)�([^�]*)�/i', '', $cssdata);
+				$xpos = $x - $w;
+			}
+			$this->img_rb_x = $xpos;
+		} else {
+			if ($style['position'] == 'L') {
+				$xpos = $this->lMargin;
+			} elseif ($style['position'] == 'C') {
+				$xpos = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
+			} elseif ($style['position'] == 'R') {
+				$xpos = $this->w - $this->rMargin - $w;
+			} else {
+				$xpos = $x;
+			}
+			$this->img_rb_x = $xpos + $w;
+		}
+		$xstart = $xpos + ($style['hpadding'] * $cw);
+		$ystart = $y + ($style['vpadding'] * $ch);
+		// barcode is always printed in LTR direction
+		$tempRTL = $this->rtl;
+		$this->rtl = false;
+		// print background color
+		if ($style['bgcolor']) {
+			$this->Rect($xpos, $y, $w, $h, $style['border'] ? 'DF' : 'F', '', $style['bgcolor']);
+		} elseif ($style['border']) {
+			$this->Rect($xpos, $y, $w, $h, 'D');
+		}
+		// set foreground color
+		$this->SetDrawColorArray($style['fgcolor']);
+		// print barcode cells
+		// for each row
+		for ($r = 0; $r < $rows; ++$r) {
+			$xr = $xstart;
+			// for each column
+			for ($c = 0; $c < $cols; ++$c) {
+				if ($arrcode['bcode'][$r][$c] == 1) {
+					// draw a single barcode cell
+					$this->Rect($xr, $ystart, $cw, $ch, 'F', array(), $style['fgcolor']);
+				}
+				$xr += $cw;
+			}
+			$ystart += $ch;
+		}
+		// restore original direction
+		$this->rtl = $tempRTL;
+		// restore previous settings
+		$this->setGraphicVars($gvars);
+		// set pointer to align the next text/objects
+		switch($align) {
+			case 'T':{
+				$this->y = $y;
+				$this->x = $this->img_rb_x;
+				break;
 			}
-			// keep 'all' and 'print' media, other media types are discarded
-			if (isset($cssblocks['all']) AND !empty($cssblocks['all'])) {
-				$cssdata .= $cssblocks['all'];
+			case 'M':{
+				$this->y = $y + round($h/2);
+				$this->x = $this->img_rb_x;
+				break;
 			}
-			if (isset($cssblocks['print']) AND !empty($cssblocks['print'])) {
-				$cssdata .= $cssblocks['print'];
+			case 'B':{
+				$this->y = $this->img_rb_y;
+				$this->x = $this->img_rb_x;
+				break;
 			}
-			// reset css blocks array
-			$cssblocks = array();
-			$matches = array();
-			// explode css data string into array
-			if (substr($cssdata, -1) == '}') {
-				// remove last parethesis
-				$cssdata = substr($cssdata, 0, -1);
-			}
-			$matches = explode('}', $cssdata);
-			foreach ($matches as $key => $block) {
-				// index 0 contains the CSS selector, index 1 contains CSS properties
-				$cssblocks[$key] = explode('{', $block);
-			}
-			// split groups of selectors (comma-separated list of selectors)
-			foreach ($cssblocks as $key => $block) {
-				if (strpos($block[0], ',') > 0) {
-					$selectors = explode(',', $block[0]);
-					foreach ($selectors as $sel) {
-						$cssblocks[] = array(0 => trim($sel), 1 => $block[1]);
-					}
-					unset($cssblocks[$key]);
-				}
-			}
-			// covert array to selector => properties
-			$cssdata = array();
-			foreach ($cssblocks as $block) {
-				$selector = $block[0];
-				// calculate selector's specificity
-				$matches = array();
-				$a = 0; // the declaration is not from is a 'style' attribute
-				$b = intval(preg_match_all('/[\#]/', $selector, $matches)); // number of ID attributes
-				$c = intval(preg_match_all('/[\[\.]/', $selector, $matches)); // number of other attributes
-				$c += intval(preg_match_all('/[\:]link|visited|hover|active|focus|target|lang|enabled|disabled|checked|indeterminate|root|nth|first|last|only|empty|contains|not/i', $selector, $matches)); // number of pseudo-classes
-				$d = intval(preg_match_all('/[\>\+\~\s]{1}[a-zA-Z0-9\*]+/', ' '.$selector, $matches)); // number of element names
-				$d += intval(preg_match_all('/[\:][\:]/', $selector, $matches)); // number of pseudo-elements
-				$specificity = $a.$b.$c.$d;
-				// add specificity to the beginning of the selector
-				$cssdata[$specificity.' '.$selector] = $block[1];
-			}
-			// sort selectors alphabetically to account for specificity
-			ksort($cssdata, SORT_STRING);
-			// return array
-			return $cssdata;
-		}
-
-		/**
-	 	 * Returns true if the CSS selector is valid for the selected HTML tag
-		 * @param array $dom array of HTML tags and properties
-		 * @param int $key key of the current HTML tag
-		 * @param string $selector CSS selector string
-		 * @return true if the selector is valid, false otherwise
-		 * @access protected
-		 * @since 5.1.000 (2010-05-25)
-		 */
-		protected function isValidCSSSelectorForTag($dom, $key, $selector) {
-			$valid = false; // value to be returned
-			$tag = $dom[$key]['value'];
-			$class = '';
-			if (isset($dom[$key]['attribute']['class']) AND !empty($dom[$key]['attribute']['class'])) {
-				$class = strtolower($dom[$key]['attribute']['class']);
-			}
-			$id = '';
-			if (isset($dom[$key]['attribute']['id']) AND !empty($dom[$key]['attribute']['id'])) {
-				$id = strtolower($dom[$key]['attribute']['id']);
+			case 'N':{
+				$this->SetY($this->img_rb_y);
+				break;
+			}
+			default:{
+				break;
 			}
+		}
+		$this->endlinex = $this->img_rb_x;
+	}
+
+	/**
+	 * Returns an array containing current margins:
+	 * <ul>
+			<li>$ret['left'] = left margin</li>
+			<li>$ret['right'] = right margin</li>
+			<li>$ret['top'] = top margin</li>
+			<li>$ret['bottom'] = bottom margin</li>
+			<li>$ret['header'] = header margin</li>
+			<li>$ret['footer'] = footer margin</li>
+			<li>$ret['cell'] = cell padding array</li>
+			<li>$ret['padding_left'] = cell left padding</li>
+			<li>$ret['padding_top'] = cell top padding</li>
+			<li>$ret['padding_right'] = cell right padding</li>
+			<li>$ret['padding_bottom'] = cell bottom padding</li>
+	 * </ul>
+	 * @return array containing all margins measures
+	 * @public
+	 * @since 3.2.000 (2008-06-23)
+	 */
+	public function getMargins() {
+		$ret = array(
+			'left' => $this->lMargin,
+			'right' => $this->rMargin,
+			'top' => $this->tMargin,
+			'bottom' => $this->bMargin,
+			'header' => $this->header_margin,
+			'footer' => $this->footer_margin,
+			'cell' => $this->cell_padding,
+			'padding_left' => $this->cell_padding['L'],
+			'padding_top' => $this->cell_padding['T'],
+			'padding_right' => $this->cell_padding['R'],
+			'padding_bottom' => $this->cell_padding['B']
+		);
+		return $ret;
+	}
+
+	/**
+	 * Returns an array containing original margins:
+	 * <ul>
+			<li>$ret['left'] = left margin</li>
+			<li>$ret['right'] = right margin</li>
+	 * </ul>
+	 * @return array containing all margins measures
+	 * @public
+	 * @since 4.0.012 (2008-07-24)
+	 */
+	public function getOriginalMargins() {
+		$ret = array(
+			'left' => $this->original_lMargin,
+			'right' => $this->original_rMargin
+		);
+		return $ret;
+	}
+
+	/**
+	 * Returns the current font size.
+	 * @return current font size
+	 * @public
+	 * @since 3.2.000 (2008-06-23)
+	 */
+	public function getFontSize() {
+		return $this->FontSize;
+	}
+
+	/**
+	 * Returns the current font size in points unit.
+	 * @return current font size in points unit
+	 * @public
+	 * @since 3.2.000 (2008-06-23)
+	 */
+	public function getFontSizePt() {
+		return $this->FontSizePt;
+	}
+
+	/**
+	 * Returns the current font family name.
+	 * @return string current font family name
+	 * @public
+	 * @since 4.3.008 (2008-12-05)
+	 */
+	public function getFontFamily() {
+		return $this->FontFamily;
+	}
+
+	/**
+	 * Returns the current font style.
+	 * @return string current font style
+	 * @public
+	 * @since 4.3.008 (2008-12-05)
+	 */
+	public function getFontStyle() {
+		return $this->FontStyle;
+	}
+
+	/**
+	 * Cleanup HTML code (requires HTML Tidy library).
+	 * @param $html (string) htmlcode to fix
+	 * @param $default_css (string) CSS commands to add
+	 * @param $tagvs (array) parameters for setHtmlVSpace method
+	 * @param $tidy_options (array) options for tidy_parse_string function
+	 * @return string XHTML code cleaned up
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.9.017 (2010-11-16)
+	 * @see setHtmlVSpace()
+	 */
+	public function fixHTMLCode($html, $default_css='', $tagvs='', $tidy_options='') {
+		// configure parameters for HTML Tidy
+		if ($tidy_options === '') {
+			$tidy_options = array (
+				'clean' => 1,
+				'drop-empty-paras' => 0,
+				'drop-proprietary-attributes' => 1,
+				'fix-backslash' => 1,
+				'hide-comments' => 1,
+				'join-styles' => 1,
+				'lower-literals' => 1,
+				'merge-divs' => 1,
+				'merge-spans' => 1,
+				'output-xhtml' => 1,
+				'word-2000' => 1,
+				'wrap' => 0,
+				'output-bom' => 0,
+				//'char-encoding' => 'utf8',
+				//'input-encoding' => 'utf8',
+				//'output-encoding' => 'utf8'
+			);
+		}
+		// clean up the HTML code
+		$tidy = tidy_parse_string($html, $tidy_options);
+		// fix the HTML
+		$tidy->cleanRepair();
+		// get the CSS part
+		$tidy_head = tidy_get_head($tidy);
+		$css = $tidy_head->value;
+		$css = preg_replace('/<style([^>]+)>/ims', '<style>', $css);
+		$css = preg_replace('/<\/style>(.*)<style>/ims', "\n", $css);
+		$css = str_replace('/*<![CDATA[*/', '', $css);
+		$css = str_replace('/*]]>*/', '', $css);
+		preg_match('/<style>(.*)<\/style>/ims', $css, $matches);
+		$css = strtolower($matches[1]);
+		// include default css
+		$css = '<style>'.$default_css.$css.'</style>';
+		// get the body part
+		$tidy_body = tidy_get_body($tidy);
+		$html = $tidy_body->value;
+		// fix some self-closing tags
+		$html = str_replace('<br>', '<br />', $html);
+		// remove some empty tag blocks
+		$html = preg_replace('/<div([^\>]*)><\/div>/', '', $html);
+		$html = preg_replace('/<p([^\>]*)><\/p>/', '', $html);
+		if ($tagvs !== '') {
+			// set vertical space for some XHTML tags
+			$this->setHtmlVSpace($tagvs);
+		}
+		// return the cleaned XHTML code + CSS
+		return $css.$html;
+	}
+
+	/**
+	 * Extracts the CSS properties from a CSS string.
+	 * @param $cssdata (string) string containing CSS definitions.
+	 * @return An array where the keys are the CSS selectors and the values are the CSS properties.
+	 * @author Nicola Asuni
+	 * @since 5.1.000 (2010-05-25)
+	 * @protected
+	 */
+	protected function extractCSSproperties($cssdata) {
+		if (empty($cssdata)) {
+			return array();
+		}
+		// remove comments
+		$cssdata = preg_replace('/\/\*[^\*]*\*\//', '', $cssdata);
+		// remove newlines and multiple spaces
+		$cssdata = preg_replace('/[\s]+/', ' ', $cssdata);
+		// remove some spaces
+		$cssdata = preg_replace('/[\s]*([;:\{\}]{1})[\s]*/', '\\1', $cssdata);
+		// remove empty blocks
+		$cssdata = preg_replace('/([^\}\{]+)\{\}/', '', $cssdata);
+		// replace media type parenthesis
+		$cssdata = preg_replace('/@media[\s]+([^\{]*)\{/i', '@media \\1§', $cssdata);
+		$cssdata = preg_replace('/\}\}/si', '}§', $cssdata);
+		// trim string
+		$cssdata = trim($cssdata);
+		// find media blocks (all, braille, embossed, handheld, print, projection, screen, speech, tty, tv)
+		$cssblocks = array();
+		$matches = array();
+		if (preg_match_all('/@media[\s]+([^\§]*)§([^§]*)§/i', $cssdata, $matches) > 0) {
+			foreach ($matches[1] as $key => $type) {
+				$cssblocks[$type] = $matches[2][$key];
+			}
+			// remove media blocks
+			$cssdata = preg_replace('/@media[\s]+([^\§]*)§([^§]*)§/i', '', $cssdata);
+		}
+		// keep 'all' and 'print' media, other media types are discarded
+		if (isset($cssblocks['all']) AND !empty($cssblocks['all'])) {
+			$cssdata .= $cssblocks['all'];
+		}
+		if (isset($cssblocks['print']) AND !empty($cssblocks['print'])) {
+			$cssdata .= $cssblocks['print'];
+		}
+		// reset css blocks array
+		$cssblocks = array();
+		$matches = array();
+		// explode css data string into array
+		if (substr($cssdata, -1) == '}') {
+			// remove last parethesis
+			$cssdata = substr($cssdata, 0, -1);
+		}
+		$matches = explode('}', $cssdata);
+		foreach ($matches as $key => $block) {
+			// index 0 contains the CSS selector, index 1 contains CSS properties
+			$cssblocks[$key] = explode('{', $block);
+			if (!isset($cssblocks[$key][1])) {
+				// remove empty definitions
+				unset($cssblocks[$key]);
+			}
+		}
+		// split groups of selectors (comma-separated list of selectors)
+		foreach ($cssblocks as $key => $block) {
+			if (strpos($block[0], ',') > 0) {
+				$selectors = explode(',', $block[0]);
+				foreach ($selectors as $sel) {
+					$cssblocks[] = array(0 => trim($sel), 1 => $block[1]);
+				}
+				unset($cssblocks[$key]);
+			}
+		}
+		// covert array to selector => properties
+		$cssdata = array();
+		foreach ($cssblocks as $block) {
+			$selector = $block[0];
+			// calculate selector's specificity
 			$matches = array();
-			if (preg_match_all('/([\>\+\~\s]{1})([a-zA-Z0-9\*]+)([^\>\+\~\s]*)/si', $selector, $matches, PREG_PATTERN_ORDER | PREG_OFFSET_CAPTURE) > 0) {
-				$parentop = array_pop($matches[1]);
-				$operator = $parentop[0];
-				$offset = $parentop[1];
-				$lasttag = array_pop($matches[2]);
-				$lasttag = strtolower(trim($lasttag[0]));
-				if (($lasttag == '*') OR ($lasttag == $tag)) {
-					// the last element on selector is our tag or 'any tag'
-					$attrib = array_pop($matches[3]);
-					$attrib = strtolower(trim($attrib[0]));
-					if (!empty($attrib)) {
-						// check if matches class, id, attribute, pseudo-class or pseudo-element
-						switch ($attrib{0}) {
-							case '.': { // class
-								if (substr($attrib, 1) == $class) {
-									$valid = true;
-								}
-								break;
+			$a = 0; // the declaration is not from is a 'style' attribute
+			$b = intval(preg_match_all('/[\#]/', $selector, $matches)); // number of ID attributes
+			$c = intval(preg_match_all('/[\[\.]/', $selector, $matches)); // number of other attributes
+			$c += intval(preg_match_all('/[\:]link|visited|hover|active|focus|target|lang|enabled|disabled|checked|indeterminate|root|nth|first|last|only|empty|contains|not/i', $selector, $matches)); // number of pseudo-classes
+			$d = intval(preg_match_all('/[\>\+\~\s]{1}[a-zA-Z0-9\*]+/', ' '.$selector, $matches)); // number of element names
+			$d += intval(preg_match_all('/[\:][\:]/', $selector, $matches)); // number of pseudo-elements
+			$specificity = $a.$b.$c.$d;
+			// add specificity to the beginning of the selector
+			$cssdata[$specificity.' '.$selector] = $block[1];
+		}
+		// sort selectors alphabetically to account for specificity
+		ksort($cssdata, SORT_STRING);
+		// return array
+		return $cssdata;
+	}
+
+	/**
+	 * Returns true if the CSS selector is valid for the selected HTML tag
+	 * @param $dom (array) array of HTML tags and properties
+	 * @param $key (int) key of the current HTML tag
+	 * @param $selector (string) CSS selector string
+	 * @return true if the selector is valid, false otherwise
+	 * @protected
+	 * @since 5.1.000 (2010-05-25)
+	 */
+	protected function isValidCSSSelectorForTag($dom, $key, $selector) {
+		$valid = false; // value to be returned
+		$tag = $dom[$key]['value'];
+		$class = array();
+		if (isset($dom[$key]['attribute']['class']) AND !empty($dom[$key]['attribute']['class'])) {
+			$class = explode(' ', strtolower($dom[$key]['attribute']['class']));
+		}
+		$id = '';
+		if (isset($dom[$key]['attribute']['id']) AND !empty($dom[$key]['attribute']['id'])) {
+			$id = strtolower($dom[$key]['attribute']['id']);
+		}
+		$selector = preg_replace('/([\>\+\~\s]{1})([\.]{1})([^\>\+\~\s]*)/si', '\\1*.\\3', $selector);
+		$matches = array();
+		if (preg_match_all('/([\>\+\~\s]{1})([a-zA-Z0-9\*]+)([^\>\+\~\s]*)/si', $selector, $matches, PREG_PATTERN_ORDER | PREG_OFFSET_CAPTURE) > 0) {
+			$parentop = array_pop($matches[1]);
+			$operator = $parentop[0];
+			$offset = $parentop[1];
+			$lasttag = array_pop($matches[2]);
+			$lasttag = strtolower(trim($lasttag[0]));
+			if (($lasttag == '*') OR ($lasttag == $tag)) {
+				// the last element on selector is our tag or 'any tag'
+				$attrib = array_pop($matches[3]);
+				$attrib = strtolower(trim($attrib[0]));
+				if (!empty($attrib)) {
+					// check if matches class, id, attribute, pseudo-class or pseudo-element
+					switch ($attrib{0}) {
+						case '.': { // class
+							if (in_array(substr($attrib, 1), $class)) {
+								$valid = true;
 							}
-							case '#': { // ID
-								if (substr($attrib, 1) == $id) {
-									$valid = true;
-								}
-								break;
+							break;
+						}
+						case '#': { // ID
+							if (substr($attrib, 1) == $id) {
+								$valid = true;
 							}
-							case '[': { // attribute
-								$attrmatch = array();
-								if (preg_match('/\[([a-zA-Z0-9]*)[\s]*([\~\^\$\*\|\=]*)[\s]*["]?([^"\]]*)["]?\]/i', $attrib, $attrmatch) > 0) {
-									$att = strtolower($attrmatch[1]);
-									$val = $attrmatch[3];
-									if (isset($dom[$key]['attribute'][$att])) {
-										switch ($attrmatch[2]) {
-											case '=': {
-												if ($dom[$key]['attribute'][$att] == $val) {
-													$valid = true;
-												}
-												break;
-											}
-											case '~=': {
-												if (in_array($val, explode(' ', $dom[$key]['attribute'][$att]))) {
-													$valid = true;
-												}
-												break;
+							break;
+						}
+						case '[': { // attribute
+							$attrmatch = array();
+							if (preg_match('/\[([a-zA-Z0-9]*)[\s]*([\~\^\$\*\|\=]*)[\s]*["]?([^"\]]*)["]?\]/i', $attrib, $attrmatch) > 0) {
+								$att = strtolower($attrmatch[1]);
+								$val = $attrmatch[3];
+								if (isset($dom[$key]['attribute'][$att])) {
+									switch ($attrmatch[2]) {
+										case '=': {
+											if ($dom[$key]['attribute'][$att] == $val) {
+												$valid = true;
 											}
-											case '^=': {
-												if ($val == substr($dom[$key]['attribute'][$att], 0, strlen($val))) {
-													$valid = true;
-												}
-												break;
+											break;
+										}
+										case '~=': {
+											if (in_array($val, explode(' ', $dom[$key]['attribute'][$att]))) {
+												$valid = true;
 											}
-											case '$=': {
-												if ($val == substr($dom[$key]['attribute'][$att], -strlen($val))) {
-													$valid = true;
-												}
-												break;
+											break;
+										}
+										case '^=': {
+											if ($val == substr($dom[$key]['attribute'][$att], 0, strlen($val))) {
+												$valid = true;
 											}
-											case '*=': {
-												if (strpos($dom[$key]['attribute'][$att], $val) !== false) {
-													$valid = true;
-												}
-												break;
+											break;
+										}
+										case '$=': {
+											if ($val == substr($dom[$key]['attribute'][$att], -strlen($val))) {
+												$valid = true;
 											}
-											case '|=': {
-												if ($dom[$key]['attribute'][$att] == $val) {
-													$valid = true;
-												} elseif (preg_match('/'.$val.'[\-]{1}/i', $dom[$key]['attribute'][$att]) > 0) {
-													$valid = true;
-												}
-												break;
+											break;
+										}
+										case '*=': {
+											if (strpos($dom[$key]['attribute'][$att], $val) !== false) {
+												$valid = true;
 											}
-											default: {
+											break;
+										}
+										case '|=': {
+											if ($dom[$key]['attribute'][$att] == $val) {
+												$valid = true;
+											} elseif (preg_match('/'.$val.'[\-]{1}/i', $dom[$key]['attribute'][$att]) > 0) {
 												$valid = true;
 											}
+											break;
+										}
+										default: {
+											$valid = true;
 										}
 									}
 								}
-								break;
 							}
-							case ':': { // pseudo-class or pseudo-element
-								if ($attrib{1} == ':') { // pseudo-element
-									// pseudo-elements are not supported!
-									// (::first-line, ::first-letter, ::before, ::after)
-								} else { // pseudo-class
-									// pseudo-classes are not supported!
-									// (:root, :nth-child(n), :nth-last-child(n), :nth-of-type(n), :nth-last-of-type(n), :first-child, :last-child, :first-of-type, :last-of-type, :only-child, :only-of-type, :empty, :link, :visited, :active, :hover, :focus, :target, :lang(fr), :enabled, :disabled, :checked)
-								}
-								break;
+							break;
+						}
+						case ':': { // pseudo-class or pseudo-element
+							if ($attrib{1} == ':') { // pseudo-element
+								// pseudo-elements are not supported!
+								// (::first-line, ::first-letter, ::before, ::after)
+							} else { // pseudo-class
+								// pseudo-classes are not supported!
+								// (:root, :nth-child(n), :nth-last-child(n), :nth-of-type(n), :nth-last-of-type(n), :first-child, :last-child, :first-of-type, :last-of-type, :only-child, :only-of-type, :empty, :link, :visited, :active, :hover, :focus, :target, :lang(fr), :enabled, :disabled, :checked)
 							}
-						} // end of switch
-					} else {
-						$valid = true;
-					}
-					if ($valid AND ($offset > 0)) {
-						$valid = false;
-						// check remaining selector part
-						$selector = substr($selector, 0, $offset);
-						switch ($operator) {
-							case ' ': { // descendant of an element
-								while ($dom[$key]['parent'] > 0) {
-									if ($this->isValidCSSSelectorForTag($dom, $dom[$key]['parent'], $selector)) {
-										$valid = true;
-										break;
-									} else {
-										$key = $dom[$key]['parent'];
-									}
+							break;
+						}
+					} // end of switch
+				} else {
+					$valid = true;
+				}
+				if ($valid AND ($offset > 0)) {
+					$valid = false;
+					// check remaining selector part
+					$selector = substr($selector, 0, $offset);
+					switch ($operator) {
+						case ' ': { // descendant of an element
+							while ($dom[$key]['parent'] > 0) {
+								if ($this->isValidCSSSelectorForTag($dom, $dom[$key]['parent'], $selector)) {
+									$valid = true;
+									break;
+								} else {
+									$key = $dom[$key]['parent'];
 								}
-								break;
 							}
-							case '>': { // child of an element
-								$valid = $this->isValidCSSSelectorForTag($dom, $dom[$key]['parent'], $selector);
-								break;
-							}
-							case '+': { // immediately preceded by an element
-								for ($i = ($key - 1); $i > $dom[$key]['parent']; --$i) {
-									if ($dom[$i]['tag'] AND $dom[$i]['opening']) {
-										$valid = $this->isValidCSSSelectorForTag($dom, $i, $selector);
-										break;
-									}
+							break;
+						}
+						case '>': { // child of an element
+							$valid = $this->isValidCSSSelectorForTag($dom, $dom[$key]['parent'], $selector);
+							break;
+						}
+						case '+': { // immediately preceded by an element
+							for ($i = ($key - 1); $i > $dom[$key]['parent']; --$i) {
+								if ($dom[$i]['tag'] AND $dom[$i]['opening']) {
+									$valid = $this->isValidCSSSelectorForTag($dom, $i, $selector);
+									break;
 								}
-								break;
 							}
-							case '~': { // preceded by an element
-								for ($i = ($key - 1); $i > $dom[$key]['parent']; --$i) {
-									if ($dom[$i]['tag'] AND $dom[$i]['opening']) {
-										if ($this->isValidCSSSelectorForTag($dom, $i, $selector)) {
-											break;
-										}
+							break;
+						}
+						case '~': { // preceded by an element
+							for ($i = ($key - 1); $i > $dom[$key]['parent']; --$i) {
+								if ($dom[$i]['tag'] AND $dom[$i]['opening']) {
+									if ($this->isValidCSSSelectorForTag($dom, $i, $selector)) {
+										break;
 									}
 								}
-								break;
 							}
+							break;
 						}
 					}
 				}
 			}
-			return $valid;
-		}
-
-		/**
-	 	 * Returns the styles that apply for the selected HTML tag.
-		 * @param array $dom array of HTML tags and properties
-		 * @param int $key key of the current HTML tag
-		 * @param array $css array of CSS properties
-		 * @return string containing CSS properties
-		 * @access protected
-		 * @since 5.1.000 (2010-05-25)
-		 */
-		protected function getTagStyleFromCSS($dom, $key, $css) {
-			$tagstyle = ''; // style to be returned
-			// get all styles that apply
-			foreach($css as $selector => $style) {
-				// remove specificity
-				$selector = substr($selector, strpos($selector, ' '));
-				// check if this selector apply to current tag
-				if ($this->isValidCSSSelectorForTag($dom, $key, $selector)) {
-					// apply style
-					$tagstyle .= ';'.$style;
-				}
-			}
-			if (isset($dom[$key]['attribute']['style'])) {
-				// attach inline style (latest properties have high priority)
-				$tagstyle .= ';'.$dom[$key]['attribute']['style'];
-			}
-			// remove multiple semicolons
-			$tagstyle = preg_replace('/[;]+/', ';', $tagstyle);
-			return $tagstyle;
-		}
-
-		/**
-	 	 * Returns the HTML DOM array.
-	 	 * <ul><li>$dom[$key]['tag'] = true if tag, false otherwise;</li><li>$dom[$key]['value'] = tag name or text;</li><li>$dom[$key]['opening'] = true if opening tag, false otherwise;</li><li>$dom[$key]['attribute'] = array of attributes (attribute name is the key);</li><li>$dom[$key]['style'] = array of style attributes (attribute name is the key);</li><li>$dom[$key]['parent'] = id of parent element;</li><li>$dom[$key]['fontname'] = font family name;</li><li>$dom[$key]['fontstyle'] = font style;</li><li>$dom[$key]['fontsize'] = font size in points;</li><li>$dom[$key]['bgcolor'] = RGB array of background color;</li><li>$dom[$key]['fgcolor'] = RGB array of foreground color;</li><li>$dom[$key]['width'] = width in pixels;</li><li>$dom[$key]['height'] = height in pixels;</li><li>$dom[$key]['align'] = text alignment;</li><li>$dom[$key]['cols'] = number of colums in table;</li><li>$dom[$key]['rows'] = number of rows in table;</li></ul>
-		 * @param string $html html code
-		 * @return array
-		 * @access protected
-		 * @since 3.2.000 (2008-06-20)
-		 */
-		protected function getHtmlDomArray($html) {
-			// array of CSS styles ( selector => properties).
-			$css = array();
-			// extract external CSS files
-			$matches = array();
-			if (preg_match_all('/<link([^\>]*)>/isU', $html, $matches) > 0) {
-				foreach ($matches[1] as $key => $link) {
-					$type = array();
-					if (preg_match('/type[\s]*=[\s]*"text\/css"/', $link, $type)) {
-						$type = array();
-						preg_match('/media[\s]*=[\s]*"([^"]*)"/', $link, $type);
-						// get 'all' and 'print' media, other media types are discarded
-						// (all, braille, embossed, handheld, print, projection, screen, speech, tty, tv)
-						if (empty($type) OR (isset($type[1]) AND (($type[1] == 'all') OR ($type[1] == 'print')))) {
-							$type = array();
-							if (preg_match('/href[\s]*=[\s]*"([^"]*)"/', $link, $type) > 0) {
-								// read CSS data file
-								$cssdata = file_get_contents(trim($type[1]));
-								$css = array_merge($css, $this->extractCSSproperties($cssdata));
-							}
-						}
-					}
+		}
+		return $valid;
+	}
+
+	/**
+	 * Returns the styles that apply for the selected HTML tag.
+	 * @param $dom (array) array of HTML tags and properties
+	 * @param $key (int) key of the current HTML tag
+	 * @param $css (array) array of CSS properties
+	 * @return string containing CSS properties
+	 * @protected
+	 * @since 5.1.000 (2010-05-25)
+	 */
+	protected function getTagStyleFromCSS($dom, $key, $css) {
+		$tagstyle = ''; // style to be returned
+		// get all styles that apply
+		foreach($css as $selector => $style) {
+			// remove specificity
+			$selector = substr($selector, strpos($selector, ' '));
+			// check if this selector apply to current tag
+			if ($this->isValidCSSSelectorForTag($dom, $key, $selector)) {
+				// apply style
+				$tagstyle .= ';'.$style;
+			}
+		}
+		if (isset($dom[$key]['attribute']['style'])) {
+			// attach inline style (latest properties have high priority)
+			$tagstyle .= ';'.$dom[$key]['attribute']['style'];
+		}
+		// remove multiple semicolons
+		$tagstyle = preg_replace('/[;]+/', ';', $tagstyle);
+		return $tagstyle;
+	}
+
+	/**
+	 * Returns the border width from CSS property
+	 * @param $width (string) border width
+	 * @return int with in user units
+	 * @protected
+	 * @since 5.7.000 (2010-08-02)
+	 */
+	protected function getCSSBorderWidth($width) {
+		if ($width == 'thin') {
+			$width = (2 / $this->k);
+		} elseif ($width == 'medium') {
+			$width = (4 / $this->k);
+		} elseif ($width == 'thick') {
+			$width = (6 / $this->k);
+		} else {
+			$width = $this->getHTMLUnitToUnits($width, 1, 'px', false);
+		}
+		return $width;
+	}
+
+	/**
+	 * Returns the border dash style from CSS property
+	 * @param $style (string) border style to convert
+	 * @return int sash style (return -1 in case of none or hidden border)
+	 * @protected
+	 * @since 5.7.000 (2010-08-02)
+	 */
+	protected function getCSSBorderDashStyle($style) {
+		switch (strtolower($style)) {
+			case 'none':
+			case 'hidden': {
+				$dash = -1;
+				break;
+			}
+			case 'dotted': {
+				$dash = 1;
+				break;
+			}
+			case 'dashed': {
+				$dash = 3;
+				break;
+			}
+			case 'double':
+			case 'groove':
+			case 'ridge':
+			case 'inset':
+			case 'outset':
+			case 'solid':
+			default: {
+				$dash = 0;
+				break;
+			}
+		}
+		return $dash;
+	}
+
+	/**
+	 * Returns the border style array from CSS border properties
+	 * @param $cssborder (string) border properties
+	 * @return array containing border properties
+	 * @protected
+	 * @since 5.7.000 (2010-08-02)
+	 */
+	protected function getCSSBorderStyle($cssborder) {
+		$bprop = preg_split('/[\s]+/', trim($cssborder));
+		$border = array(); // value to be returned
+		switch (count($bprop)) {
+			case 3: {
+				$width = $bprop[0];
+				$style = $bprop[1];
+				$color = $bprop[2];
+				break;
+			}
+			case 2: {
+				$width = 'medium';
+				$style = $bprop[0];
+				$color = $bprop[1];
+				break;
+			}
+			case 1: {
+				$width = 'medium';
+				$style = $bprop[0];
+				$color = 'black';
+				break;
+			}
+			default: {
+				$width = 'medium';
+				$style = 'solid';
+				$color = 'black';
+				break;
+			}
+		}
+		if ($style == 'none') {
+			return array();
+		}
+		$border['cap'] = 'square';
+		$border['join'] = 'miter';
+		$border['dash'] = $this->getCSSBorderDashStyle($style);
+		if ($border['dash'] < 0) {
+			return array();
+		}
+		$border['width'] = $this->getCSSBorderWidth($width);
+		$border['color'] = $this->convertHTMLColorToDec($color);
+		return $border;
+	}
+
+	/**
+	 * Get the internal Cell padding from CSS attribute.
+	 * @param $csspadding (string) padding properties
+	 * @param $width (float) width of the containing element
+	 * @return array of cell paddings
+	 * @public
+	 * @since 5.9.000 (2010-10-04)
+	 */
+	public function getCSSPadding($csspadding, $width=0) {
+		$padding = preg_split('/[\s]+/', trim($csspadding));
+		$cell_padding = array(); // value to be returned
+		switch (count($padding)) {
+			case 4: {
+				$cell_padding['T'] = $padding[0];
+				$cell_padding['R'] = $padding[1];
+				$cell_padding['B'] = $padding[2];
+				$cell_padding['L'] = $padding[3];
+				break;
+			}
+			case 3: {
+				$cell_padding['T'] = $padding[0];
+				$cell_padding['R'] = $padding[1];
+				$cell_padding['B'] = $padding[2];
+				$cell_padding['L'] = $padding[1];
+				break;
+			}
+			case 2: {
+				$cell_padding['T'] = $padding[0];
+				$cell_padding['R'] = $padding[1];
+				$cell_padding['B'] = $padding[0];
+				$cell_padding['L'] = $padding[1];
+				break;
+			}
+			case 1: {
+				$cell_padding['T'] = $padding[0];
+				$cell_padding['R'] = $padding[0];
+				$cell_padding['B'] = $padding[0];
+				$cell_padding['L'] = $padding[0];
+				break;
+			}
+			default: {
+				return $this->cell_padding;
+			}
+		}
+		if ($width == 0) {
+			$width = $this->w - $this->lMargin - $this->rMargin;
+		}
+		$cell_padding['T'] = $this->getHTMLUnitToUnits($cell_padding['T'], $width, 'px', false);
+		$cell_padding['R'] = $this->getHTMLUnitToUnits($cell_padding['R'], $width, 'px', false);
+		$cell_padding['B'] = $this->getHTMLUnitToUnits($cell_padding['B'], $width, 'px', false);
+		$cell_padding['L'] = $this->getHTMLUnitToUnits($cell_padding['L'], $width, 'px', false);
+		return $cell_padding;
+	}
+
+	/**
+	 * Get the internal Cell margin from CSS attribute.
+	 * @param $cssmargin (string) margin properties
+	 * @param $width (float) width of the containing element
+	 * @return array of cell margins
+	 * @public
+	 * @since 5.9.000 (2010-10-04)
+	 */
+	public function getCSSMargin($cssmargin, $width=0) {
+		$margin = preg_split('/[\s]+/', trim($cssmargin));
+		$cell_margin = array(); // value to be returned
+		switch (count($margin)) {
+			case 4: {
+				$cell_margin['T'] = $margin[0];
+				$cell_margin['R'] = $margin[1];
+				$cell_margin['B'] = $margin[2];
+				$cell_margin['L'] = $margin[3];
+				break;
+			}
+			case 3: {
+				$cell_margin['T'] = $margin[0];
+				$cell_margin['R'] = $margin[1];
+				$cell_margin['B'] = $margin[2];
+				$cell_margin['L'] = $margin[1];
+				break;
+			}
+			case 2: {
+				$cell_margin['T'] = $margin[0];
+				$cell_margin['R'] = $margin[1];
+				$cell_margin['B'] = $margin[0];
+				$cell_margin['L'] = $margin[1];
+				break;
+			}
+			case 1: {
+				$cell_margin['T'] = $margin[0];
+				$cell_margin['R'] = $margin[0];
+				$cell_margin['B'] = $margin[0];
+				$cell_margin['L'] = $margin[0];
+				break;
+			}
+			default: {
+				return $this->cell_margin;
+			}
+		}
+		if ($width == 0) {
+			$width = $this->w - $this->lMargin - $this->rMargin;
+		}
+		$cell_margin['T'] = $this->getHTMLUnitToUnits(str_replace('auto', '0', $cell_margin['T']), $width, 'px', false);
+		$cell_margin['R'] = $this->getHTMLUnitToUnits(str_replace('auto', '0', $cell_margin['R']), $width, 'px', false);
+		$cell_margin['B'] = $this->getHTMLUnitToUnits(str_replace('auto', '0', $cell_margin['B']), $width, 'px', false);
+		$cell_margin['L'] = $this->getHTMLUnitToUnits(str_replace('auto', '0', $cell_margin['L']), $width, 'px', false);
+		return $cell_margin;
+	}
+
+	/**
+	 * Get the border-spacing from CSS attribute.
+	 * @param $cssbspace (string) border-spacing CSS properties
+	 * @param $width (float) width of the containing element
+	 * @return array of border spacings
+	 * @public
+	 * @since 5.9.010 (2010-10-27)
+	 */
+	public function getCSSBorderMargin($cssbspace, $width=0) {
+		$space = preg_split('/[\s]+/', trim($cssbspace));
+		$border_spacing = array(); // value to be returned
+		switch (count($space)) {
+			case 2: {
+				$border_spacing['H'] = $space[0];
+				$border_spacing['V'] = $space[1];
+				break;
+			}
+			case 1: {
+				$border_spacing['H'] = $space[0];
+				$border_spacing['V'] = $space[0];
+				break;
+			}
+			default: {
+				return array('H' => 0, 'V' => 0);
+			}
+		}
+		if ($width == 0) {
+			$width = $this->w - $this->lMargin - $this->rMargin;
+		}
+		$border_spacing['H'] = $this->getHTMLUnitToUnits($border_spacing['H'], $width, 'px', false);
+		$border_spacing['V'] = $this->getHTMLUnitToUnits($border_spacing['V'], $width, 'px', false);
+		return $border_spacing;
+	}
+
+	/**
+	 * Returns the letter-spacing value from CSS value
+	 * @param $spacing (string) letter-spacing value
+	 * @param $parent (float) font spacing (tracking/kerning) value of the parent element
+	 * @return float quantity to increases or decreases the space between characters in a text.
+	 * @protected
+	 * @since 5.9.000 (2010-10-02)
+	 */
+	protected function getCSSFontSpacing($spacing, $parent=0) {
+		$val = 0; // value to be returned
+		$spacing = trim($spacing);
+		switch ($spacing) {
+			case 'normal': {
+				$val = 0;
+				break;
+			}
+			case 'inherit': {
+				if ($parent == 'normal') {
+					$val = 0;
+				} else {
+					$val = $parent;
 				}
+				break;
 			}
-			// extract style tags
-			$matches = array();
-			if (preg_match_all('/<style([^\>]*)>([^\<]*)<\/style>/isU', $html, $matches) > 0) {
-				foreach ($matches[1] as $key => $media) {
+			default: {
+				$val = $this->getHTMLUnitToUnits($spacing, 0, 'px', false);
+			}
+		}
+		return $val;
+	}
+
+	/**
+	 * Returns the percentage of font stretching from CSS value
+	 * @param $stretch (string) stretch mode
+	 * @param $parent (float) stretch value of the parent element
+	 * @return float font stretching percentage
+	 * @protected
+	 * @since 5.9.000 (2010-10-02)
+	 */
+	protected function getCSSFontStretching($stretch, $parent=100) {
+		$val = 100; // value to be returned
+		$stretch = trim($stretch);
+		switch ($stretch) {
+			case 'ultra-condensed': {
+				$val = 40;
+				break;
+			}
+			case 'extra-condensed': {
+				$val = 55;
+				break;
+			}
+			case 'condensed': {
+				$val = 70;
+				break;
+			}
+			case 'semi-condensed': {
+				$val = 85;
+				break;
+			}
+			case 'normal': {
+				$val = 100;
+				break;
+			}
+			case 'semi-expanded': {
+				$val = 115;
+				break;
+			}
+			case 'expanded': {
+				$val = 130;
+				break;
+			}
+			case 'extra-expanded': {
+				$val = 145;
+				break;
+			}
+			case 'ultra-expanded': {
+				$val = 160;
+				break;
+			}
+			case 'wider': {
+				$val = $parent + 10;
+				break;
+			}
+			case 'narrower': {
+				$val = $parent - 10;
+				break;
+			}
+			case 'inherit': {
+				if ($parent == 'normal') {
+					$val = 100;
+				} else {
+					$val = $parent;
+				}
+				break;
+			}
+			default: {
+				$val = $this->getHTMLUnitToUnits($stretch, 100, '%', false);
+			}
+		}
+		return $val;
+	}
+
+	/**
+	 * Returns the HTML DOM array.
+	 * @param $html (string) html code
+	 * @return array
+	 * @protected
+	 * @since 3.2.000 (2008-06-20)
+	 */
+	protected function getHtmlDomArray($html) {
+		// array of CSS styles ( selector => properties).
+		$css = array();
+		// get CSS array defined at previous call
+		$matches = array();
+		if (preg_match_all('/<cssarray>([^\<]*)<\/cssarray>/isU', $html, $matches) > 0) {
+			if (isset($matches[1][0])) {
+				$css = array_merge($css, unserialize($this->unhtmlentities($matches[1][0])));
+			}
+			$html = preg_replace('/<cssarray>(.*?)<\/cssarray>/isU', '', $html);
+		}
+		// extract external CSS files
+		$matches = array();
+		if (preg_match_all('/<link([^\>]*)>/isU', $html, $matches) > 0) {
+			foreach ($matches[1] as $key => $link) {
+				$type = array();
+				if (preg_match('/type[\s]*=[\s]*"text\/css"/', $link, $type)) {
 					$type = array();
-					preg_match('/media[\s]*=[\s]*"([^"]*)"/', $media, $type);
+					preg_match('/media[\s]*=[\s]*"([^"]*)"/', $link, $type);
 					// get 'all' and 'print' media, other media types are discarded
 					// (all, braille, embossed, handheld, print, projection, screen, speech, tty, tv)
 					if (empty($type) OR (isset($type[1]) AND (($type[1] == 'all') OR ($type[1] == 'print')))) {
-						$cssdata = $matches[2][$key];
-						$css = array_merge($css, $this->extractCSSproperties($cssdata));
-					}
-				}
-			}
-			// remove heade and style blocks
-			$html = preg_replace('/<head([^\>]*)>(.*?)<\/head>/siU', '', $html);
-			$html = preg_replace('/<style([^\>]*)>([^\<]*)<\/style>/isU', '', $html);
-			// define block tags
-			$blocktags = array('blockquote','br','dd','dl','div','dt','h1','h2','h3','h4','h5','h6','hr','li','ol','p','pre','ul','tcpdf','table','tr','td');
-			// remove all unsupported tags (the line below lists all supported tags)
-			$html = strip_tags($html, '<marker/><a><b><blockquote><body><br><br/><dd><del><div><dl><dt><em><font><form><h1><h2><h3><h4><h5><h6><hr><hr/><i><img><input><label><li><ol><option><p><pre><select><small><span><strong><sub><sup><table><tablehead><tcpdf><td><textarea><th><thead><tr><tt><u><ul>');
-			//replace some blank characters
-			$html = preg_replace('/<pre/', '<xre', $html); // preserve pre tag
-			$html = preg_replace('/<(table|tr|td|th|tcpdf|blockquote|dd|div|dl|dt|form|h1|h2|h3|h4|h5|h6|br|hr|li|ol|ul|p)([^\>]*)>[\n\r\t]+/', '<\\1\\2>', $html);
-			$html = preg_replace('@(\r\n|\r)@', "\n", $html);
-			$repTable = array("\t" => ' ', "\0" => ' ', "\x0B" => ' ', "\\" => "\\\\");
-			$html = strtr($html, $repTable);
-			$offset = 0;
-			while (($offset < strlen($html)) AND ($pos = strpos($html, '</pre>', $offset)) !== false) {
-				$html_a = substr($html, 0, $offset);
-				$html_b = substr($html, $offset, ($pos - $offset + 6));
-				while (preg_match("'<xre([^\>]*)>(.*?)\n(.*?)</pre>'si", $html_b)) {
-					// preserve newlines on <pre> tag
-					$html_b = preg_replace("'<xre([^\>]*)>(.*?)\n(.*?)</pre>'si", "<xre\\1>\\2<br />\\3</pre>", $html_b);
-				}
-				$html = $html_a.$html_b.substr($html, $pos + 6);
-				$offset = strlen($html_a.$html_b);
-			}
-			$offset = 0;
-			while (($offset < strlen($html)) AND ($pos = strpos($html, '</textarea>', $offset)) !== false) {
-				$html_a = substr($html, 0, $offset);
-				$html_b = substr($html, $offset, ($pos - $offset + 11));
-				while (preg_match("'<textarea([^\>]*)>(.*?)\n(.*?)</textarea>'si", $html_b)) {
-					// preserve newlines on <textarea> tag
-					$html_b = preg_replace("'<textarea([^\>]*)>(.*?)\n(.*?)</textarea>'si", "<textarea\\1>\\2<TBR>\\3</textarea>", $html_b);
-					$html_b = preg_replace("'<textarea([^\>]*)>(.*?)[\"](.*?)</textarea>'si", "<textarea\\1>\\2''\\3</textarea>", $html_b);
-				}
-				$html = $html_a.$html_b.substr($html, $pos + 11);
-				$offset = strlen($html_a.$html_b);
-			}
-			$html = preg_replace("'([\s]*)<option'si", "<option", $html);
-			$html = preg_replace("'</option>([\s]*)'si", "</option>", $html);
-			$offset = 0;
-			while (($offset < strlen($html)) AND ($pos = strpos($html, '</option>', $offset)) !== false) {
-				$html_a = substr($html, 0, $offset);
-				$html_b = substr($html, $offset, ($pos - $offset + 9));
-				while (preg_match("'<option([^\>]*)>(.*?)</option>'si", $html_b)) {
-					$html_b = preg_replace("'<option([\s]+)value=\"([^\"]*)\"([^\>]*)>(.*?)</option>'si", "\\2\t\\4\r", $html_b);
-					$html_b = preg_replace("'<option([^\>]*)>(.*?)</option>'si", "\\2\r", $html_b);
-				}
-				$html = $html_a.$html_b.substr($html, $pos + 9);
-				$offset = strlen($html_a.$html_b);
-			}
+						$type = array();
+						if (preg_match('/href[\s]*=[\s]*"([^"]*)"/', $link, $type) > 0) {
+							// read CSS data file
+							$cssdata = file_get_contents(trim($type[1]));
+							$css = array_merge($css, $this->extractCSSproperties($cssdata));
+						}
+					}
+				}
+			}
+		}
+		// extract style tags
+		$matches = array();
+		if (preg_match_all('/<style([^\>]*)>([^\<]*)<\/style>/isU', $html, $matches) > 0) {
+			foreach ($matches[1] as $key => $media) {
+				$type = array();
+				preg_match('/media[\s]*=[\s]*"([^"]*)"/', $media, $type);
+				// get 'all' and 'print' media, other media types are discarded
+				// (all, braille, embossed, handheld, print, projection, screen, speech, tty, tv)
+				if (empty($type) OR (isset($type[1]) AND (($type[1] == 'all') OR ($type[1] == 'print')))) {
+					$cssdata = $matches[2][$key];
+					$css = array_merge($css, $this->extractCSSproperties($cssdata));
+				}
+			}
+		}
+		// create a special tag to contain the CSS array (used for table content)
+		$csstagarray = '<cssarray>'.htmlentities(serialize($css)).'</cssarray>';
+		// remove head and style blocks
+		$html = preg_replace('/<head([^\>]*)>(.*?)<\/head>/siU', '', $html);
+		$html = preg_replace('/<style([^\>]*)>([^\<]*)<\/style>/isU', '', $html);
+		// define block tags
+		$blocktags = array('blockquote','br','dd','dl','div','dt','h1','h2','h3','h4','h5','h6','hr','li','ol','p','pre','ul','tcpdf','table','tr','td');
+		// define self-closing tags
+		$selfclosingtags = array('area','base','basefont','br','hr','input','img','link','meta');
+		// remove all unsupported tags (the line below lists all supported tags)
+		$html = strip_tags($html, '<marker/><a><b><blockquote><body><br><br/><dd><del><div><dl><dt><em><font><form><h1><h2><h3><h4><h5><h6><hr><hr/><i><img><input><label><li><ol><option><p><pre><s><select><small><span><strike><strong><sub><sup><table><tablehead><tcpdf><td><textarea><th><thead><tr><tt><u><ul>');
+		//replace some blank characters
+		$html = preg_replace('/<pre/', '<xre', $html); // preserve pre tag
+		$html = preg_replace('/<(table|tr|td|th|tcpdf|blockquote|dd|div|dl|dt|form|h1|h2|h3|h4|h5|h6|br|hr|li|ol|ul|p)([^\>]*)>[\n\r\t]+/', '<\\1\\2>', $html);
+		$html = preg_replace('@(\r\n|\r)@', "\n", $html);
+		$repTable = array("\t" => ' ', "\0" => ' ', "\x0B" => ' ', "\\" => "\\\\");
+		$html = strtr($html, $repTable);
+		$offset = 0;
+		while (($offset < strlen($html)) AND ($pos = strpos($html, '</pre>', $offset)) !== false) {
+			$html_a = substr($html, 0, $offset);
+			$html_b = substr($html, $offset, ($pos - $offset + 6));
+			while (preg_match("'<xre([^\>]*)>(.*?)\n(.*?)</pre>'si", $html_b)) {
+				// preserve newlines on <pre> tag
+				$html_b = preg_replace("'<xre([^\>]*)>(.*?)\n(.*?)</pre>'si", "<xre\\1>\\2<br />\\3</pre>", $html_b);
+			}
+			while (preg_match("'<xre([^\>]*)>(.*?)".$this->re_space['p']."(.*?)</pre>'".$this->re_space['m'], $html_b)) {
+				// preserve spaces on <pre> tag
+				$html_b = preg_replace("'<xre([^\>]*)>(.*?)".$this->re_space['p']."(.*?)</pre>'".$this->re_space['m'], "<xre\\1>\\2&nbsp;\\3</pre>", $html_b);
+			}
+			$html = $html_a.$html_b.substr($html, $pos + 6);
+			$offset = strlen($html_a.$html_b);
+		}
+		$offset = 0;
+		while (($offset < strlen($html)) AND ($pos = strpos($html, '</textarea>', $offset)) !== false) {
+			$html_a = substr($html, 0, $offset);
+			$html_b = substr($html, $offset, ($pos - $offset + 11));
+			while (preg_match("'<textarea([^\>]*)>(.*?)\n(.*?)</textarea>'si", $html_b)) {
+				// preserve newlines on <textarea> tag
+				$html_b = preg_replace("'<textarea([^\>]*)>(.*?)\n(.*?)</textarea>'si", "<textarea\\1>\\2<TBR>\\3</textarea>", $html_b);
+				$html_b = preg_replace("'<textarea([^\>]*)>(.*?)[\"](.*?)</textarea>'si", "<textarea\\1>\\2''\\3</textarea>", $html_b);
+			}
+			$html = $html_a.$html_b.substr($html, $pos + 11);
+			$offset = strlen($html_a.$html_b);
+		}
+		$html = preg_replace('/([\s]*)<option/si', '<option', $html);
+		$html = preg_replace('/<\/option>([\s]*)/si', '</option>', $html);
+		$offset = 0;
+		while (($offset < strlen($html)) AND ($pos = strpos($html, '</option>', $offset)) !== false) {
+			$html_a = substr($html, 0, $offset);
+			$html_b = substr($html, $offset, ($pos - $offset + 9));
+			while (preg_match("'<option([^\>]*)>(.*?)</option>'si", $html_b)) {
+				$html_b = preg_replace("'<option([\s]+)value=\"([^\"]*)\"([^\>]*)>(.*?)</option>'si", "\\2#!TaB!#\\4#!NwL!#", $html_b);
+				$html_b = preg_replace("'<option([^\>]*)>(.*?)</option>'si", "\\2#!NwL!#", $html_b);
+			}
+			$html = $html_a.$html_b.substr($html, $pos + 9);
+			$offset = strlen($html_a.$html_b);
+		}
+		if (preg_match("'</select'si", $html)) {
 			$html = preg_replace("'<select([^\>]*)>'si", "<select\\1 opt=\"", $html);
-			$html = preg_replace("'([\s]+)</select>'si", "\" />", $html);
-			$html = str_replace("\n", ' ', $html);
-			// restore textarea newlines
-			$html = str_replace('<TBR>', "\n", $html);
-			// remove extra spaces from code
-			$html = preg_replace('/[\s]+<\/(table|tr|td|th|ul|ol|li|dl|dt|dd)>/', '</\\1>', $html);
-			$html = preg_replace('/[\s]+<(tr|td|th|ul|ol|li|dl|dt|dd|br)/', '<\\1', $html);
-			$html = preg_replace('/<\/(table|tr|td|th|blockquote|dd|dt|dl|div|dt|h1|h2|h3|h4|h5|h6|hr|li|ol|ul|p)>[\s]+</', '</\\1><', $html);
-			$html = preg_replace('/<\/(td|th)>/', '<marker style="font-size:0"/></\\1>', $html);
-			$html = preg_replace('/<\/table>([\s]*)<marker style="font-size:0"\/>/', '</table>', $html);
-			$html = preg_replace('/[\s]*<img/', ' <img', $html);
-			$html = preg_replace('/<img([^\>]*)>/xi', '<img\\1><span><marker style="font-size:0"/></span>', $html);
-			$html = preg_replace('/<xre/', '<pre', $html); // restore pre tag
-			$html = preg_replace('/<textarea([^\>]*)>/xi', '<textarea\\1 value="', $html);
-			$html = preg_replace('/<\/textarea>/', '" />', $html);
-			// trim string
-			$html = preg_replace('/^[\s]+/', '', $html);
-			$html = preg_replace('/[\s]+$/', '', $html);
-			// pattern for generic tag
-			$tagpattern = '/(<[^>]+>)/';
-			// explodes the string
-			$a = preg_split($tagpattern, $html, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
-			// count elements
-			$maxel = count($a);
-			$elkey = 0;
-			$key = 0;
-			// create an array of elements
-			$dom = array();
+			$html = preg_replace("'#!NwL!#</select>'si", "\" />", $html);
+		}
+		$html = str_replace("\n", ' ', $html);
+		// restore textarea newlines
+		$html = str_replace('<TBR>', "\n", $html);
+		// remove extra spaces from code
+		$html = preg_replace('/[\s]+<\/(table|tr|ul|ol|dl)>/', '</\\1>', $html);
+		$html = preg_replace('/'.$this->re_space['p'].'+<\/(td|th|li|dt|dd)>/'.$this->re_space['m'], '</\\1>', $html);
+		$html = preg_replace('/[\s]+<(tr|td|th|li|dt|dd)/', '<\\1', $html);
+		$html = preg_replace('/'.$this->re_space['p'].'+<(ul|ol|dl|br)/'.$this->re_space['m'], '<\\1', $html);
+		$html = preg_replace('/<\/(table|tr|td|th|blockquote|dd|dt|dl|div|dt|h1|h2|h3|h4|h5|h6|hr|li|ol|ul|p)>[\s]+</', '</\\1><', $html);
+		$html = preg_replace('/<\/(td|th)>/', '<marker style="font-size:0"/></\\1>', $html);
+		$html = preg_replace('/<\/table>([\s]*)<marker style="font-size:0"\/>/', '</table>', $html);
+		$html = preg_replace('/'.$this->re_space['p'].'+<img/'.$this->re_space['m'], chr(32).'<img', $html);
+		$html = preg_replace('/<img([^\>]*)>/xi', '<img\\1><span><marker style="font-size:0"/></span>', $html);
+		$html = preg_replace('/<xre/', '<pre', $html); // restore pre tag
+		$html = preg_replace('/<textarea([^\>]*)>([^\<]*)<\/textarea>/xi', '<textarea\\1 value="\\2" />', $html);
+		$html = preg_replace('/<li([^\>]*)><\/li>/', '<li\\1>&nbsp;</li>', $html);
+		$html = preg_replace('/<li([^\>]*)>'.$this->re_space['p'].'*<img/'.$this->re_space['m'], '<li\\1><font size="1">&nbsp;</font><img', $html);
+		$html = preg_replace('/<([^\>\/]*)>[\s]/', '<\\1>&nbsp;', $html); // preserve some spaces
+		$html = preg_replace('/[\s]<\/([^\>]*)>/', '&nbsp;</\\1>', $html); // preserve some spaces
+		$html = preg_replace('/'.$this->re_space['p'].'+/'.$this->re_space['m'], chr(32), $html); // replace multiple spaces with a single space
+		// trim string
+		$html = $this->stringTrim($html);
+		// pattern for generic tag
+		$tagpattern = '/(<[^>]+>)/';
+		// explodes the string
+		$a = preg_split($tagpattern, $html, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
+		// count elements
+		$maxel = count($a);
+		$elkey = 0;
+		$key = 0;
+		// create an array of elements
+		$dom = array();
+		$dom[$key] = array();
+		// set inheritable properties fot the first void element
+		// possible inheritable properties are: azimuth, border-collapse, border-spacing, caption-side, color, cursor, direction, empty-cells, font, font-family, font-stretch, font-size, font-size-adjust, font-style, font-variant, font-weight, letter-spacing, line-height, list-style, list-style-image, list-style-position, list-style-type, orphans, page, page-break-inside, quotes, speak, speak-header, text-align, text-indent, text-transform, volume, white-space, widows, word-spacing
+		$dom[$key]['tag'] = false;
+		$dom[$key]['block'] = false;
+		$dom[$key]['value'] = '';
+		$dom[$key]['parent'] = 0;
+		$dom[$key]['fontname'] = $this->FontFamily;
+		$dom[$key]['fontstyle'] = $this->FontStyle;
+		$dom[$key]['fontsize'] = $this->FontSizePt;
+		$dom[$key]['font-stretch'] = $this->font_stretching;
+		$dom[$key]['letter-spacing'] = $this->font_spacing;
+		$dom[$key]['stroke'] = $this->textstrokewidth;
+		$dom[$key]['fill'] = (($this->textrendermode % 2) == 0);
+		$dom[$key]['clip'] = ($this->textrendermode > 3);
+		$dom[$key]['line-height'] = $this->cell_height_ratio;
+		$dom[$key]['bgcolor'] = false;
+		$dom[$key]['fgcolor'] = $this->fgcolor; // color
+		$dom[$key]['strokecolor'] = $this->strokecolor;
+		$dom[$key]['align'] = '';
+		$dom[$key]['listtype'] = '';
+		$dom[$key]['text-indent'] = 0;
+		$dom[$key]['border'] = array();
+		$dom[$key]['dir'] = $this->rtl?'rtl':'ltr';
+		$thead = false; // true when we are inside the THEAD tag
+		++$key;
+		$level = array();
+		array_push($level, 0); // root
+		while ($elkey < $maxel) {
 			$dom[$key] = array();
-			// set inheritable properties fot the first void element
-			// possible inheritable properties are: azimuth, border-collapse, border-spacing, caption-side, color, cursor, direction, empty-cells, font, font-family, font-stretch, font-size, font-size-adjust, font-style, font-variant, font-weight, letter-spacing, line-height, list-style, list-style-image, list-style-position, list-style-type, orphans, page, page-break-inside, quotes, speak, speak-header, text-align, text-indent, text-transform, volume, white-space, widows, word-spacing
-			$dom[$key]['tag'] = false;
-			$dom[$key]['block'] = false;
-			$dom[$key]['value'] = '';
-			$dom[$key]['parent'] = 0;
-			$dom[$key]['fontname'] = $this->FontFamily;
-			$dom[$key]['fontstyle'] = $this->FontStyle;
-			$dom[$key]['fontsize'] = $this->FontSizePt;
-			$dom[$key]['stroke'] = $this->textstrokewidth;
-			$dom[$key]['fill'] = (($this->textrendermode % 2) == 0);
-			$dom[$key]['clip'] = ($this->textrendermode > 3);
-			$dom[$key]['line-height'] = $this->cell_height_ratio;
-			$dom[$key]['bgcolor'] = false;
-			$dom[$key]['fgcolor'] = $this->fgcolor; // color
-			$dom[$key]['strokecolor'] = $this->strokecolor;
-			$dom[$key]['align'] = '';
-			$dom[$key]['listtype'] = '';
-			$dom[$key]['text-indent'] = 0;
-			$thead = false; // true when we are inside the THEAD tag
-			++$key;
-			$level = array();
-			array_push($level, 0); // root
-			while ($elkey < $maxel) {
-				$dom[$key] = array();
-				$element = $a[$elkey];
-				$dom[$key]['elkey'] = $elkey;
-				if (preg_match($tagpattern, $element)) {
-					// html tag
-					$element = substr($element, 1, -1);
-					// get tag name
-					preg_match('/[\/]?([a-zA-Z0-9]*)/', $element, $tag);
-					$tagname = strtolower($tag[1]);
-					// check if we are inside a table header
-					if ($tagname == 'thead') {
-						if ($element{0} == '/') {
-							$thead = false;
-						} else {
-							$thead = true;
-						}
-						++$elkey;
-						continue;
-					}
-					$dom[$key]['tag'] = true;
-					$dom[$key]['value'] = $tagname;
-					if (in_array($dom[$key]['value'], $blocktags)) {
-						$dom[$key]['block'] = true;
+			$element = $a[$elkey];
+			$dom[$key]['elkey'] = $elkey;
+			if (preg_match($tagpattern, $element)) {
+				// html tag
+				$element = substr($element, 1, -1);
+				// get tag name
+				preg_match('/[\/]?([a-zA-Z0-9]*)/', $element, $tag);
+				$tagname = strtolower($tag[1]);
+				// check if we are inside a table header
+				if ($tagname == 'thead') {
+					if ($element{0} == '/') {
+						$thead = false;
 					} else {
-						$dom[$key]['block'] = false;
+						$thead = true;
 					}
-					if ($element{0} == '/') {
-						// *** closing html tag
-						$dom[$key]['opening'] = false;
-						$dom[$key]['parent'] = end($level);
-						array_pop($level);
-						$dom[$key]['fontname'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['fontname'];
-						$dom[$key]['fontstyle'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['fontstyle'];
-						$dom[$key]['fontsize'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['fontsize'];
-						$dom[$key]['stroke'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['stroke'];
-						$dom[$key]['fill'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['fill'];
-						$dom[$key]['clip'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['clip'];
-						$dom[$key]['line-height'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['line-height'];
-						$dom[$key]['bgcolor'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['bgcolor'];
-						$dom[$key]['fgcolor'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['fgcolor'];
-						$dom[$key]['strokecolor'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['strokecolor'];
-						$dom[$key]['align'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['align'];
-						if (isset($dom[($dom[($dom[$key]['parent'])]['parent'])]['listtype'])) {
-							$dom[$key]['listtype'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['listtype'];
-						}
-						// set the number of columns in table tag
-						if (($dom[$key]['value'] == 'tr') AND (!isset($dom[($dom[($dom[$key]['parent'])]['parent'])]['cols']))) {
-							$dom[($dom[($dom[$key]['parent'])]['parent'])]['cols'] = $dom[($dom[$key]['parent'])]['cols'];
-						}
-						if (($dom[$key]['value'] == 'td') OR ($dom[$key]['value'] == 'th')) {
-							$dom[($dom[$key]['parent'])]['content'] = '';
-							for ($i = ($dom[$key]['parent'] + 1); $i < $key; ++$i) {
-								$dom[($dom[$key]['parent'])]['content'] .= $a[$dom[$i]['elkey']];
-							}
-							$key = $i;
-							// mark nested tables
-							$dom[($dom[$key]['parent'])]['content'] = str_replace('<table', '<table nested="true"', $dom[($dom[$key]['parent'])]['content']);
-							// remove thead sections from nested tables
-							$dom[($dom[$key]['parent'])]['content'] = str_replace('<thead>', '', $dom[($dom[$key]['parent'])]['content']);
-							$dom[($dom[$key]['parent'])]['content'] = str_replace('</thead>', '', $dom[($dom[$key]['parent'])]['content']);
-						}
-						// store header rows on a new table
-						if (($dom[$key]['value'] == 'tr') AND ($dom[($dom[$key]['parent'])]['thead'] === true)) {
-							if ($this->empty_string($dom[($dom[($dom[$key]['parent'])]['parent'])]['thead'])) {
-								$dom[($dom[($dom[$key]['parent'])]['parent'])]['thead'] = $a[$dom[($dom[($dom[$key]['parent'])]['parent'])]['elkey']];
-							}
-							for ($i = $dom[$key]['parent']; $i <= $key; ++$i) {
-								$dom[($dom[($dom[$key]['parent'])]['parent'])]['thead'] .= $a[$dom[$i]['elkey']];
-							}
-							if (!isset($dom[($dom[$key]['parent'])]['attribute'])) {
-								$dom[($dom[$key]['parent'])]['attribute'] = array();
+					++$elkey;
+					continue;
+				}
+				$dom[$key]['tag'] = true;
+				$dom[$key]['value'] = $tagname;
+				if (in_array($dom[$key]['value'], $blocktags)) {
+					$dom[$key]['block'] = true;
+				} else {
+					$dom[$key]['block'] = false;
+				}
+				if ($element{0} == '/') {
+					// *** closing html tag
+					$dom[$key]['opening'] = false;
+					$dom[$key]['parent'] = end($level);
+					array_pop($level);
+					$dom[$key]['fontname'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['fontname'];
+					$dom[$key]['fontstyle'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['fontstyle'];
+					$dom[$key]['fontsize'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['fontsize'];
+					$dom[$key]['font-stretch'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['font-stretch'];
+					$dom[$key]['letter-spacing'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['letter-spacing'];
+					$dom[$key]['stroke'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['stroke'];
+					$dom[$key]['fill'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['fill'];
+					$dom[$key]['clip'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['clip'];
+					$dom[$key]['line-height'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['line-height'];
+					$dom[$key]['bgcolor'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['bgcolor'];
+					$dom[$key]['fgcolor'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['fgcolor'];
+					$dom[$key]['strokecolor'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['strokecolor'];
+					$dom[$key]['align'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['align'];
+					$dom[$key]['dir'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['dir'];
+					if (isset($dom[($dom[($dom[$key]['parent'])]['parent'])]['listtype'])) {
+						$dom[$key]['listtype'] = $dom[($dom[($dom[$key]['parent'])]['parent'])]['listtype'];
+					}
+					// set the number of columns in table tag
+					if (($dom[$key]['value'] == 'tr') AND (!isset($dom[($dom[($dom[$key]['parent'])]['parent'])]['cols']))) {
+						$dom[($dom[($dom[$key]['parent'])]['parent'])]['cols'] = $dom[($dom[$key]['parent'])]['cols'];
+					}
+					if (($dom[$key]['value'] == 'td') OR ($dom[$key]['value'] == 'th')) {
+						$dom[($dom[$key]['parent'])]['content'] = $csstagarray;
+						for ($i = ($dom[$key]['parent'] + 1); $i < $key; ++$i) {
+							$dom[($dom[$key]['parent'])]['content'] .= $a[$dom[$i]['elkey']];
+						}
+						$key = $i;
+						// mark nested tables
+						$dom[($dom[$key]['parent'])]['content'] = str_replace('<table', '<table nested="true"', $dom[($dom[$key]['parent'])]['content']);
+						// remove thead sections from nested tables
+						$dom[($dom[$key]['parent'])]['content'] = str_replace('<thead>', '', $dom[($dom[$key]['parent'])]['content']);
+						$dom[($dom[$key]['parent'])]['content'] = str_replace('</thead>', '', $dom[($dom[$key]['parent'])]['content']);
+					}
+					// store header rows on a new table
+					if (($dom[$key]['value'] == 'tr') AND ($dom[($dom[$key]['parent'])]['thead'] === true)) {
+						if ($this->empty_string($dom[($dom[($dom[$key]['parent'])]['parent'])]['thead'])) {
+							$dom[($dom[($dom[$key]['parent'])]['parent'])]['thead'] = $a[$dom[($dom[($dom[$key]['parent'])]['parent'])]['elkey']];
+						}
+						for ($i = $dom[$key]['parent']; $i <= $key; ++$i) {
+							$dom[($dom[($dom[$key]['parent'])]['parent'])]['thead'] .= $a[$dom[$i]['elkey']];
+						}
+						if (!isset($dom[($dom[$key]['parent'])]['attribute'])) {
+							$dom[($dom[$key]['parent'])]['attribute'] = array();
+						}
+						// header elements must be always contained in a single page
+						$dom[($dom[$key]['parent'])]['attribute']['nobr'] = 'true';
+					}
+					if (($dom[$key]['value'] == 'table') AND (!$this->empty_string($dom[($dom[$key]['parent'])]['thead']))) {
+						// remove the nobr attributes from the table header
+						$dom[($dom[$key]['parent'])]['thead'] = str_replace(' nobr="true"', '', $dom[($dom[$key]['parent'])]['thead']);
+						$dom[($dom[$key]['parent'])]['thead'] .= '</tablehead>';
+					}
+				} else {
+					// *** opening or self-closing html tag
+					$dom[$key]['opening'] = true;
+					$dom[$key]['parent'] = end($level);
+					if ((substr($element, -1, 1) == '/') OR (in_array($dom[$key]['value'], $selfclosingtags))) {
+						// self-closing tag
+						$dom[$key]['self'] = true;
+					} else {
+						// opening tag
+						array_push($level, $key);
+						$dom[$key]['self'] = false;
+					}
+					// copy some values from parent
+					$parentkey = 0;
+					if ($key > 0) {
+						$parentkey = $dom[$key]['parent'];
+						$dom[$key]['fontname'] = $dom[$parentkey]['fontname'];
+						$dom[$key]['fontstyle'] = $dom[$parentkey]['fontstyle'];
+						$dom[$key]['fontsize'] = $dom[$parentkey]['fontsize'];
+						$dom[$key]['font-stretch'] = $dom[$parentkey]['font-stretch'];
+						$dom[$key]['letter-spacing'] = $dom[$parentkey]['letter-spacing'];
+						$dom[$key]['stroke'] = $dom[$parentkey]['stroke'];
+						$dom[$key]['fill'] = $dom[$parentkey]['fill'];
+						$dom[$key]['clip'] = $dom[$parentkey]['clip'];
+						$dom[$key]['line-height'] = $dom[$parentkey]['line-height'];
+						$dom[$key]['bgcolor'] = $dom[$parentkey]['bgcolor'];
+						$dom[$key]['fgcolor'] = $dom[$parentkey]['fgcolor'];
+						$dom[$key]['strokecolor'] = $dom[$parentkey]['strokecolor'];
+						$dom[$key]['align'] = $dom[$parentkey]['align'];
+						$dom[$key]['listtype'] = $dom[$parentkey]['listtype'];
+						$dom[$key]['text-indent'] = $dom[$parentkey]['text-indent'];
+						$dom[$key]['border'] = array();
+						$dom[$key]['dir'] = $dom[$parentkey]['dir'];
+					}
+					// get attributes
+					preg_match_all('/([^=\s]*)[\s]*=[\s]*"([^"]*)"/', $element, $attr_array, PREG_PATTERN_ORDER);
+					$dom[$key]['attribute'] = array(); // reset attribute array
+					while (list($id, $name) = each($attr_array[1])) {
+						$dom[$key]['attribute'][strtolower($name)] = $attr_array[2][$id];
+					}
+					if (!empty($css)) {
+						// merge eternal CSS style to current style
+						$dom[$key]['attribute']['style'] = $this->getTagStyleFromCSS($dom, $key, $css);
+					}
+					// split style attributes
+					if (isset($dom[$key]['attribute']['style']) AND !empty($dom[$key]['attribute']['style'])) {
+						// get style attributes
+						preg_match_all('/([^;:\s]*):([^;]*)/', $dom[$key]['attribute']['style'], $style_array, PREG_PATTERN_ORDER);
+						$dom[$key]['style'] = array(); // reset style attribute array
+						while (list($id, $name) = each($style_array[1])) {
+							// in case of duplicate attribute the last replace the previous
+							$dom[$key]['style'][strtolower($name)] = trim($style_array[2][$id]);
+						}
+						// --- get some style attributes ---
+						// text direction
+						if (isset($dom[$key]['style']['direction'])) {
+							$dom[$key]['dir'] = $dom[$key]['style']['direction'];
+						}
+						// font family
+						if (isset($dom[$key]['style']['font-family'])) {
+							$dom[$key]['fontname'] = $this->getFontFamilyName($dom[$key]['style']['font-family']);
+						}
+						// list-style-type
+						if (isset($dom[$key]['style']['list-style-type'])) {
+							$dom[$key]['listtype'] = trim(strtolower($dom[$key]['style']['list-style-type']));
+							if ($dom[$key]['listtype'] == 'inherit') {
+								$dom[$key]['listtype'] = $dom[$parentkey]['listtype'];
 							}
-							// header elements must be always contained in a single page
-							$dom[($dom[$key]['parent'])]['attribute']['nobr'] = 'true';
-						}
-						if (($dom[$key]['value'] == 'table') AND (!$this->empty_string($dom[($dom[$key]['parent'])]['thead']))) {
-							// remove the nobr attributes from the table header
-							$dom[($dom[$key]['parent'])]['thead'] = str_replace(' nobr="true"', '', $dom[($dom[$key]['parent'])]['thead']);
-							$dom[($dom[$key]['parent'])]['thead'] .= '</tablehead>';
 						}
-					} else {
-						// *** opening html tag
-						$dom[$key]['opening'] = true;
-						$dom[$key]['parent'] = end($level);
-						if (substr($element, -1, 1) != '/') {
-							// not self-closing tag
-							array_push($level, $key);
-							$dom[$key]['self'] = false;
-						} else {
-							$dom[$key]['self'] = true;
-						}
-						// copy some values from parent
-						$parentkey = 0;
-						if ($key > 0) {
-							$parentkey = $dom[$key]['parent'];
-							$dom[$key]['fontname'] = $dom[$parentkey]['fontname'];
-							$dom[$key]['fontstyle'] = $dom[$parentkey]['fontstyle'];
-							$dom[$key]['fontsize'] = $dom[$parentkey]['fontsize'];
-							$dom[$key]['stroke'] = $dom[$parentkey]['stroke'];
-							$dom[$key]['fill'] = $dom[$parentkey]['fill'];
-							$dom[$key]['clip'] = $dom[$parentkey]['clip'];
-							$dom[$key]['line-height'] = $dom[$parentkey]['line-height'];
-							$dom[$key]['bgcolor'] = $dom[$parentkey]['bgcolor'];
-							$dom[$key]['fgcolor'] = $dom[$parentkey]['fgcolor'];
-							$dom[$key]['strokecolor'] = $dom[$parentkey]['strokecolor'];
-							$dom[$key]['align'] = $dom[$parentkey]['align'];
-							$dom[$key]['listtype'] = $dom[$parentkey]['listtype'];
-							$dom[$key]['text-indent'] = $dom[$parentkey]['text-indent'];
-						}
-						// get attributes
-						preg_match_all('/([^=\s]*)[\s]*=[\s]*"([^"]*)"/', $element, $attr_array, PREG_PATTERN_ORDER);
-						$dom[$key]['attribute'] = array(); // reset attribute array
-						while (list($id, $name) = each($attr_array[1])) {
-							$dom[$key]['attribute'][strtolower($name)] = $attr_array[2][$id];
-						}
-						if (!empty($css)) {
-							// merge eternal CSS style to current style
-							$dom[$key]['attribute']['style'] = $this->getTagStyleFromCSS($dom, $key, $css);
-						}
-						// split style attributes
-						if (isset($dom[$key]['attribute']['style']) AND !empty($dom[$key]['attribute']['style'])) {
-							// get style attributes
-							preg_match_all('/([^;:\s]*):([^;]*)/', $dom[$key]['attribute']['style'], $style_array, PREG_PATTERN_ORDER);
-							$dom[$key]['style'] = array(); // reset style attribute array
-							while (list($id, $name) = each($style_array[1])) {
-								// in case of duplicate attribute the last replace the previous
-								$dom[$key]['style'][strtolower($name)] = trim($style_array[2][$id]);
+						// text-indent
+						if (isset($dom[$key]['style']['text-indent'])) {
+							$dom[$key]['text-indent'] = $this->getHTMLUnitToUnits($dom[$key]['style']['text-indent']);
+							if ($dom[$key]['text-indent'] == 'inherit') {
+								$dom[$key]['text-indent'] = $dom[$parentkey]['text-indent'];
 							}
-							// --- get some style attributes ---
-							if (isset($dom[$key]['style']['font-family'])) {
-								// font family
-								if (isset($dom[$key]['style']['font-family'])) {
-									$fontslist = preg_split('/[,]/', strtolower($dom[$key]['style']['font-family']));
-									foreach ($fontslist as $font) {
-										$font = trim(strtolower($font));
-										if (in_array($font, $this->fontlist) OR in_array($font, $this->fontkeys)) {
-											$dom[$key]['fontname'] = $font;
-											break;
-										}
-									}
+						}
+						// font size
+						if (isset($dom[$key]['style']['font-size'])) {
+							$fsize = trim($dom[$key]['style']['font-size']);
+							switch ($fsize) {
+								// absolute-size
+								case 'xx-small': {
+									$dom[$key]['fontsize'] = $dom[0]['fontsize'] - 4;
+									break;
 								}
-							}
-							// list-style-type
-							if (isset($dom[$key]['style']['list-style-type'])) {
-								$dom[$key]['listtype'] = trim(strtolower($dom[$key]['style']['list-style-type']));
-								if ($dom[$key]['listtype'] == 'inherit') {
-									$dom[$key]['listtype'] = $dom[$parentkey]['listtype'];
+								case 'x-small': {
+									$dom[$key]['fontsize'] = $dom[0]['fontsize'] - 3;
+									break;
 								}
-							}
-							// text-indent
-							if (isset($dom[$key]['style']['text-indent'])) {
-								$dom[$key]['text-indent'] = $this->getHTMLUnitToUnits($dom[$key]['style']['text-indent']);
-								if ($dom[$key]['text-indent'] == 'inherit') {
-									$dom[$key]['text-indent'] = $dom[$parentkey]['text-indent'];
+								case 'small': {
+									$dom[$key]['fontsize'] = $dom[0]['fontsize'] - 2;
+									break;
+								}
+								case 'medium': {
+									$dom[$key]['fontsize'] = $dom[0]['fontsize'];
+									break;
+								}
+								case 'large': {
+									$dom[$key]['fontsize'] = $dom[0]['fontsize'] + 2;
+									break;
+								}
+								case 'x-large': {
+									$dom[$key]['fontsize'] = $dom[0]['fontsize'] + 4;
+									break;
+								}
+								case 'xx-large': {
+									$dom[$key]['fontsize'] = $dom[0]['fontsize'] + 6;
+									break;
+								}
+								// relative-size
+								case 'smaller': {
+									$dom[$key]['fontsize'] = $dom[$parentkey]['fontsize'] - 3;
+									break;
+								}
+								case 'larger': {
+									$dom[$key]['fontsize'] = $dom[$parentkey]['fontsize'] + 3;
+									break;
+								}
+								default: {
+									$dom[$key]['fontsize'] = $this->getHTMLUnitToUnits($fsize, $dom[$parentkey]['fontsize'], 'pt', true);
 								}
 							}
-							// font size
-							if (isset($dom[$key]['style']['font-size'])) {
-								$fsize = trim($dom[$key]['style']['font-size']);
-								switch ($fsize) {
-									// absolute-size
-									case 'xx-small': {
-										$dom[$key]['fontsize'] = $dom[0]['fontsize'] - 4;
-										break;
-									}
-									case 'x-small': {
-										$dom[$key]['fontsize'] = $dom[0]['fontsize'] - 3;
-										break;
-									}
-									case 'small': {
-										$dom[$key]['fontsize'] = $dom[0]['fontsize'] - 2;
-										break;
-									}
-									case 'medium': {
-										$dom[$key]['fontsize'] = $dom[0]['fontsize'];
-										break;
-									}
-									case 'large': {
-										$dom[$key]['fontsize'] = $dom[0]['fontsize'] + 2;
-										break;
-									}
-									case 'x-large': {
-										$dom[$key]['fontsize'] = $dom[0]['fontsize'] + 4;
-										break;
-									}
-									case 'xx-large': {
-										$dom[$key]['fontsize'] = $dom[0]['fontsize'] + 6;
-										break;
-									}
-									// relative-size
-									case 'smaller': {
-										$dom[$key]['fontsize'] = $dom[$parentkey]['fontsize'] - 3;
-										break;
-									}
-									case 'larger': {
-										$dom[$key]['fontsize'] = $dom[$parentkey]['fontsize'] + 3;
-										break;
-									}
-									default: {
-										$dom[$key]['fontsize'] = $this->getHTMLUnitToUnits($fsize, $dom[$parentkey]['fontsize'], 'pt', true);
+						}
+						// font-stretch
+						if (isset($dom[$key]['style']['font-stretch'])) {
+							$dom[$key]['font-stretch'] = $this->getCSSFontStretching($dom[$key]['style']['font-stretch'], $dom[$parentkey]['font-stretch']);
+						}
+						// letter-spacing
+						if (isset($dom[$key]['style']['letter-spacing'])) {
+							$dom[$key]['letter-spacing'] = $this->getCSSFontSpacing($dom[$key]['style']['letter-spacing'], $dom[$parentkey]['letter-spacing']);
+						}
+						// line-height
+						if (isset($dom[$key]['style']['line-height'])) {
+							$lineheight = trim($dom[$key]['style']['line-height']);
+							switch ($lineheight) {
+								// A normal line height. This is default
+								case 'normal': {
+									$dom[$key]['line-height'] = $dom[0]['line-height'];
+									break;
+								}
+								default: {
+									if (is_numeric($lineheight)) {
+										$lineheight = $lineheight * 100;
 									}
+									$dom[$key]['line-height'] = $this->getHTMLUnitToUnits($lineheight, 1, '%', true);
 								}
 							}
-							// line-height
-							if (isset($dom[$key]['style']['line-height'])) {
-								$lineheight = trim($dom[$key]['style']['line-height']);
-								switch ($lineheight) {
-									// A normal line height. This is default
-									case 'normal': {
-										$dom[$key]['line-height'] = $dom[0]['line-height'];
-										break;
-									}
-									default: {
-										if (is_numeric($lineheight)) {
-											$lineheight = $lineheight * 100;
-										}
-										$dom[$key]['line-height'] = $this->getHTMLUnitToUnits($lineheight, 1, '%', true);
+						}
+						// font style
+						if (isset($dom[$key]['style']['font-weight']) AND (strtolower($dom[$key]['style']['font-weight']{0}) == 'b')) {
+							$dom[$key]['fontstyle'] .= 'B';
+						}
+						if (isset($dom[$key]['style']['font-style']) AND (strtolower($dom[$key]['style']['font-style']{0}) == 'i')) {
+							$dom[$key]['fontstyle'] .= 'I';
+						}
+						// font color
+						if (isset($dom[$key]['style']['color']) AND (!$this->empty_string($dom[$key]['style']['color']))) {
+							$dom[$key]['fgcolor'] = $this->convertHTMLColorToDec($dom[$key]['style']['color']);
+						} elseif ($dom[$key]['value'] == 'a') {
+							$dom[$key]['fgcolor'] = $this->htmlLinkColorArray;
+						}
+						// background color
+						if (isset($dom[$key]['style']['background-color']) AND (!$this->empty_string($dom[$key]['style']['background-color']))) {
+							$dom[$key]['bgcolor'] = $this->convertHTMLColorToDec($dom[$key]['style']['background-color']);
+						}
+						// text-decoration
+						if (isset($dom[$key]['style']['text-decoration'])) {
+							$decors = explode(' ', strtolower($dom[$key]['style']['text-decoration']));
+							foreach ($decors as $dec) {
+								$dec = trim($dec);
+								if (!$this->empty_string($dec)) {
+									if ($dec{0} == 'u') {
+										// underline
+										$dom[$key]['fontstyle'] .= 'U';
+									} elseif ($dec{0} == 'l') {
+										// line-trough
+										$dom[$key]['fontstyle'] .= 'D';
+									} elseif ($dec{0} == 'o') {
+										// overline
+										$dom[$key]['fontstyle'] .= 'O';
 									}
 								}
 							}
-							// font style
-							if (isset($dom[$key]['style']['font-weight']) AND (strtolower($dom[$key]['style']['font-weight']{0}) == 'b')) {
-								$dom[$key]['fontstyle'] .= 'B';
-							}
-							if (isset($dom[$key]['style']['font-style']) AND (strtolower($dom[$key]['style']['font-style']{0}) == 'i')) {
-								$dom[$key]['fontstyle'] .= 'I';
+						} elseif ($dom[$key]['value'] == 'a') {
+							$dom[$key]['fontstyle'] = $this->htmlLinkFontStyle;
+						}
+						// check for width attribute
+						if (isset($dom[$key]['style']['width'])) {
+							$dom[$key]['width'] = $dom[$key]['style']['width'];
+						}
+						// check for height attribute
+						if (isset($dom[$key]['style']['height'])) {
+							$dom[$key]['height'] = $dom[$key]['style']['height'];
+						}
+						// check for text alignment
+						if (isset($dom[$key]['style']['text-align'])) {
+							$dom[$key]['align'] = strtoupper($dom[$key]['style']['text-align']{0});
+						}
+						// check for CSS border properties
+						if (isset($dom[$key]['style']['border'])) {
+							$borderstyle = $this->getCSSBorderStyle($dom[$key]['style']['border']);
+							if (!empty($borderstyle)) {
+								$dom[$key]['border']['LTRB'] = $borderstyle;
 							}
-							// font color
-							if (isset($dom[$key]['style']['color']) AND (!$this->empty_string($dom[$key]['style']['color']))) {
-								$dom[$key]['fgcolor'] = $this->convertHTMLColorToDec($dom[$key]['style']['color']);
-							} elseif ($dom[$key]['value'] == 'a') {
-								$dom[$key]['fgcolor'] = $this->htmlLinkColorArray;
+						}
+						if (isset($dom[$key]['style']['border-color'])) {
+							$brd_colors = preg_split('/[\s]+/', trim($dom[$key]['style']['border-color']));
+							if (isset($brd_colors[3])) {
+								$dom[$key]['border']['L']['color'] = $this->convertHTMLColorToDec($brd_colors[3]);
 							}
-							// background color
-							if (isset($dom[$key]['style']['background-color']) AND (!$this->empty_string($dom[$key]['style']['background-color']))) {
-								$dom[$key]['bgcolor'] = $this->convertHTMLColorToDec($dom[$key]['style']['background-color']);
+							if (isset($brd_colors[1])) {
+								$dom[$key]['border']['R']['color'] = $this->convertHTMLColorToDec($brd_colors[1]);
 							}
-							// text-decoration
-							if (isset($dom[$key]['style']['text-decoration'])) {
-								$decors = explode(' ', strtolower($dom[$key]['style']['text-decoration']));
-								foreach ($decors as $dec) {
-									$dec = trim($dec);
-									if (!$this->empty_string($dec)) {
-										if ($dec{0} == 'u') {
-											// underline
-											$dom[$key]['fontstyle'] .= 'U';
-										} elseif ($dec{0} == 'l') {
-											// line-trough
-											$dom[$key]['fontstyle'] .= 'D';
-										} elseif ($dec{0} == 'o') {
-											// overline
-											$dom[$key]['fontstyle'] .= 'O';
-										}
-									}
-								}
-							} elseif ($dom[$key]['value'] == 'a') {
-								$dom[$key]['fontstyle'] = $this->htmlLinkFontStyle;
+							if (isset($brd_colors[0])) {
+								$dom[$key]['border']['T']['color'] = $this->convertHTMLColorToDec($brd_colors[0]);
 							}
-							// check for width attribute
-							if (isset($dom[$key]['style']['width'])) {
-								$dom[$key]['width'] = $dom[$key]['style']['width'];
+							if (isset($brd_colors[2])) {
+								$dom[$key]['border']['B']['color'] = $this->convertHTMLColorToDec($brd_colors[2]);
 							}
-							// check for height attribute
-							if (isset($dom[$key]['style']['height'])) {
-								$dom[$key]['height'] = $dom[$key]['style']['height'];
+						}
+						if (isset($dom[$key]['style']['border-width'])) {
+							$brd_widths = preg_split('/[\s]+/', trim($dom[$key]['style']['border-width']));
+							if (isset($brd_widths[3])) {
+								$dom[$key]['border']['L']['width'] = $this->getCSSBorderWidth($brd_widths[3]);
 							}
-							// check for text alignment
-							if (isset($dom[$key]['style']['text-align'])) {
-								$dom[$key]['align'] = strtoupper($dom[$key]['style']['text-align']{0});
+							if (isset($brd_widths[1])) {
+								$dom[$key]['border']['R']['width'] = $this->getCSSBorderWidth($brd_widths[1]);
 							}
-							// check for border attribute
-							if (isset($dom[$key]['style']['border'])) {
-								$dom[$key]['attribute']['border'] = $dom[$key]['style']['border'];
+							if (isset($brd_widths[0])) {
+								$dom[$key]['border']['T']['width'] = $this->getCSSBorderWidth($brd_widths[0]);
 							}
-							// page-break-inside
-							if (isset($dom[$key]['style']['page-break-inside']) AND ($dom[$key]['style']['page-break-inside'] == 'avoid')) {
-								$dom[$key]['attribute']['nobr'] = 'true';
+							if (isset($brd_widths[2])) {
+								$dom[$key]['border']['B']['width'] = $this->getCSSBorderWidth($brd_widths[2]);
 							}
-							// page-break-before
-							if (isset($dom[$key]['style']['page-break-before'])) {
-								if ($dom[$key]['style']['page-break-before'] == 'always') {
-									$dom[$key]['attribute']['pagebreak'] = 'true';
-								} elseif ($dom[$key]['style']['page-break-before'] == 'left') {
-									$dom[$key]['attribute']['pagebreak'] = 'left';
-								} elseif ($dom[$key]['style']['page-break-before'] == 'right') {
-									$dom[$key]['attribute']['pagebreak'] = 'right';
+						}
+						if (isset($dom[$key]['style']['border-style'])) {
+							$brd_styles = preg_split('/[\s]+/', trim($dom[$key]['style']['border-style']));
+							if (isset($brd_styles[3])) {
+								$dom[$key]['border']['L']['cap'] = 'square';
+								$dom[$key]['border']['L']['join'] = 'miter';
+								$dom[$key]['border']['L']['dash'] = $this->getCSSBorderDashStyle($brd_styles[3]);
+								if ($dom[$key]['border']['L']['dash'] < 0) {
+									$dom[$key]['border']['L'] = array();
 								}
 							}
-							// page-break-after
-							if (isset($dom[$key]['style']['page-break-after'])) {
-								if ($dom[$key]['style']['page-break-after'] == 'always') {
-									$dom[$key]['attribute']['pagebreakafter'] = 'true';
-								} elseif ($dom[$key]['style']['page-break-after'] == 'left') {
-									$dom[$key]['attribute']['pagebreakafter'] = 'left';
-								} elseif ($dom[$key]['style']['page-break-after'] == 'right') {
-									$dom[$key]['attribute']['pagebreakafter'] = 'right';
+							if (isset($brd_styles[1])) {
+								$dom[$key]['border']['R']['cap'] = 'square';
+								$dom[$key]['border']['R']['join'] = 'miter';
+								$dom[$key]['border']['R']['dash'] = $this->getCSSBorderDashStyle($brd_styles[1]);
+								if ($dom[$key]['border']['R']['dash'] < 0) {
+									$dom[$key]['border']['R'] = array();
 								}
 							}
-						}
-						// check for font tag
-						if ($dom[$key]['value'] == 'font') {
-							// font family
-							if (isset($dom[$key]['attribute']['face'])) {
-								$fontslist = preg_split('/[,]/', strtolower($dom[$key]['attribute']['face']));
-								foreach ($fontslist as $font) {
-									$font = trim(strtolower($font));
-									if (in_array($font, $this->fontlist) OR in_array($font, $this->fontkeys)) {
-										$dom[$key]['fontname'] = $font;
-										break;
-									}
+							if (isset($brd_styles[0])) {
+								$dom[$key]['border']['T']['cap'] = 'square';
+								$dom[$key]['border']['T']['join'] = 'miter';
+								$dom[$key]['border']['T']['dash'] = $this->getCSSBorderDashStyle($brd_styles[0]);
+								if ($dom[$key]['border']['T']['dash'] < 0) {
+									$dom[$key]['border']['T'] = array();
 								}
 							}
-							// font size
-							if (isset($dom[$key]['attribute']['size'])) {
-								if ($key > 0) {
-									if ($dom[$key]['attribute']['size']{0} == '+') {
-										$dom[$key]['fontsize'] = $dom[($dom[$key]['parent'])]['fontsize'] + intval(substr($dom[$key]['attribute']['size'], 1));
-									} elseif ($dom[$key]['attribute']['size']{0} == '-') {
-										$dom[$key]['fontsize'] = $dom[($dom[$key]['parent'])]['fontsize'] - intval(substr($dom[$key]['attribute']['size'], 1));
-									} else {
-										$dom[$key]['fontsize'] = intval($dom[$key]['attribute']['size']);
-									}
-								} else {
-									$dom[$key]['fontsize'] = intval($dom[$key]['attribute']['size']);
+							if (isset($brd_styles[2])) {
+								$dom[$key]['border']['B']['cap'] = 'square';
+								$dom[$key]['border']['B']['join'] = 'miter';
+								$dom[$key]['border']['B']['dash'] = $this->getCSSBorderDashStyle($brd_styles[2]);
+								if ($dom[$key]['border']['B']['dash'] < 0) {
+									$dom[$key]['border']['B'] = array();
 								}
 							}
 						}
-						// force natural alignment for lists
-						if ((($dom[$key]['value'] == 'ul') OR ($dom[$key]['value'] == 'ol') OR ($dom[$key]['value'] == 'dl'))
-							AND (!isset($dom[$key]['align']) OR $this->empty_string($dom[$key]['align']) OR ($dom[$key]['align'] != 'J'))) {
-							if ($this->rtl) {
-								$dom[$key]['align'] = 'R';
-							} else {
-								$dom[$key]['align'] = 'L';
+						$cellside = array('L' => 'left', 'R' => 'right', 'T' => 'top', 'B' => 'bottom');
+						foreach ($cellside as $bsk => $bsv) {
+							if (isset($dom[$key]['style']['border-'.$bsv])) {
+								$borderstyle = $this->getCSSBorderStyle($dom[$key]['style']['border-'.$bsv]);
+								if (!empty($borderstyle)) {
+									$dom[$key]['border'][$bsk] = $borderstyle;
+								}
 							}
-						}
-						if (($dom[$key]['value'] == 'small') OR ($dom[$key]['value'] == 'sup') OR ($dom[$key]['value'] == 'sub')) {
-							if (!isset($dom[$key]['attribute']['size']) AND !isset($dom[$key]['style']['font-size'])) {
-								$dom[$key]['fontsize'] = $dom[$key]['fontsize'] * K_SMALL_RATIO;
+							if (isset($dom[$key]['style']['border-'.$bsv.'-color'])) {
+								$dom[$key]['border'][$bsk]['color'] = $this->convertHTMLColorToDec($dom[$key]['style']['border-'.$bsv.'-color']);
+							}
+							if (isset($dom[$key]['style']['border-'.$bsv.'-width'])) {
+								$dom[$key]['border'][$bsk]['width'] = $this->getCSSBorderWidth($dom[$key]['style']['border-'.$bsv.'-width']);
+							}
+							if (isset($dom[$key]['style']['border-'.$bsv.'-style'])) {
+								$dom[$key]['border'][$bsk]['dash'] = $this->getCSSBorderDashStyle($dom[$key]['style']['border-'.$bsv.'-style']);
+								if ($dom[$key]['border'][$bsk]['dash'] < 0) {
+									$dom[$key]['border'][$bsk] = array();
+								}
 							}
 						}
-						if (($dom[$key]['value'] == 'strong') OR ($dom[$key]['value'] == 'b')) {
-							$dom[$key]['fontstyle'] .= 'B';
-						}
-						if (($dom[$key]['value'] == 'em') OR ($dom[$key]['value'] == 'i')) {
-							$dom[$key]['fontstyle'] .= 'I';
-						}
-						if ($dom[$key]['value'] == 'u') {
-							$dom[$key]['fontstyle'] .= 'U';
+						// check for CSS padding properties
+						if (isset($dom[$key]['style']['padding'])) {
+							$dom[$key]['padding'] = $this->getCSSPadding($dom[$key]['style']['padding']);
+						} else {
+							$dom[$key]['padding'] = $this->cell_padding;
 						}
-						if ($dom[$key]['value'] == 'del') {
-							$dom[$key]['fontstyle'] .= 'D';
+						foreach ($cellside as $psk => $psv) {
+							if (isset($dom[$key]['style']['padding-'.$psv])) {
+								$dom[$key]['padding'][$psk] = $this->getHTMLUnitToUnits($dom[$key]['style']['padding-'.$psv], 0, 'px', false);
+							}
 						}
-						if (!isset($dom[$key]['style']['text-decoration']) AND ($dom[$key]['value'] == 'a')) {
-							$dom[$key]['fontstyle'] = $this->htmlLinkFontStyle;
+						// check for CSS margin properties
+						if (isset($dom[$key]['style']['margin'])) {
+							$dom[$key]['margin'] = $this->getCSSMargin($dom[$key]['style']['margin']);
+						} else {
+							$dom[$key]['margin'] = $this->cell_margin;
 						}
-						if (($dom[$key]['value'] == 'pre') OR ($dom[$key]['value'] == 'tt')) {
-							$dom[$key]['fontname'] = $this->default_monospaced_font;
+						foreach ($cellside as $psk => $psv) {
+							if (isset($dom[$key]['style']['margin-'.$psv])) {
+								$dom[$key]['margin'][$psk] = $this->getHTMLUnitToUnits(str_replace('auto', '0', $dom[$key]['style']['margin-'.$psv]), 0, 'px', false);
+							}
 						}
-						if (($dom[$key]['value']{0} == 'h') AND (intval($dom[$key]['value']{1}) > 0) AND (intval($dom[$key]['value']{1}) < 7)) {
-							// headings h1, h2, h3, h4, h5, h6
-							if (!isset($dom[$key]['attribute']['size']) AND !isset($dom[$key]['style']['font-size'])) {
-								$headsize = (4 - intval($dom[$key]['value']{1})) * 2;
-								$dom[$key]['fontsize'] = $dom[0]['fontsize'] + $headsize;
+						// check for CSS border-spacing properties
+						if (isset($dom[$key]['style']['border-spacing'])) {
+							$dom[$key]['border-spacing'] = $this->getCSSBorderMargin($dom[$key]['style']['border-spacing']);
+						}
+						// page-break-inside
+						if (isset($dom[$key]['style']['page-break-inside']) AND ($dom[$key]['style']['page-break-inside'] == 'avoid')) {
+							$dom[$key]['attribute']['nobr'] = 'true';
+						}
+						// page-break-before
+						if (isset($dom[$key]['style']['page-break-before'])) {
+							if ($dom[$key]['style']['page-break-before'] == 'always') {
+								$dom[$key]['attribute']['pagebreak'] = 'true';
+							} elseif ($dom[$key]['style']['page-break-before'] == 'left') {
+								$dom[$key]['attribute']['pagebreak'] = 'left';
+							} elseif ($dom[$key]['style']['page-break-before'] == 'right') {
+								$dom[$key]['attribute']['pagebreak'] = 'right';
 							}
-							if (!isset($dom[$key]['style']['font-weight'])) {
-								$dom[$key]['fontstyle'] .= 'B';
+						}
+						// page-break-after
+						if (isset($dom[$key]['style']['page-break-after'])) {
+							if ($dom[$key]['style']['page-break-after'] == 'always') {
+								$dom[$key]['attribute']['pagebreakafter'] = 'true';
+							} elseif ($dom[$key]['style']['page-break-after'] == 'left') {
+								$dom[$key]['attribute']['pagebreakafter'] = 'left';
+							} elseif ($dom[$key]['style']['page-break-after'] == 'right') {
+								$dom[$key]['attribute']['pagebreakafter'] = 'right';
 							}
 						}
-						if (($dom[$key]['value'] == 'table')) {
-							$dom[$key]['rows'] = 0; // number of rows
-							$dom[$key]['trids'] = array(); // IDs of TR elements
-							$dom[$key]['thead'] = ''; // table header rows
+					}
+					if (isset($dom[$key]['attribute']['border']) AND ($dom[$key]['attribute']['border'] != 0)) {
+						$borderstyle = $this->getCSSBorderStyle($dom[$key]['attribute']['border'].' solid black');
+						if (!empty($borderstyle)) {
+							$dom[$key]['border']['LTRB'] = $borderstyle;
 						}
-						if (($dom[$key]['value'] == 'tr')) {
-							$dom[$key]['cols'] = 0;
-							if ($thead) {
-								$dom[$key]['thead'] = true;
-								// rows on thead block are printed as a separate table
-							} else {
-								$dom[$key]['thead'] = false;
-								// store the number of rows on table element
-								++$dom[($dom[$key]['parent'])]['rows'];
-								// store the TR elements IDs on table element
-								array_push($dom[($dom[$key]['parent'])]['trids'], $key);
-							}
+					}
+					// check for font tag
+					if ($dom[$key]['value'] == 'font') {
+						// font family
+						if (isset($dom[$key]['attribute']['face'])) {
+							$dom[$key]['fontname'] = $this->getFontFamilyName($dom[$key]['attribute']['face']);
 						}
-						if (($dom[$key]['value'] == 'th') OR ($dom[$key]['value'] == 'td')) {
-							if (isset($dom[$key]['attribute']['colspan'])) {
-								$colspan = intval($dom[$key]['attribute']['colspan']);
+						// font size
+						if (isset($dom[$key]['attribute']['size'])) {
+							if ($key > 0) {
+								if ($dom[$key]['attribute']['size']{0} == '+') {
+									$dom[$key]['fontsize'] = $dom[($dom[$key]['parent'])]['fontsize'] + intval(substr($dom[$key]['attribute']['size'], 1));
+								} elseif ($dom[$key]['attribute']['size']{0} == '-') {
+									$dom[$key]['fontsize'] = $dom[($dom[$key]['parent'])]['fontsize'] - intval(substr($dom[$key]['attribute']['size'], 1));
+								} else {
+									$dom[$key]['fontsize'] = intval($dom[$key]['attribute']['size']);
+								}
 							} else {
-								$colspan = 1;
+								$dom[$key]['fontsize'] = intval($dom[$key]['attribute']['size']);
 							}
-							$dom[$key]['attribute']['colspan'] = $colspan;
-							$dom[($dom[$key]['parent'])]['cols'] += $colspan;
 						}
-						// set foreground color attribute
-						if (isset($dom[$key]['attribute']['color']) AND (!$this->empty_string($dom[$key]['attribute']['color']))) {
-							$dom[$key]['fgcolor'] = $this->convertHTMLColorToDec($dom[$key]['attribute']['color']);
-						} elseif (!isset($dom[$key]['style']['color']) AND ($dom[$key]['value'] == 'a')) {
-							$dom[$key]['fgcolor'] = $this->htmlLinkColorArray;
+					}
+					// force natural alignment for lists
+					if ((($dom[$key]['value'] == 'ul') OR ($dom[$key]['value'] == 'ol') OR ($dom[$key]['value'] == 'dl'))
+						AND (!isset($dom[$key]['align']) OR $this->empty_string($dom[$key]['align']) OR ($dom[$key]['align'] != 'J'))) {
+						if ($this->rtl) {
+							$dom[$key]['align'] = 'R';
+						} else {
+							$dom[$key]['align'] = 'L';
 						}
-						// set background color attribute
-						if (isset($dom[$key]['attribute']['bgcolor']) AND (!$this->empty_string($dom[$key]['attribute']['bgcolor']))) {
-							$dom[$key]['bgcolor'] = $this->convertHTMLColorToDec($dom[$key]['attribute']['bgcolor']);
+					}
+					if (($dom[$key]['value'] == 'small') OR ($dom[$key]['value'] == 'sup') OR ($dom[$key]['value'] == 'sub')) {
+						if (!isset($dom[$key]['attribute']['size']) AND !isset($dom[$key]['style']['font-size'])) {
+							$dom[$key]['fontsize'] = $dom[$key]['fontsize'] * K_SMALL_RATIO;
 						}
-						// set stroke color attribute
-						if (isset($dom[$key]['attribute']['strokecolor']) AND (!$this->empty_string($dom[$key]['attribute']['strokecolor']))) {
-							$dom[$key]['strokecolor'] = $this->convertHTMLColorToDec($dom[$key]['attribute']['strokecolor']);
+					}
+					if (($dom[$key]['value'] == 'strong') OR ($dom[$key]['value'] == 'b')) {
+						$dom[$key]['fontstyle'] .= 'B';
+					}
+					if (($dom[$key]['value'] == 'em') OR ($dom[$key]['value'] == 'i')) {
+						$dom[$key]['fontstyle'] .= 'I';
+					}
+					if ($dom[$key]['value'] == 'u') {
+						$dom[$key]['fontstyle'] .= 'U';
+					}
+					if (($dom[$key]['value'] == 'del') OR ($dom[$key]['value'] == 's') OR ($dom[$key]['value'] == 'strike')) {
+						$dom[$key]['fontstyle'] .= 'D';
+					}
+					if (!isset($dom[$key]['style']['text-decoration']) AND ($dom[$key]['value'] == 'a')) {
+						$dom[$key]['fontstyle'] = $this->htmlLinkFontStyle;
+					}
+					if (($dom[$key]['value'] == 'pre') OR ($dom[$key]['value'] == 'tt')) {
+						$dom[$key]['fontname'] = $this->default_monospaced_font;
+					}
+					if (($dom[$key]['value']{0} == 'h') AND (intval($dom[$key]['value']{1}) > 0) AND (intval($dom[$key]['value']{1}) < 7)) {
+						// headings h1, h2, h3, h4, h5, h6
+						if (!isset($dom[$key]['attribute']['size']) AND !isset($dom[$key]['style']['font-size'])) {
+							$headsize = (4 - intval($dom[$key]['value']{1})) * 2;
+							$dom[$key]['fontsize'] = $dom[0]['fontsize'] + $headsize;
 						}
-						// check for width attribute
-						if (isset($dom[$key]['attribute']['width'])) {
-							$dom[$key]['width'] = $dom[$key]['attribute']['width'];
+						if (!isset($dom[$key]['style']['font-weight'])) {
+							$dom[$key]['fontstyle'] .= 'B';
 						}
-						// check for height attribute
-						if (isset($dom[$key]['attribute']['height'])) {
-							$dom[$key]['height'] = $dom[$key]['attribute']['height'];
+					}
+					if (($dom[$key]['value'] == 'table')) {
+						$dom[$key]['rows'] = 0; // number of rows
+						$dom[$key]['trids'] = array(); // IDs of TR elements
+						$dom[$key]['thead'] = ''; // table header rows
+					}
+					if (($dom[$key]['value'] == 'tr')) {
+						$dom[$key]['cols'] = 0;
+						if ($thead) {
+							$dom[$key]['thead'] = true;
+							// rows on thead block are printed as a separate table
+						} else {
+							$dom[$key]['thead'] = false;
+							// store the number of rows on table element
+							++$dom[($dom[$key]['parent'])]['rows'];
+							// store the TR elements IDs on table element
+							array_push($dom[($dom[$key]['parent'])]['trids'], $key);
 						}
-						// check for text alignment
-						if (isset($dom[$key]['attribute']['align']) AND (!$this->empty_string($dom[$key]['attribute']['align'])) AND ($dom[$key]['value'] !== 'img')) {
-							$dom[$key]['align'] = strtoupper($dom[$key]['attribute']['align']{0});
-						}
-						// check for text rendering mode (the following attributes do not exist in HTML)
-						if (isset($dom[$key]['attribute']['stroke'])) {
-							// font stroke width
-							$dom[$key]['stroke'] = $this->getHTMLUnitToUnits($dom[$key]['attribute']['stroke'], $dom[$key]['fontsize'], 'pt', true);
-						}
-						if (isset($dom[$key]['attribute']['fill'])) {
-							// font fill
-							if ($dom[$key]['attribute']['fill'] == 'true') {
-								$dom[$key]['fill'] = true;
-							} else {
-								$dom[$key]['fill'] = false;
-							}
+					}
+					if (($dom[$key]['value'] == 'th') OR ($dom[$key]['value'] == 'td')) {
+						if (isset($dom[$key]['attribute']['colspan'])) {
+							$colspan = intval($dom[$key]['attribute']['colspan']);
+						} else {
+							$colspan = 1;
+						}
+						$dom[$key]['attribute']['colspan'] = $colspan;
+						$dom[($dom[$key]['parent'])]['cols'] += $colspan;
+					}
+					// text direction
+					if (isset($dom[$key]['attribute']['dir'])) {
+						$dom[$key]['dir'] = $dom[$key]['attribute']['dir'];
+					}
+					// set foreground color attribute
+					if (isset($dom[$key]['attribute']['color']) AND (!$this->empty_string($dom[$key]['attribute']['color']))) {
+						$dom[$key]['fgcolor'] = $this->convertHTMLColorToDec($dom[$key]['attribute']['color']);
+					} elseif (!isset($dom[$key]['style']['color']) AND ($dom[$key]['value'] == 'a')) {
+						$dom[$key]['fgcolor'] = $this->htmlLinkColorArray;
+					}
+					// set background color attribute
+					if (isset($dom[$key]['attribute']['bgcolor']) AND (!$this->empty_string($dom[$key]['attribute']['bgcolor']))) {
+						$dom[$key]['bgcolor'] = $this->convertHTMLColorToDec($dom[$key]['attribute']['bgcolor']);
+					}
+					// set stroke color attribute
+					if (isset($dom[$key]['attribute']['strokecolor']) AND (!$this->empty_string($dom[$key]['attribute']['strokecolor']))) {
+						$dom[$key]['strokecolor'] = $this->convertHTMLColorToDec($dom[$key]['attribute']['strokecolor']);
+					}
+					// check for width attribute
+					if (isset($dom[$key]['attribute']['width'])) {
+						$dom[$key]['width'] = $dom[$key]['attribute']['width'];
+					}
+					// check for height attribute
+					if (isset($dom[$key]['attribute']['height'])) {
+						$dom[$key]['height'] = $dom[$key]['attribute']['height'];
+					}
+					// check for text alignment
+					if (isset($dom[$key]['attribute']['align']) AND (!$this->empty_string($dom[$key]['attribute']['align'])) AND ($dom[$key]['value'] !== 'img')) {
+						$dom[$key]['align'] = strtoupper($dom[$key]['attribute']['align']{0});
+					}
+					// check for text rendering mode (the following attributes do not exist in HTML)
+					if (isset($dom[$key]['attribute']['stroke'])) {
+						// font stroke width
+						$dom[$key]['stroke'] = $this->getHTMLUnitToUnits($dom[$key]['attribute']['stroke'], $dom[$key]['fontsize'], 'pt', true);
+					}
+					if (isset($dom[$key]['attribute']['fill'])) {
+						// font fill
+						if ($dom[$key]['attribute']['fill'] == 'true') {
+							$dom[$key]['fill'] = true;
+						} else {
+							$dom[$key]['fill'] = false;
 						}
-						if (isset($dom[$key]['attribute']['clip'])) {
-							// clipping mode
-							if ($dom[$key]['attribute']['clip'] == 'true') {
-								$dom[$key]['clip'] = true;
-							} else {
-								$dom[$key]['clip'] = false;
-							}
+					}
+					if (isset($dom[$key]['attribute']['clip'])) {
+						// clipping mode
+						if ($dom[$key]['attribute']['clip'] == 'true') {
+							$dom[$key]['clip'] = true;
+						} else {
+							$dom[$key]['clip'] = false;
 						}
-					} // end opening tag
-				} else {
-					// text
-					$dom[$key]['tag'] = false;
-					$dom[$key]['block'] = false;
-					$dom[$key]['value'] = stripslashes($this->unhtmlentities($element));
-					$dom[$key]['parent'] = end($level);
-				}
-				++$elkey;
-				++$key;
-			}
-			return $dom;
-		}
-
-		/**
-		 * Returns the string used to find spaces
-		 * @return string
-		 * @access protected
-		 * @author Nicola Asuni
-		 * @since 4.8.024 (2010-01-15)
-		 */
-		protected function getSpaceString() {
-			$spacestr = chr(32);
-			if (($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) {
-				$spacestr = chr(0).chr(32);
-			}
-			return $spacestr;
-		}
-
-		/**
-		 * Prints a cell (rectangular area) with optional borders, background color and html text string.
-		 * The upper-left corner of the cell corresponds to the current position. After the call, the current position moves to the right or to the next line.<br />
-		 * If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.
-		 * @param float $w Cell width. If 0, the cell extends up to the right margin.
-		 * @param float $h Cell minimum height. The cell extends automatically if needed.
-		 * @param float $x upper-left corner X coordinate
-		 * @param float $y upper-left corner Y coordinate
-		 * @param string $html html text to print. Default value: empty string.
-		 * @param mixed $border Indicates if borders must be drawn around the cell. The value can be either a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul>or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul>
-		 * @param int $ln Indicates where the current position should go after the call. Possible values are:<ul><li>0: to the right (or left for RTL language)</li><li>1: to the beginning of the next line</li><li>2: below</li></ul>
-	Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
-		 * @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0.
-		 * @param boolean $reseth if true reset the last cell height (default true).
-		 * @param string $align Allows to center or align the text. Possible values are:<ul><li>L : left align</li><li>C : center</li><li>R : right align</li><li>'' : empty string : left for LTR or right for RTL</li></ul>
-		 * @param boolean $autopadding if true, uses internal padding and automatically adjust it to account for line width.
-		 * @access public
-		 * @uses MultiCell()
-		 * @see Multicell(), writeHTML()
-		 */
-		public function writeHTMLCell($w, $h, $x, $y, $html='', $border=0, $ln=0, $fill=0, $reseth=true, $align='', $autopadding=true) {
-			return $this->MultiCell($w, $h, $html, $border, $align, $fill, $ln, $x, $y, $reseth, 0, true, $autopadding, 0);
-		}
-
-		/**
-		 * Allows to preserve some HTML formatting (limited support).<br />
-		 * IMPORTANT: The HTML must be well formatted - try to clean-up it using an application like HTML-Tidy before submitting.
-		 * Supported tags are: a, b, blockquote, br, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, img, li, ol, p, pre, small, span, strong, sub, sup, table, tcpdf, td, th, thead, tr, tt, u, ul
-		 * @param string $html text to display
-		 * @param boolean $ln if true add a new line after text (default = true)
-		 * @param int $fill Indicates if the background must be painted (true) or transparent (false).
-		 * @param boolean $reseth if true reset the last cell height (default false).
-		 * @param boolean $cell if true add the default cMargin space to each Write (default false).
-		 * @param string $align Allows to center or align the text. Possible values are:<ul><li>L : left align</li><li>C : center</li><li>R : right align</li><li>'' : empty string : left for LTR or right for RTL</li></ul>
-		 * @access public
-		 */
-		public function writeHTML($html, $ln=true, $fill=false, $reseth=false, $cell=false, $align='') {
-			$gvars = $this->getGraphicVars();
-			// store current values
-			$prevPage = $this->page;
-			$prevlMargin = $this->lMargin;
-			$prevrMargin = $this->rMargin;
-			$curfontname = $this->FontFamily;
-			$curfontstyle = $this->FontStyle;
-			$curfontsize = $this->FontSizePt;
-			$curfontascent = $this->getFontAscent($curfontname, $curfontstyle, $curfontsize);
-			$curfontdescent = $this->getFontDescent($curfontname, $curfontstyle, $curfontsize);
-			$this->newline = true;
-			$startlinepage = $this->page;
-			$minstartliney = $this->y;
-			$maxbottomliney = 0;
-			$startlinex = $this->x;
-			$startliney = $this->y;
-			$yshift = 0;
-			$newline = true;
-			$loop = 0;
-			$curpos = 0;
-			$this_method_vars = array();
-			$undo = false;
-			$fontaligned = false;
-			$this->premode = false;
-			if (isset($this->PageAnnots[$this->page])) {
-				$pask = count($this->PageAnnots[$this->page]);
+					}
+				} // end opening tag
 			} else {
-				$pask = 0;
-			}
-			if (!$this->InFooter) {
-				if (isset($this->footerlen[$this->page])) {
-					$this->footerpos[$this->page] = $this->pagelen[$this->page] - $this->footerlen[$this->page];
-				} else {
-					$this->footerpos[$this->page] = $this->pagelen[$this->page];
-				}
-				$startlinepos = $this->footerpos[$this->page];
+				// text
+				$dom[$key]['tag'] = false;
+				$dom[$key]['block'] = false;
+				$element = str_replace('$nbsp;', $this->unichr(160), $element);
+				$dom[$key]['value'] = stripslashes($this->unhtmlentities($element));
+				$dom[$key]['parent'] = end($level);
+				$dom[$key]['dir'] = $dom[$dom[$key]['parent']]['dir'];
+			}
+			++$elkey;
+			++$key;
+		}
+		return $dom;
+	}
+
+	/**
+	 * Returns the string used to find spaces
+	 * @return string
+	 * @protected
+	 * @author Nicola Asuni
+	 * @since 4.8.024 (2010-01-15)
+	 */
+	protected function getSpaceString() {
+		$spacestr = chr(32);
+		if ($this->isUnicodeFont()) {
+			$spacestr = chr(0).chr(32);
+		}
+		return $spacestr;
+	}
+
+	/**
+	 * Prints a cell (rectangular area) with optional borders, background color and html text string.
+	 * The upper-left corner of the cell corresponds to the current position. After the call, the current position moves to the right or to the next line.<br />
+	 * If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.
+	 * @param $w (float) Cell width. If 0, the cell extends up to the right margin.
+	 * @param $h (float) Cell minimum height. The cell extends automatically if needed.
+	 * @param $x (float) upper-left corner X coordinate
+	 * @param $y (float) upper-left corner Y coordinate
+	 * @param $html (string) html text to print. Default value: empty string.
+	 * @param $border (mixed) Indicates if borders must be drawn around the cell. The value can be a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul> or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+	 * @param $ln (int) Indicates where the current position should go after the call. Possible values are:<ul><li>0: to the right (or left for RTL language)</li><li>1: to the beginning of the next line</li><li>2: below</li></ul>
+Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
+	 * @param $fill (boolean) Indicates if the cell background must be painted (true) or transparent (false).
+	 * @param $reseth (boolean) if true reset the last cell height (default true).
+	 * @param $align (string) Allows to center or align the text. Possible values are:<ul><li>L : left align</li><li>C : center</li><li>R : right align</li><li>'' : empty string : left for LTR or right for RTL</li></ul>
+	 * @param $autopadding (boolean) if true, uses internal padding and automatically adjust it to account for line width.
+	 * @see Multicell(), writeHTML()
+	 * @public
+	 */
+	public function writeHTMLCell($w, $h, $x, $y, $html='', $border=0, $ln=0, $fill=false, $reseth=true, $align='', $autopadding=true) {
+		return $this->MultiCell($w, $h, $html, $border, $align, $fill, $ln, $x, $y, $reseth, 0, true, $autopadding, 0);
+	}
+
+	/**
+	 * Allows to preserve some HTML formatting (limited support).<br />
+	 * IMPORTANT: The HTML must be well formatted - try to clean-up it using an application like HTML-Tidy before submitting.
+	 * Supported tags are: a, b, blockquote, br, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, img, li, ol, p, pre, small, span, strong, sub, sup, table, tcpdf, td, th, thead, tr, tt, u, ul
+	 * @param $html (string) text to display
+	 * @param $ln (boolean) if true add a new line after text (default = true)
+	 * @param $fill (boolean) Indicates if the background must be painted (true) or transparent (false).
+	 * @param $reseth (boolean) if true reset the last cell height (default false).
+	 * @param $cell (boolean) if true add the current left (or right for RTL) padding to each Write (default false).
+	 * @param $align (string) Allows to center or align the text. Possible values are:<ul><li>L : left align</li><li>C : center</li><li>R : right align</li><li>'' : empty string : left for LTR or right for RTL</li></ul>
+	 * @public
+	 */
+	public function writeHTML($html, $ln=true, $fill=false, $reseth=false, $cell=false, $align='') {
+		$gvars = $this->getGraphicVars();
+		// store current values
+		$prev_cell_margin = $this->cell_margin;
+		$prev_cell_padding = $this->cell_padding;
+		$prevPage = $this->page;
+		$prevlMargin = $this->lMargin;
+		$prevrMargin = $this->rMargin;
+		$curfontname = $this->FontFamily;
+		$curfontstyle = $this->FontStyle;
+		$curfontsize = $this->FontSizePt;
+		$curfontascent = $this->getFontAscent($curfontname, $curfontstyle, $curfontsize);
+		$curfontdescent = $this->getFontDescent($curfontname, $curfontstyle, $curfontsize);
+		$curfontstretcing = $this->font_stretching;
+		$curfontkerning = $this->font_spacing;
+		$this->newline = true;
+		$newline = true;
+		$startlinepage = $this->page;
+		$minstartliney = $this->y;
+		$maxbottomliney = 0;
+		$startlinex = $this->x;
+		$startliney = $this->y;
+		$yshift = 0;
+		$loop = 0;
+		$curpos = 0;
+		$this_method_vars = array();
+		$undo = false;
+		$fontaligned = false;
+		$reverse_dir = false; // true when the text direction is reversed
+		$this->premode = false;
+		if ($this->inxobj) {
+			// we are inside an XObject template
+			$pask = count($this->xobjects[$this->xobjid]['annotations']);
+		} elseif (isset($this->PageAnnots[$this->page])) {
+			$pask = count($this->PageAnnots[$this->page]);
+		} else {
+			$pask = 0;
+		}
+		if ($this->inxobj) {
+			// we are inside an XObject template
+			$startlinepos = strlen($this->xobjects[$this->xobjid]['outdata']);
+		} elseif (!$this->InFooter) {
+			if (isset($this->footerlen[$this->page])) {
+				$this->footerpos[$this->page] = $this->pagelen[$this->page] - $this->footerlen[$this->page];
 			} else {
-				$startlinepos = $this->pagelen[$this->page];
-			}
-			$lalign = $align;
-			$plalign = $align;
+				$this->footerpos[$this->page] = $this->pagelen[$this->page];
+			}
+			$startlinepos = $this->footerpos[$this->page];
+		} else {
+			// we are inside the footer
+			$startlinepos = $this->pagelen[$this->page];
+		}
+		$lalign = $align;
+		$plalign = $align;
+		if ($this->rtl) {
+			$w = $this->x - $this->lMargin;
+		} else {
+			$w = $this->w - $this->rMargin - $this->x;
+		}
+		$w -= ($this->cell_padding['L'] + $this->cell_padding['R']);
+		if ($cell) {
 			if ($this->rtl) {
-				$w = $this->x - $this->lMargin;
+				$this->x -= $this->cell_padding['R'];
+				$this->lMargin += $this->cell_padding['R'];
 			} else {
-				$w = $this->w - $this->rMargin - $this->x;
-			}
-			$w -= (2 * $this->cMargin);
-			if ($cell) {
-				if ($this->rtl) {
-					$this->x -= $this->cMargin;
-				} else {
-					$this->x += $this->cMargin;
+				$this->x += $this->cell_padding['L'];
+				$this->rMargin += $this->cell_padding['L'];
+			}
+		}
+		if ($this->customlistindent >= 0) {
+			$this->listindent = $this->customlistindent;
+		} else {
+			$this->listindent = $this->GetStringWidth('0000');
+		}
+		$this->listindentlevel = 0;
+		// save previous states
+		$prev_cell_height_ratio = $this->cell_height_ratio;
+		$prev_listnum = $this->listnum;
+		$prev_listordered = $this->listordered;
+		$prev_listcount = $this->listcount;
+		$prev_lispacer = $this->lispacer;
+		$this->listnum = 0;
+		$this->listordered = array();
+		$this->listcount = array();
+		$this->lispacer = '';
+		if (($this->empty_string($this->lasth)) OR ($reseth)) {
+			// reset row height
+			$this->resetLastH();
+		}
+		$dom = $this->getHtmlDomArray($html);
+		$maxel = count($dom);
+		$key = 0;
+		while ($key < $maxel) {
+			if ($dom[$key]['tag'] AND isset($dom[$key]['attribute']['pagebreak'])) {
+				// check for pagebreak
+				if (($dom[$key]['attribute']['pagebreak'] == 'true') OR ($dom[$key]['attribute']['pagebreak'] == 'left') OR ($dom[$key]['attribute']['pagebreak'] == 'right')) {
+					// add a page (or trig AcceptPageBreak() for multicolumn mode)
+					$this->checkPageBreak($this->PageBreakTrigger + 1);
+				}
+				if ((($dom[$key]['attribute']['pagebreak'] == 'left') AND (((!$this->rtl) AND (($this->page % 2) == 0)) OR (($this->rtl) AND (($this->page % 2) != 0))))
+					OR (($dom[$key]['attribute']['pagebreak'] == 'right') AND (((!$this->rtl) AND (($this->page % 2) != 0)) OR (($this->rtl) AND (($this->page % 2) == 0))))) {
+					// add a page (or trig AcceptPageBreak() for multicolumn mode)
+					$this->checkPageBreak($this->PageBreakTrigger + 1);
 				}
 			}
-			if ($this->customlistindent >= 0) {
-				$this->listindent = $this->customlistindent;
-			} else {
-				$this->listindent = $this->GetStringWidth('0000');
-			}
-			$this->listindentlevel = 0;
-			// save previous states
-			$prev_cell_height_ratio = $this->cell_height_ratio;
-			$prev_listnum = $this->listnum;
-			$prev_listordered = $this->listordered;
-			$prev_listcount = $this->listcount;
-			$prev_lispacer = $this->lispacer;
-			$this->listnum = 0;
-			$this->listordered = array();
-			$this->listcount = array();
-			$this->lispacer = '';
-			if (($this->empty_string($this->lasth)) OR ($reseth)) {
-				//set row height
-				$this->lasth = $this->FontSize * $this->cell_height_ratio;
-			}
-			$dom = $this->getHtmlDomArray($html);
-			$maxel = count($dom);
-			$key = 0;
-			while ($key < $maxel) {
-				if ($dom[$key]['tag'] AND isset($dom[$key]['attribute']['pagebreak'])) {
-					// check for pagebreak
-					if (($dom[$key]['attribute']['pagebreak'] == 'true') OR ($dom[$key]['attribute']['pagebreak'] == 'left') OR ($dom[$key]['attribute']['pagebreak'] == 'right')) {
-						// add a page (or trig AcceptPageBreak() for multicolumn mode)
-						$this->checkPageBreak($this->PageBreakTrigger + 1);
-					}
-					if ((($dom[$key]['attribute']['pagebreak'] == 'left') AND (((!$this->rtl) AND (($this->page % 2) == 0)) OR (($this->rtl) AND (($this->page % 2) != 0))))
-						OR (($dom[$key]['attribute']['pagebreak'] == 'right') AND (((!$this->rtl) AND (($this->page % 2) != 0)) OR (($this->rtl) AND (($this->page % 2) == 0))))) {
+			if ($dom[$key]['tag'] AND $dom[$key]['opening'] AND isset($dom[$key]['attribute']['nobr']) AND ($dom[$key]['attribute']['nobr'] == 'true')) {
+				if (isset($dom[($dom[$key]['parent'])]['attribute']['nobr']) AND ($dom[($dom[$key]['parent'])]['attribute']['nobr'] == 'true')) {
+					$dom[$key]['attribute']['nobr'] = false;
+				} else {
+					// store current object
+					$this->startTransaction();
+					// save this method vars
+					$this_method_vars['html'] = $html;
+					$this_method_vars['ln'] = $ln;
+					$this_method_vars['fill'] = $fill;
+					$this_method_vars['reseth'] = $reseth;
+					$this_method_vars['cell'] = $cell;
+					$this_method_vars['align'] = $align;
+					$this_method_vars['gvars'] = $gvars;
+					$this_method_vars['prevPage'] = $prevPage;
+					$this_method_vars['prev_cell_margin'] = $prev_cell_margin;
+					$this_method_vars['prev_cell_padding'] = $prev_cell_padding;
+					$this_method_vars['prevlMargin'] = $prevlMargin;
+					$this_method_vars['prevrMargin'] = $prevrMargin;
+					$this_method_vars['curfontname'] = $curfontname;
+					$this_method_vars['curfontstyle'] = $curfontstyle;
+					$this_method_vars['curfontsize'] = $curfontsize;
+					$this_method_vars['curfontascent'] = $curfontascent;
+					$this_method_vars['curfontdescent'] = $curfontdescent;
+					$this_method_vars['curfontstretcing'] = $curfontstretcing;
+					$this_method_vars['curfontkerning'] = $curfontkerning;
+					$this_method_vars['minstartliney'] = $minstartliney;
+					$this_method_vars['maxbottomliney'] = $maxbottomliney;
+					$this_method_vars['yshift'] = $yshift;
+					$this_method_vars['startlinepage'] = $startlinepage;
+					$this_method_vars['startlinepos'] = $startlinepos;
+					$this_method_vars['startlinex'] = $startlinex;
+					$this_method_vars['startliney'] = $startliney;
+					$this_method_vars['newline'] = $newline;
+					$this_method_vars['loop'] = $loop;
+					$this_method_vars['curpos'] = $curpos;
+					$this_method_vars['pask'] = $pask;
+					$this_method_vars['lalign'] = $lalign;
+					$this_method_vars['plalign'] = $plalign;
+					$this_method_vars['w'] = $w;
+					$this_method_vars['prev_cell_height_ratio'] = $prev_cell_height_ratio;
+					$this_method_vars['prev_listnum'] = $prev_listnum;
+					$this_method_vars['prev_listordered'] = $prev_listordered;
+					$this_method_vars['prev_listcount'] = $prev_listcount;
+					$this_method_vars['prev_lispacer'] = $prev_lispacer;
+					$this_method_vars['fontaligned'] = $fontaligned;
+					$this_method_vars['key'] = $key;
+					$this_method_vars['dom'] = $dom;
+				}
+			}
+			// print THEAD block
+			if (($dom[$key]['value'] == 'tr') AND isset($dom[$key]['thead']) AND $dom[$key]['thead']) {
+				if (isset($dom[$key]['parent']) AND isset($dom[$dom[$key]['parent']]['thead']) AND !$this->empty_string($dom[$dom[$key]['parent']]['thead'])) {
+					$this->inthead = true;
+					// print table header (thead)
+					$this->writeHTML($this->thead, false, false, false, false, '');
+					// check if we are on a new page or on a new column
+					if (($this->y < $this->start_transaction_y) OR ($this->checkPageBreak($this->lasth, '', false))) {
+						// we are on a new page or on a new column and the total object height is less than the available vertical space.
+						// restore previous object
+						$this->rollbackTransaction(true);
+						// restore previous values
+						foreach ($this_method_vars as $vkey => $vval) {
+							$$vkey = $vval;
+						}
+						// disable table header
+						$tmp_thead = $this->thead;
+						$this->thead = '';
 						// add a page (or trig AcceptPageBreak() for multicolumn mode)
-						$this->checkPageBreak($this->PageBreakTrigger + 1);
-					}
-				}
-				if ($dom[$key]['tag'] AND $dom[$key]['opening'] AND isset($dom[$key]['attribute']['nobr']) AND ($dom[$key]['attribute']['nobr'] == 'true')) {
-					if (isset($dom[($dom[$key]['parent'])]['attribute']['nobr']) AND ($dom[($dom[$key]['parent'])]['attribute']['nobr'] == 'true')) {
-						$dom[$key]['attribute']['nobr'] = false;
-					} else {
-						// store current object
-						$this->startTransaction();
-						// save this method vars
-						$this_method_vars['html'] = $html;
-						$this_method_vars['ln'] = $ln;
-						$this_method_vars['fill'] = $fill;
-						$this_method_vars['reseth'] = $reseth;
-						$this_method_vars['cell'] = $cell;
-						$this_method_vars['align'] = $align;
-						$this_method_vars['gvars'] = $gvars;
-						$this_method_vars['prevPage'] = $prevPage;
-						$this_method_vars['prevlMargin'] = $prevlMargin;
-						$this_method_vars['prevrMargin'] = $prevrMargin;
-						$this_method_vars['curfontname'] = $curfontname;
-						$this_method_vars['curfontstyle'] = $curfontstyle;
-						$this_method_vars['curfontsize'] = $curfontsize;
-						$this_method_vars['curfontascent'] = $curfontascent;
-						$this_method_vars['curfontdescent'] = $curfontdescent;
-						$this_method_vars['minstartliney'] = $minstartliney;
-						$this_method_vars['maxbottomliney'] = $maxbottomliney;
-						$this_method_vars['yshift'] = $yshift;
-						$this_method_vars['startlinepage'] = $startlinepage;
-						$this_method_vars['startlinepos'] = $startlinepos;
-						$this_method_vars['startlinex'] = $startlinex;
-						$this_method_vars['startliney'] = $startliney;
-						$this_method_vars['newline'] = $newline;
-						$this_method_vars['loop'] = $loop;
-						$this_method_vars['curpos'] = $curpos;
-						$this_method_vars['pask'] = $pask;
-						$this_method_vars['lalign'] = $lalign;
-						$this_method_vars['plalign'] = $plalign;
-						$this_method_vars['w'] = $w;
-						$this_method_vars['prev_cell_height_ratio'] = $prev_cell_height_ratio;
-						$this_method_vars['prev_listnum'] = $prev_listnum;
-						$this_method_vars['prev_listordered'] = $prev_listordered;
-						$this_method_vars['prev_listcount'] = $prev_listcount;
-						$this_method_vars['prev_lispacer'] = $prev_lispacer;
-						$this_method_vars['fontaligned'] = $fontaligned;
-						$this_method_vars['key'] = $key;
-						$this_method_vars['dom'] = $dom;
-					}
-				}
-				// print THEAD block
-				if (($dom[$key]['value'] == 'tr') AND isset($dom[$key]['thead']) AND $dom[$key]['thead']) {
-					if (isset($dom[$key]['parent']) AND isset($dom[$dom[$key]['parent']]['thead']) AND !$this->empty_string($dom[$dom[$key]['parent']]['thead'])) {
-						$this->inthead = true;
+						$pre_y = $this->y;
+						if ((!$this->checkPageBreak($this->PageBreakTrigger + 1)) AND ($this->y < $pre_y)) {
+							// fix for multicolumn mode
+							$startliney = $this->y;
+						}
+						$this->start_transaction_page = $this->page;
+						$this->start_transaction_y = $this->y;
+						// restore table header
+						$this->thead = $tmp_thead;
+						// fix table border properties
+						if (isset($dom[$dom[$key]['parent']]['attribute']['cellspacing'])) {
+							$tmp_cellspacing = $this->getHTMLUnitToUnits($dom[$dom[$key]['parent']]['attribute']['cellspacing'], 1, 'px');
+						} elseif (isset($dom[$dom[$key]['parent']]['border-spacing'])) {
+							$tmp_cellspacing = $dom[$dom[$key]['parent']]['border-spacing']['V'];
+						} else {
+							$tmp_cellspacing = 0;
+						}
+						$dom[$dom[$key]['parent']]['borderposition']['page'] = $this->page;
+						$dom[$dom[$key]['parent']]['borderposition']['column'] = $this->current_column;
+						$dom[$dom[$key]['parent']]['borderposition']['y'] = $this->y + $tmp_cellspacing;
+						$xoffset = ($this->x - $dom[$dom[$key]['parent']]['borderposition']['x']);
+						$dom[$dom[$key]['parent']]['borderposition']['x'] += $xoffset;
+						$dom[$dom[$key]['parent']]['borderposition']['xmax'] += $xoffset;
 						// print table header (thead)
 						$this->writeHTML($this->thead, false, false, false, false, '');
-						if (($this->start_transaction_page == ($this->numpages - 1)) OR ($this->y < $this->start_transaction_y) OR ($this->checkPageBreak($this->lasth, '', false))) {
-							// restore previous object
-							$this->rollbackTransaction(true);
-							// restore previous values
-							foreach ($this_method_vars as $vkey => $vval) {
-								$$vkey = $vval;
-							}
-							// add a page (or trig AcceptPageBreak() for multicolumn mode)
+					}
+				}
+				// move $key index forward to skip THEAD block
+				while ( ($key < $maxel) AND (!(
+					($dom[$key]['tag'] AND $dom[$key]['opening'] AND ($dom[$key]['value'] == 'tr') AND (!isset($dom[$key]['thead']) OR !$dom[$key]['thead']))
+					OR ($dom[$key]['tag'] AND (!$dom[$key]['opening']) AND ($dom[$key]['value'] == 'table'))) )) {
+					++$key;
+				}
+			}
+			if ($dom[$key]['tag'] OR ($key == 0)) {
+				if ((($dom[$key]['value'] == 'table') OR ($dom[$key]['value'] == 'tr')) AND (isset($dom[$key]['align']))) {
+					$dom[$key]['align'] = ($this->rtl) ? 'R' : 'L';
+				}
+				// vertically align image in line
+				if ((!$this->newline) AND ($dom[$key]['value'] == 'img') AND (isset($dom[$key]['height'])) AND ($dom[$key]['height'] > 0)) {
+					// get image height
+					$imgh = $this->getHTMLUnitToUnits($dom[$key]['height'], $this->lasth, 'px');
+					// check for automatic line break
+					$autolinebreak = false;
+					if (isset($dom[$key]['width']) AND ($dom[$key]['width'] > 0)) {
+						$imgw = $this->getHTMLUnitToUnits($dom[$key]['width'], 1, 'px', false);
+						if (($this->rtl AND (($this->x - $imgw) < ($this->lMargin + $this->cell_padding['L'])))
+							OR (!$this->rtl AND (($this->x + $imgw) > ($this->w - $this->rMargin - $this->cell_padding['R'])))) {
+							// add automatic line break
+							$autolinebreak = true;
+							$this->Ln('', $cell);
+							// go back to evaluate this line break
+							--$key;
+						}
+					}
+					if (!$autolinebreak) {
+						if (!$this->InFooter) {
 							$pre_y = $this->y;
-							if ((!$this->checkPageBreak($this->PageBreakTrigger + 1)) AND ($this->y < $pre_y)) {
+							// check for page break
+							if ((!$this->checkPageBreak($imgh)) AND ($this->y < $pre_y)) {
 								// fix for multicolumn mode
 								$startliney = $this->y;
 							}
-							$this->start_transaction_page = $this->page;
-							$this->start_transaction_y = $this->y;
-						}
-					}
-					// move $key index forward to skip THEAD block
-					while ( ($key < $maxel) AND (!(
-						($dom[$key]['tag'] AND $dom[$key]['opening'] AND ($dom[$key]['value'] == 'tr') AND (!isset($dom[$key]['thead']) OR !$dom[$key]['thead']))
-						OR ($dom[$key]['tag'] AND (!$dom[$key]['opening']) AND ($dom[$key]['value'] == 'table'))) )) {
-						++$key;
-					}
-				}
-				if ($dom[$key]['tag'] OR ($key == 0)) {
-					if (isset($dom[$key]['line-height'])) {
-						// set line height
-						$this->cell_height_ratio = $dom[$key]['line-height'];
-						$this->lasth = $this->FontSize * $this->cell_height_ratio;
-					}
-					if ((($dom[$key]['value'] == 'table') OR ($dom[$key]['value'] == 'tr')) AND (isset($dom[$key]['align']))) {
-						$dom[$key]['align'] = ($this->rtl) ? 'R' : 'L';
-					}
-					// vertically align image in line
-					if ((!$this->newline) AND ($dom[$key]['value'] == 'img') AND (isset($dom[$key]['attribute']['height'])) AND ($dom[$key]['attribute']['height'] > 0)) {
-						// get image height
-						$imgh = $this->getHTMLUnitToUnits($dom[$key]['attribute']['height'], $this->lasth, 'px');
-						// check for automatic line break
-						$autolinebreak = false;
-						if (isset($dom[$key]['attribute']['width']) AND ($dom[$key]['attribute']['width'] > 0)) {
-							$imgw = $this->getHTMLUnitToUnits($dom[$key]['attribute']['width'], 1, 'px', false);
-							if (($this->rtl AND (($this->x - $imgw) < ($this->lMargin + $this->cMargin)))
-								OR (!$this->rtl AND (($this->x + $imgw) > ($this->w - $this->rMargin - $this->cMargin)))) {
-								// add automatic line break
-								$autolinebreak = true;
-								$this->Ln('', $cell);
-								// go back to evaluate this line break
-								--$key;
-							}
 						}
-						if (!$autolinebreak) {
-							if (!$this->InFooter) {
-								$pre_y = $this->y;
-								// check for page break
-								if ((!$this->checkPageBreak($imgh)) AND ($this->y < $pre_y)) {
-									// fix for multicolumn mode
-									$startliney = $this->y;
+						if ($this->page > $startlinepage) {
+							// fix line splitted over two pages
+							if (isset($this->footerlen[$startlinepage])) {
+								$curpos = $this->pagelen[$startlinepage] - $this->footerlen[$startlinepage];
+							}
+							// line to be moved one page forward
+							$pagebuff = $this->getPageBuffer($startlinepage);
+							$linebeg = substr($pagebuff, $startlinepos, ($curpos - $startlinepos));
+							$tstart = substr($pagebuff, 0, $startlinepos);
+							$tend = substr($this->getPageBuffer($startlinepage), $curpos);
+							// remove line from previous page
+							$this->setPageBuffer($startlinepage, $tstart.''.$tend);
+							$pagebuff = $this->getPageBuffer($this->page);
+							$tstart = substr($pagebuff, 0, $this->cntmrk[$this->page]);
+							$tend = substr($pagebuff, $this->cntmrk[$this->page]);
+							// add line start to current page
+							$yshift = $minstartliney - $this->y;
+							if ($fontaligned) {
+								$yshift += ($curfontsize / $this->k);
+							}
+							$try = sprintf('1 0 0 1 0 %.3F cm', ($yshift * $this->k));
+							$this->setPageBuffer($this->page, $tstart."\nq\n".$try."\n".$linebeg."\nQ\n".$tend);
+							// shift the annotations and links
+							if (isset($this->PageAnnots[$this->page])) {
+								$next_pask = count($this->PageAnnots[$this->page]);
+							} else {
+								$next_pask = 0;
+							}
+							if (isset($this->PageAnnots[$startlinepage])) {
+								foreach ($this->PageAnnots[$startlinepage] as $pak => $pac) {
+									if ($pak >= $pask) {
+										$this->PageAnnots[$this->page][] = $pac;
+										unset($this->PageAnnots[$startlinepage][$pak]);
+										$npak = count($this->PageAnnots[$this->page]) - 1;
+										$this->PageAnnots[$this->page][$npak]['y'] -= $yshift;
+									}
 								}
 							}
+							$pask = $next_pask;
+							$startlinepos = $this->cntmrk[$this->page];
+							$startlinepage = $this->page;
+							$startliney = $this->y;
+							$this->newline = false;
+						}
+						$this->y += ((($curfontsize * $this->cell_height_ratio / $this->k) + $curfontascent - $curfontdescent) / 2) - $imgh;
+						$minstartliney = min($this->y, $minstartliney);
+						$maxbottomliney = ($startliney + ($this->FontSize * $this->cell_height_ratio));
+					}
+				} elseif (isset($dom[$key]['fontname']) OR isset($dom[$key]['fontstyle']) OR isset($dom[$key]['fontsize']) OR isset($dom[$key]['line-height'])) {
+					// account for different font size
+					$pfontname = $curfontname;
+					$pfontstyle = $curfontstyle;
+					$pfontsize = $curfontsize;
+					$fontname = isset($dom[$key]['fontname']) ? $dom[$key]['fontname'] : $curfontname;
+					$fontstyle = isset($dom[$key]['fontstyle']) ? $dom[$key]['fontstyle'] : $curfontstyle;
+					$fontsize = isset($dom[$key]['fontsize']) ? $dom[$key]['fontsize'] : $curfontsize;
+					$fontascent = $this->getFontAscent($fontname, $fontstyle, $fontsize);
+					$fontdescent = $this->getFontDescent($fontname, $fontstyle, $fontsize);
+					if ( ($fontname != $curfontname) OR ($fontstyle != $curfontstyle) OR ($fontsize != $curfontsize)
+						OR ($this->cell_height_ratio != $dom[$key]['line-height'])
+						OR ($dom[$key]['tag'] AND $dom[$key]['opening'] AND ($dom[$key]['value'] == 'li')) ) {
+						if ((!$this->newline) AND ($key < ($maxel - 1))
+							AND ( (is_numeric($fontsize) AND ($fontsize >= 0) AND is_numeric($curfontsize) AND ($curfontsize >= 0) AND ($fontsize != $curfontsize))
+								OR ($this->cell_height_ratio != $dom[$key]['line-height']))
+								OR ($dom[$key]['tag'] AND $dom[$key]['opening'] AND ($dom[$key]['value'] == 'li')) ) {
 							if ($this->page > $startlinepage) {
-								// fix line splitted over two pages
+								// fix lines splitted over two pages
 								if (isset($this->footerlen[$startlinepage])) {
 									$curpos = $this->pagelen[$startlinepage] - $this->footerlen[$startlinepage];
 								}
@@ -17288,16 +19351,13 @@ if (!class_exists('TCPDF', false)) {
 								$linebeg = substr($pagebuff, $startlinepos, ($curpos - $startlinepos));
 								$tstart = substr($pagebuff, 0, $startlinepos);
 								$tend = substr($this->getPageBuffer($startlinepage), $curpos);
-								// remove line from previous page
+								// remove line start from previous page
 								$this->setPageBuffer($startlinepage, $tstart.''.$tend);
 								$pagebuff = $this->getPageBuffer($this->page);
 								$tstart = substr($pagebuff, 0, $this->cntmrk[$this->page]);
 								$tend = substr($pagebuff, $this->cntmrk[$this->page]);
 								// add line start to current page
 								$yshift = $minstartliney - $this->y;
-								if ($fontaligned) {
-									$yshift += ($curfontsize / $this->k);
-								}
 								$try = sprintf('1 0 0 1 0 %.3F cm', ($yshift * $this->k));
 								$this->setPageBuffer($this->page, $tstart."\nq\n".$try."\n".$linebeg."\nQ\n".$tend);
 								// shift the annotations and links
@@ -17320,128 +19380,94 @@ if (!class_exists('TCPDF', false)) {
 								$startlinepos = $this->cntmrk[$this->page];
 								$startlinepage = $this->page;
 								$startliney = $this->y;
-								$this->newline = false;
 							}
-							$this->y += ((($curfontsize * $this->cell_height_ratio / $this->k) + $curfontascent - $curfontdescent) / 2) - $imgh;
-							$minstartliney = min($this->y, $minstartliney);
-							$maxbottomliney = ($startliney + ($this->FontSize * $this->cell_height_ratio));
-						}
-					} elseif (isset($dom[$key]['fontname']) OR isset($dom[$key]['fontstyle']) OR isset($dom[$key]['fontsize'])) {
-						// account for different font size
-						$pfontname = $curfontname;
-						$pfontstyle = $curfontstyle;
-						$pfontsize = $curfontsize;
-						$fontname = isset($dom[$key]['fontname']) ? $dom[$key]['fontname'] : $curfontname;
-						$fontstyle = isset($dom[$key]['fontstyle']) ? $dom[$key]['fontstyle'] : $curfontstyle;
-						$fontsize = isset($dom[$key]['fontsize']) ? $dom[$key]['fontsize'] : $curfontsize;
-						$fontascent = $this->getFontAscent($fontname, $fontstyle, $fontsize);
-						$fontdescent = $this->getFontDescent($fontname, $fontstyle, $fontsize);
-						if (($fontname != $curfontname) OR ($fontstyle != $curfontstyle) OR ($fontsize != $curfontsize)) {
-							if (is_numeric($fontsize) AND ($fontsize >= 0)
-								AND is_numeric($curfontsize) AND ($curfontsize >= 0)
-								AND ($fontsize != $curfontsize) AND (!$this->newline)
-								AND ($key < ($maxel - 1))
-								) {
-								if ((!$this->newline) AND ($this->page > $startlinepage)) {
-									// fix lines splitted over two pages
-									if (isset($this->footerlen[$startlinepage])) {
-										$curpos = $this->pagelen[$startlinepage] - $this->footerlen[$startlinepage];
-									}
-									// line to be moved one page forward
-									$pagebuff = $this->getPageBuffer($startlinepage);
-									$linebeg = substr($pagebuff, $startlinepos, ($curpos - $startlinepos));
-									$tstart = substr($pagebuff, 0, $startlinepos);
-									$tend = substr($this->getPageBuffer($startlinepage), $curpos);
-									// remove line start from previous page
-									$this->setPageBuffer($startlinepage, $tstart.''.$tend);
-									$pagebuff = $this->getPageBuffer($this->page);
-									$tstart = substr($pagebuff, 0, $this->cntmrk[$this->page]);
-									$tend = substr($pagebuff, $this->cntmrk[$this->page]);
-									// add line start to current page
-									$yshift = $minstartliney - $this->y;
-									$try = sprintf('1 0 0 1 0 %.3F cm', ($yshift * $this->k));
-									$this->setPageBuffer($this->page, $tstart."\nq\n".$try."\n".$linebeg."\nQ\n".$tend);
-									// shift the annotations and links
-									if (isset($this->PageAnnots[$this->page])) {
-										$next_pask = count($this->PageAnnots[$this->page]);
-									} else {
-										$next_pask = 0;
-									}
-									if (isset($this->PageAnnots[$startlinepage])) {
-										foreach ($this->PageAnnots[$startlinepage] as $pak => $pac) {
-											if ($pak >= $pask) {
-												$this->PageAnnots[$this->page][] = $pac;
-												unset($this->PageAnnots[$startlinepage][$pak]);
-												$npak = count($this->PageAnnots[$this->page]) - 1;
-												$this->PageAnnots[$this->page][$npak]['y'] -= $yshift;
-											}
-										}
-									}
-									$pask = $next_pask;
-									$startlinepos = $this->cntmrk[$this->page];
-									$startlinepage = $this->page;
-									$startliney = $this->y;
-								}
-								if (!$dom[$key]['block']) {
-									$this->y += ((($curfontsize - $fontsize) * $this->cell_height_ratio / $this->k) + $curfontascent - $fontascent - $curfontdescent + $fontdescent) / 2;
-									if (($dom[$key]['value'] != 'sup') AND ($dom[$key]['value'] != 'sub')) {
-										$minstartliney = min($this->y, $minstartliney);
-										$maxbottomliney = max(($this->y + (($fontsize * $this->cell_height_ratio) / $this->k)), $maxbottomliney);
-									}
+							if (!isset($dom[$key]['line-height'])) {
+								$dom[$key]['line-height'] = $this->cell_height_ratio;
+							}
+							if (!$dom[$key]['block']) {
+								$this->y += (((($curfontsize * $this->cell_height_ratio ) - ($fontsize * $dom[$key]['line-height'])) / $this->k) + $curfontascent - $fontascent - $curfontdescent + $fontdescent) / 2;
+								if (($dom[$key]['value'] != 'sup') AND ($dom[$key]['value'] != 'sub')) {
+									$minstartliney = min($this->y, $minstartliney);
+									$maxbottomliney = max(($this->y + (($fontsize * $this->cell_height_ratio) / $this->k)), $maxbottomliney);
 								}
-								$fontaligned = true;
 							}
-							$this->SetFont($fontname, $fontstyle, $fontsize);
-							$this->lasth = $this->FontSize * $this->cell_height_ratio;
-							$curfontname = $fontname;
-							$curfontstyle = $fontstyle;
-							$curfontsize = $fontsize;
-							$curfontascent = $fontascent;
-							$curfontdescent = $fontdescent;
-						}
-					}
-					// set text rendering mode
-					$textstroke = isset($dom[$key]['stroke']) ? $dom[$key]['stroke'] : $this->textstrokewidth;
-					$textfill = isset($dom[$key]['fill']) ? $dom[$key]['fill'] : (($this->textrendermode % 2) == 0);
-					$textclip = isset($dom[$key]['clip']) ? $dom[$key]['clip'] : ($this->textrendermode > 3);
-					$this->setTextRenderingMode($textstroke, $textfill, $textclip);
-					if (($plalign == 'J') AND $dom[$key]['block']) {
-						$plalign = '';
-					}
-					// get current position on page buffer
-					$curpos = $this->pagelen[$startlinepage];
-					if (isset($dom[$key]['bgcolor']) AND ($dom[$key]['bgcolor'] !== false)) {
-						$this->SetFillColorArray($dom[$key]['bgcolor']);
-						$wfill = true;
-					} else {
-						$wfill = $fill | false;
-					}
-					if (isset($dom[$key]['fgcolor']) AND ($dom[$key]['fgcolor'] !== false)) {
-						$this->SetTextColorArray($dom[$key]['fgcolor']);
-					}
-					if (isset($dom[$key]['strokecolor']) AND ($dom[$key]['strokecolor'] !== false)) {
-						$this->SetDrawColorArray($dom[$key]['strokecolor']);
-					}
-					if (isset($dom[$key]['align'])) {
-						$lalign = $dom[$key]['align'];
-					}
-					if ($this->empty_string($lalign)) {
-						$lalign = $align;
-					}
-				}
-				// align lines
-				if ($this->newline AND (strlen($dom[$key]['value']) > 0) AND ($dom[$key]['value'] != 'td') AND ($dom[$key]['value'] != 'th')) {
-					$newline = true;
-					$fontaligned = false;
-					// we are at the beginning of a new line
-					if (isset($startlinex)) {
-						$yshift = $minstartliney - $startliney;
-						if (($yshift > 0) OR ($this->page > $startlinepage)) {
-							$yshift = 0;
+							$this->cell_height_ratio = $dom[$key]['line-height'];
+							$fontaligned = true;
+						}
+						$this->SetFont($fontname, $fontstyle, $fontsize);
+						// reset row height
+						$this->resetLastH();
+						$curfontname = $fontname;
+						$curfontstyle = $fontstyle;
+						$curfontsize = $fontsize;
+						$curfontascent = $fontascent;
+						$curfontdescent = $fontdescent;
+					}
+				}
+				// set text rendering mode
+				$textstroke = isset($dom[$key]['stroke']) ? $dom[$key]['stroke'] : $this->textstrokewidth;
+				$textfill = isset($dom[$key]['fill']) ? $dom[$key]['fill'] : (($this->textrendermode % 2) == 0);
+				$textclip = isset($dom[$key]['clip']) ? $dom[$key]['clip'] : ($this->textrendermode > 3);
+				$this->setTextRenderingMode($textstroke, $textfill, $textclip);
+				if (isset($dom[$key]['font-stretch']) AND ($dom[$key]['font-stretch'] !== false)) {
+					$this->setFontStretching($dom[$key]['font-stretch']);
+				}
+				if (isset($dom[$key]['letter-spacing']) AND ($dom[$key]['letter-spacing'] !== false)) {
+					$this->setFontSpacing($dom[$key]['letter-spacing']);
+				}
+				if (($plalign == 'J') AND $dom[$key]['block']) {
+					$plalign = '';
+				}
+				// get current position on page buffer
+				$curpos = $this->pagelen[$startlinepage];
+				if (isset($dom[$key]['bgcolor']) AND ($dom[$key]['bgcolor'] !== false)) {
+					$this->SetFillColorArray($dom[$key]['bgcolor']);
+					$wfill = true;
+				} else {
+					$wfill = $fill | false;
+				}
+				if (isset($dom[$key]['fgcolor']) AND ($dom[$key]['fgcolor'] !== false)) {
+					$this->SetTextColorArray($dom[$key]['fgcolor']);
+				}
+				if (isset($dom[$key]['strokecolor']) AND ($dom[$key]['strokecolor'] !== false)) {
+					$this->SetDrawColorArray($dom[$key]['strokecolor']);
+				}
+				if (isset($dom[$key]['align'])) {
+					$lalign = $dom[$key]['align'];
+				}
+				if ($this->empty_string($lalign)) {
+					$lalign = $align;
+				}
+			}
+			// align lines
+			if ($this->newline AND (strlen($dom[$key]['value']) > 0) AND ($dom[$key]['value'] != 'td') AND ($dom[$key]['value'] != 'th')) {
+				$newline = true;
+				$fontaligned = false;
+				// we are at the beginning of a new line
+				if (isset($startlinex)) {
+					$yshift = $minstartliney - $startliney;
+					if (($yshift > 0) OR ($this->page > $startlinepage)) {
+						$yshift = 0;
+					}
+					$t_x = 0;
+					// the last line must be shifted to be aligned as requested
+					$linew = abs($this->endlinex - $startlinex);
+					if ($this->inxobj) {
+						// we are inside an XObject template
+						$pstart = substr($this->xobjects[$this->xobjid]['outdata'], 0, $startlinepos);
+						if (isset($opentagpos)) {
+							$midpos = $opentagpos;
+						} else {
+							$midpos = 0;
+						}
+						if ($midpos > 0) {
+							$pmid = substr($this->xobjects[$this->xobjid]['outdata'], $startlinepos, ($midpos - $startlinepos));
+							$pend = substr($this->xobjects[$this->xobjid]['outdata'], $midpos);
+						} else {
+							$pmid = substr($this->xobjects[$this->xobjid]['outdata'], $startlinepos);
+							$pend = '';
 						}
-						$t_x = 0;
-						// the last line must be shifted to be aligned as requested
-						$linew = abs($this->endlinex - $startlinex);
+					} else {
 						$pstart = substr($this->getPageBuffer($startlinepage), 0, $startlinepos);
 						if (isset($opentagpos) AND isset($this->footerlen[$startlinepage]) AND (!$this->InFooter)) {
 							$this->footerpos[$startlinepage] = $this->pagelen[$startlinepage] - $this->footerlen[$startlinepage];
@@ -17461,279 +19487,328 @@ if (!class_exists('TCPDF', false)) {
 							$pmid = substr($this->getPageBuffer($startlinepage), $startlinepos);
 							$pend = '';
 						}
-						if ((isset($plalign) AND ((($plalign == 'C') OR ($plalign == 'J') OR (($plalign == 'R') AND (!$this->rtl)) OR (($plalign == 'L') AND ($this->rtl))))) OR ($yshift < 0)) {
-							// calculate shifting amount
-							$tw = $w;
-							if (($plalign == 'J') AND $this->isRTLTextDir() AND ($this->num_columns > 1)) {
-								$tw += $this->cMargin;
-							}
-							if ($this->lMargin != $prevlMargin) {
-								$tw += ($prevlMargin - $this->lMargin);
-							}
-							if ($this->rMargin != $prevrMargin) {
-								$tw += ($prevrMargin - $this->rMargin);
-							}
-							$one_space_width = $this->GetStringWidth(chr(32));
-							$mdiff = abs($tw - $linew);
-							if ($plalign == 'C') {
-								if ($this->rtl) {
-									$t_x = -($mdiff / 2);
+					}
+					if ((isset($plalign) AND ((($plalign == 'C') OR ($plalign == 'J') OR (($plalign == 'R') AND (!$this->rtl)) OR (($plalign == 'L') AND ($this->rtl)))))) {
+						// calculate shifting amount
+						$tw = $w;
+						if (($plalign == 'J') AND $this->isRTLTextDir() AND ($this->num_columns > 1)) {
+							$tw += $this->cell_padding['R'];
+						}
+						if ($this->lMargin != $prevlMargin) {
+							$tw += ($prevlMargin - $this->lMargin);
+						}
+						if ($this->rMargin != $prevrMargin) {
+							$tw += ($prevrMargin - $this->rMargin);
+						}
+						$one_space_width = $this->GetStringWidth(chr(32));
+						$no = 0; // number of spaces on a line contained on a single block
+						if ($this->isRTLTextDir()) { // RTL
+							// remove left space if exist
+							$pos1 = $this->revstrpos($pmid, '[(');
+							if ($pos1 > 0) {
+								$pos1 = intval($pos1);
+								if ($this->isUnicodeFont()) {
+									$pos2 = intval($this->revstrpos($pmid, '[('.chr(0).chr(32)));
+									$spacelen = 2;
 								} else {
-									$t_x = ($mdiff / 2);
+									$pos2 = intval($this->revstrpos($pmid, '[('.chr(32)));
+									$spacelen = 1;
 								}
-							} elseif (($plalign == 'R') AND (!$this->rtl)) {
-								// right alignment on LTR document
-								if (intval($this->revstrpos($pmid, ')]')) == (intval($this->revstrpos($pmid, ' )]')) + 1)) {
-									// remove last space (if any)
-									$linew -= $one_space_width;
-									$mdiff = abs($tw - $linew);
+								if ($pos1 == $pos2) {
+									$pmid = substr($pmid, 0, ($pos1 + 2)).substr($pmid, ($pos1 + 2 + $spacelen));
+									if (substr($pmid, $pos1, 4) == '[()]') {
+										$linew -= $one_space_width;
+									} elseif ($pos1 == strpos($pmid, '[(')) {
+										$no = 1;
+									}
 								}
-								$t_x = $mdiff;
-							} elseif (($plalign == 'L') AND ($this->rtl)) {
-								// left alignment on RTL document
-								if (($this->revstrpos($pmid, '[(') > 0) AND ((intval($this->revstrpos($pmid, '[( ')) == intval($this->revstrpos($pmid, '[('))) OR (intval($this->revstrpos($pmid, '[('.chr(0).chr(32))) == intval($this->revstrpos($pmid, '[('))))) {
-									// remove first space (if any)
-									$linew -= $one_space_width;
+							}
+						} else { // LTR
+							// remove right space if exist
+							$pos1 = $this->revstrpos($pmid, ')]');
+							if ($pos1 > 0) {
+								$pos1 = intval($pos1);
+								if ($this->isUnicodeFont()) {
+									$pos2 = intval($this->revstrpos($pmid, chr(0).chr(32).')]')) + 2;
+									$spacelen = 2;
+								} else {
+									$pos2 = intval($this->revstrpos($pmid, chr(32).')]')) + 1;
+									$spacelen = 1;
 								}
-								if ((strpos($pmid, '[(') > 0) AND (intval(strpos($pmid, '[(')) == (intval($this->revstrpos($pmid, '[('))))) {
-									// remove last space (if any)
+								if ($pos1 == $pos2) {
+									$pmid = substr($pmid, 0, ($pos1 - $spacelen)).substr($pmid, $pos1);
 									$linew -= $one_space_width;
-									if (($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) {
-										$linew -= $one_space_width;
-									}
 								}
-								$mdiff = abs($tw - $linew);
+							}
+						}
+						$mdiff = ($tw - $linew);
+						if ($plalign == 'C') {
+							if ($this->rtl) {
+								$t_x = -($mdiff / 2);
+							} else {
+								$t_x = ($mdiff / 2);
+							}
+						} elseif ($plalign == 'R') {
+							// right alignment on LTR document
+							$t_x = $mdiff;
+						} elseif ($plalign == 'L') {
+							// left alignment on RTL document
+							$t_x = -$mdiff;
+						} elseif (($plalign == 'J') AND ($plalign == $lalign)) {
+							// Justification
+							if ($this->isRTLTextDir()) {
+								// align text on the left
 								$t_x = -$mdiff;
-							} elseif (($plalign == 'J') AND ($plalign == $lalign)) {
-								// Justification
+							}
+							$ns = 0; // number of spaces
+							$pmidtemp = $pmid;
+							// escape special characters
+							$pmidtemp = preg_replace('/[\\\][\(]/x', '\\#!#OP#!#', $pmidtemp);
+							$pmidtemp = preg_replace('/[\\\][\)]/x', '\\#!#CP#!#', $pmidtemp);
+							// search spaces
+							if (preg_match_all('/\[\(([^\)]*)\)\]/x', $pmidtemp, $lnstring, PREG_PATTERN_ORDER)) {
+								$spacestr = $this->getSpaceString();
+								$maxkk = count($lnstring[1]) - 1;
+								for ($kk=0; $kk <= $maxkk; ++$kk) {
+									// restore special characters
+									$lnstring[1][$kk] = str_replace('#!#OP#!#', '(', $lnstring[1][$kk]);
+									$lnstring[1][$kk] = str_replace('#!#CP#!#', ')', $lnstring[1][$kk]);
+									// store number of spaces on the strings
+									$lnstring[2][$kk] = substr_count($lnstring[1][$kk], $spacestr);
+									// count total spaces on line
+									$ns += $lnstring[2][$kk];
+									$lnstring[3][$kk] = $ns;
+								}
+								if ($ns == 0) {
+									$ns = 1;
+								}
+								// calculate additional space to add to each existing space
+								$spacewidth = ($mdiff / ($ns - $no)) * $this->k;
+								$spacewidthu = -1000 * ($mdiff + (($ns + $no) * $one_space_width)) / $ns / $this->FontSize;
+								if ($this->font_spacing != 0) {
+									// fixed spacing mode
+									$osw = -1000 * $this->font_spacing / $this->FontSize;
+									$spacewidthu += $osw;
+								}
+								$nsmax = $ns;
+								$ns = 0;
+								reset($lnstring);
+								$offset = 0;
+								$strcount = 0;
+								$prev_epsposbeg = 0;
+								$textpos = 0;
 								if ($this->isRTLTextDir()) {
-									$t_x = $this->lMargin - $this->endlinex + $this->cMargin;
+									$textpos = $this->wPt;
 								}
-								$no = 0; // spaces without trim
-								$ns = 0; // spaces with trim
-								$pmidtemp = $pmid;
-								// escape special characters
-								$pmidtemp = preg_replace('/[\\\][\(]/x', '\\#!#OP#!#', $pmidtemp);
-								$pmidtemp = preg_replace('/[\\\][\)]/x', '\\#!#CP#!#', $pmidtemp);
-								// search spaces
-								if (preg_match_all('/\[\(([^\)]*)\)\]/x', $pmidtemp, $lnstring, PREG_PATTERN_ORDER)) {
-									$spacestr = $this->getSpaceString();
-									$maxkk = count($lnstring[1]) - 1;
-									for ($kk=0; $kk <= $maxkk; ++$kk) {
-										// restore special characters
-										$lnstring[1][$kk] = str_replace('#!#OP#!#', '(', $lnstring[1][$kk]);
-										$lnstring[1][$kk] = str_replace('#!#CP#!#', ')', $lnstring[1][$kk]);
-										if ($kk == $maxkk) {
-											if ($this->isRTLTextDir()) {
-												$tvalue = ltrim($lnstring[1][$kk]);
-											} else {
-												$tvalue = rtrim($lnstring[1][$kk]);
-											}
-										} else {
-											$tvalue = $lnstring[1][$kk];
+								global $spacew;
+								while (preg_match('/([0-9\.\+\-]*)[\s](Td|cm|m|l|c|re)[\s]/x', $pmid, $strpiece, PREG_OFFSET_CAPTURE, $offset) == 1) {
+									// check if we are inside a string section '[( ... )]'
+									$stroffset = strpos($pmid, '[(', $offset);
+									if (($stroffset !== false) AND ($stroffset <= $strpiece[2][1])) {
+										// set offset to the end of string section
+										$offset = strpos($pmid, ')]', $stroffset);
+										while (($offset !== false) AND ($pmid{($offset - 1)} == '\\')) {
+											$offset = strpos($pmid, ')]', ($offset + 1));
 										}
-										// store number of spaces on the strings
-										$lnstring[2][$kk] = substr_count($lnstring[1][$kk], $spacestr);
-										$lnstring[3][$kk] = substr_count($tvalue, $spacestr);
-										// count total spaces on line
-										$no += $lnstring[2][$kk];
-										$ns += $lnstring[3][$kk];
-										$lnstring[4][$kk] = $no;
-										$lnstring[5][$kk] = $ns;
-									}
-									if ($this->isRTLTextDir()) {
-										$t_x = $this->lMargin - $this->endlinex + $this->cMargin - (($no - $ns) * $one_space_width);
+										if ($offset === false) {
+											$this->Error('HTML Justification: malformed PDF code.');
+										}
+										continue;
 									}
-									// calculate additional space to add to each space
-									$spacelen = $one_space_width;
-									$spacewidth = ((($tw - $linew) + (($no - $ns) * $spacelen)) / ($ns?$ns:1)) * $this->k;
-									$spacewidthu = -1000 * (($tw - $linew) + ($no * $spacelen)) / ($ns?$ns:1) / $this->FontSize;
-									$nsmax = $ns;
-									$ns = 0;
-									reset($lnstring);
-									$offset = 0;
-									$strcount = 0;
-									$prev_epsposbeg = 0;
-									$textpos = 0;
 									if ($this->isRTLTextDir()) {
-										$textpos = $this->wPt;
+										$spacew = ($spacewidth * ($nsmax - $ns));
+									} else {
+										$spacew = ($spacewidth * $ns);
 									}
-									global $spacew;
-									while (preg_match('/([0-9\.\+\-]*)[\s](Td|cm|m|l|c|re)[\s]/x', $pmid, $strpiece, PREG_OFFSET_CAPTURE, $offset) == 1) {
-										// check if we are inside a string section '[( ... )]'
-										$stroffset = strpos($pmid, '[(', $offset);
-										if (($stroffset !== false) AND ($stroffset <= $strpiece[2][1])) {
-											// set offset to the end of string section
-											$offset = strpos($pmid, ')]', $stroffset);
-											while (($offset !== false) AND ($pmid{($offset - 1)} == '\\')) {
-												$offset = strpos($pmid, ')]', ($offset + 1));
-											}
-											if ($offset === false) {
-												$this->Error('HTML Justification: malformed PDF code.');
-											}
-											continue;
-										}
-										if ($this->isRTLTextDir()) {
-											$spacew = ($spacewidth * ($nsmax - $ns));
-										} else {
-											$spacew = ($spacewidth * $ns);
-										}
-										$offset = $strpiece[2][1] + strlen($strpiece[2][0]);
-										$epsposbeg = strpos($pmid, 'q'.$this->epsmarker, $offset);
-										$epsposend = strpos($pmid, $this->epsmarker.'Q', $offset) + strlen($this->epsmarker.'Q');
-										if ((($epsposbeg > 0) AND ($epsposend > 0) AND ($offset > $epsposbeg) AND ($offset < $epsposend))
-											OR (($epsposbeg === false) AND ($epsposend > 0) AND ($offset < $epsposend))) {
-											// shift EPS images
-											$trx = sprintf('1 0 0 1 %.3F 0 cm', $spacew);
-											$epsposbeg = strpos($pmid, 'q'.$this->epsmarker, ($prev_epsposbeg - 6));
-											$pmid_b = substr($pmid, 0, $epsposbeg);
-											$pmid_m = substr($pmid, $epsposbeg, ($epsposend - $epsposbeg));
-											$pmid_e = substr($pmid, $epsposend);
-											$pmid = $pmid_b."\nq\n".$trx."\n".$pmid_m."\nQ\n".$pmid_e;
-											$offset = $epsposend;
-											continue;
+									$offset = $strpiece[2][1] + strlen($strpiece[2][0]);
+									$epsposbeg = strpos($pmid, 'q'.$this->epsmarker, $offset);
+									$epsposend = strpos($pmid, $this->epsmarker.'Q', $offset) + strlen($this->epsmarker.'Q');
+									if ((($epsposbeg > 0) AND ($epsposend > 0) AND ($offset > $epsposbeg) AND ($offset < $epsposend))
+										OR (($epsposbeg === false) AND ($epsposend > 0) AND ($offset < $epsposend))) {
+										// shift EPS images
+										$trx = sprintf('1 0 0 1 %.3F 0 cm', $spacew);
+										$epsposbeg = strpos($pmid, 'q'.$this->epsmarker, ($prev_epsposbeg - 6));
+										$pmid_b = substr($pmid, 0, $epsposbeg);
+										$pmid_m = substr($pmid, $epsposbeg, ($epsposend - $epsposbeg));
+										$pmid_e = substr($pmid, $epsposend);
+										$pmid = $pmid_b."\nq\n".$trx."\n".$pmid_m."\nQ\n".$pmid_e;
+										$offset = $epsposend;
+										continue;
 
-										}
-										$prev_epsposbeg = $epsposbeg;
-										$currentxpos = 0;
-										// shift blocks of code
-										switch ($strpiece[2][0]) {
-											case 'Td':
-											case 'cm':
-											case 'm':
-											case 'l': {
-												// get current X position
-												preg_match('/([0-9\.\+\-]*)[\s]('.$strpiece[1][0].')[\s]('.$strpiece[2][0].')([\s]*)/x', $pmid, $xmatches);
-												$currentxpos = $xmatches[1];
-												$textpos = $currentxpos;
-												if (($strcount <= $maxkk) AND ($strpiece[2][0] == 'Td')) {
-													if ($strcount == $maxkk) {
-														if ($this->isRTLTextDir()) {
-															$tvalue = $lnstring[1][$strcount];
-														} else {
-															$tvalue = rtrim($lnstring[1][$strcount]);
-														}
-													} else {
-														$tvalue = $lnstring[1][$strcount];
-													}
-													$ns += substr_count($tvalue, $spacestr);
-													++$strcount;
-												}
+									}
+									$prev_epsposbeg = $epsposbeg;
+									$currentxpos = 0;
+									// shift blocks of code
+									switch ($strpiece[2][0]) {
+										case 'Td':
+										case 'cm':
+										case 'm':
+										case 'l': {
+											// get current X position
+											preg_match('/([0-9\.\+\-]*)[\s]('.$strpiece[1][0].')[\s]('.$strpiece[2][0].')([\s]*)/x', $pmid, $xmatches);
+											$currentxpos = $xmatches[1];
+											$textpos = $currentxpos;
+											if (($strcount <= $maxkk) AND ($strpiece[2][0] == 'Td')) {
+												$ns = $lnstring[3][$strcount];
 												if ($this->isRTLTextDir()) {
 													$spacew = ($spacewidth * ($nsmax - $ns));
 												}
-												// justify block
-												$pmid = preg_replace_callback('/([0-9\.\+\-]*)[\s]('.$strpiece[1][0].')[\s]('.$strpiece[2][0].')([\s]*)/x',
-													create_function('$matches', 'global $spacew;
-													$newx = sprintf("%.2F",(floatval($matches[1]) + $spacew));
-													return "".$newx." ".$matches[2]." x*#!#*x".$matches[3].$matches[4];'), $pmid, 1);
-												break;
+												++$strcount;
+											}
+											// justify block
+											$pmid = preg_replace_callback('/([0-9\.\+\-]*)[\s]('.$strpiece[1][0].')[\s]('.$strpiece[2][0].')([\s]*)/x',
+												create_function('$matches', 'global $spacew;
+												$newx = sprintf("%.2F",(floatval($matches[1]) + $spacew));
+												return "".$newx." ".$matches[2]." x*#!#*x".$matches[3].$matches[4];'), $pmid, 1);
+											break;
+										}
+										case 're': {
+											// justify block
+											if (!$this->empty_string($this->lispacer)) {
+												$this->lispacer = '';
+												continue;
 											}
-											case 're': {
-												// justify block
-												if (!$this->empty_string($this->lispacer)) {
-													$this->lispacer = '';
-													continue;
+											preg_match('/([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]('.$strpiece[1][0].')[\s](re)([\s]*)/x', $pmid, $xmatches);
+											$currentxpos = $xmatches[1];
+											global $x_diff, $w_diff;
+											$x_diff = 0;
+											$w_diff = 0;
+											if ($this->isRTLTextDir()) { // RTL
+												if ($currentxpos < $textpos) {
+													$x_diff = ($spacewidth * ($nsmax - $lnstring[3][$strcount]));
+													$w_diff = ($spacewidth * $lnstring[2][$strcount]);
+												} else {
+													if ($strcount > 0) {
+														$x_diff = ($spacewidth * ($nsmax - $lnstring[3][($strcount - 1)]));
+														$w_diff = ($spacewidth * $lnstring[2][($strcount - 1)]);
+													}
 												}
-												preg_match('/([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]('.$strpiece[1][0].')[\s](re)([\s]*)/x', $pmid, $xmatches);
-												$currentxpos = $xmatches[1];
-												global $x_diff, $w_diff;
-												$x_diff = 0;
-												$w_diff = 0;
-												if ($this->isRTLTextDir()) { // RTL
-													if ($currentxpos < $textpos) {
-														$x_diff = ($spacewidth * ($nsmax - $lnstring[5][$strcount]));
-														$w_diff = ($spacewidth * $lnstring[3][$strcount]);
-													} else {
-														if ($strcount > 0) {
-															$x_diff = ($spacewidth * ($nsmax - $lnstring[5][($strcount - 1)]));
-															$w_diff = ($spacewidth * $lnstring[3][($strcount - 1)]);
-														}
+											} else { // LTR
+												if ($currentxpos > $textpos) {
+													if ($strcount > 0) {
+														$x_diff = ($spacewidth * $lnstring[3][($strcount - 1)]);
 													}
-												} else { // LTR
-													if ($currentxpos > $textpos) {
-														if ($strcount > 0) {
-															$x_diff = ($spacewidth * $lnstring[4][($strcount - 1)]);
-														}
-														$w_diff = ($spacewidth * $lnstring[3][$strcount]);
-													} else {
-														if ($strcount > 1) {
-															$x_diff = ($spacewidth * $lnstring[4][($strcount - 2)]);
-														}
-														if ($strcount > 0) {
-															$w_diff = ($spacewidth * $lnstring[3][($strcount - 1)]);
-														}
+													$w_diff = ($spacewidth * $lnstring[2][$strcount]);
+												} else {
+													if ($strcount > 1) {
+														$x_diff = ($spacewidth * $lnstring[3][($strcount - 2)]);
+													}
+													if ($strcount > 0) {
+														$w_diff = ($spacewidth * $lnstring[2][($strcount - 1)]);
 													}
 												}
-												$pmid = preg_replace_callback('/('.$xmatches[1].')[\s]('.$xmatches[2].')[\s]('.$xmatches[3].')[\s]('.$strpiece[1][0].')[\s](re)([\s]*)/x',
-													create_function('$matches', 'global $x_diff, $w_diff;
-													$newx = sprintf("%.2F",(floatval($matches[1]) + $x_diff));
-													$neww = sprintf("%.2F",(floatval($matches[3]) + $w_diff));
-													return "".$newx." ".$matches[2]." ".$neww." ".$matches[4]." x*#!#*x".$matches[5].$matches[6];'), $pmid, 1);
-												break;
 											}
-											case 'c': {
-												// get current X position
-												preg_match('/([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]('.$strpiece[1][0].')[\s](c)([\s]*)/x', $pmid, $xmatches);
-												$currentxpos = $xmatches[1];
-												// justify block
-												$pmid = preg_replace_callback('/('.$xmatches[1].')[\s]('.$xmatches[2].')[\s]('.$xmatches[3].')[\s]('.$xmatches[4].')[\s]('.$xmatches[5].')[\s]('.$strpiece[1][0].')[\s](c)([\s]*)/x',
-													create_function('$matches', 'global $spacew;
-													$newx1 = sprintf("%.3F",(floatval($matches[1]) + $spacew));
-													$newx2 = sprintf("%.3F",(floatval($matches[3]) + $spacew));
-													$newx3 = sprintf("%.3F",(floatval($matches[5]) + $spacew));
-													return "".$newx1." ".$matches[2]." ".$newx2." ".$matches[4]." ".$newx3." ".$matches[6]." x*#!#*x".$matches[7].$matches[8];'), $pmid, 1);
+											$pmid = preg_replace_callback('/('.$xmatches[1].')[\s]('.$xmatches[2].')[\s]('.$xmatches[3].')[\s]('.$strpiece[1][0].')[\s](re)([\s]*)/x',
+												create_function('$matches', 'global $x_diff, $w_diff;
+												$newx = sprintf("%.2F",(floatval($matches[1]) + $x_diff));
+												$neww = sprintf("%.2F",(floatval($matches[3]) + $w_diff));
+												return "".$newx." ".$matches[2]." ".$neww." ".$matches[4]." x*#!#*x".$matches[5].$matches[6];'), $pmid, 1);
+											break;
+										}
+										case 'c': {
+											// get current X position
+											preg_match('/([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]('.$strpiece[1][0].')[\s](c)([\s]*)/x', $pmid, $xmatches);
+											$currentxpos = $xmatches[1];
+											// justify block
+											$pmid = preg_replace_callback('/('.$xmatches[1].')[\s]('.$xmatches[2].')[\s]('.$xmatches[3].')[\s]('.$xmatches[4].')[\s]('.$xmatches[5].')[\s]('.$strpiece[1][0].')[\s](c)([\s]*)/x',
+												create_function('$matches', 'global $spacew;
+												$newx1 = sprintf("%.3F",(floatval($matches[1]) + $spacew));
+												$newx2 = sprintf("%.3F",(floatval($matches[3]) + $spacew));
+												$newx3 = sprintf("%.3F",(floatval($matches[5]) + $spacew));
+												return "".$newx1." ".$matches[2]." ".$newx2." ".$matches[4]." ".$newx3." ".$matches[6]." x*#!#*x".$matches[7].$matches[8];'), $pmid, 1);
+											break;
+										}
+									}
+									// shift the annotations and links
+									$cxpos = ($currentxpos / $this->k);
+									$lmpos = ($this->lMargin + $this->cell_padding['L'] + $this->feps);
+									if ($this->inxobj) {
+										// we are inside an XObject template
+										foreach ($this->xobjects[$this->xobjid]['annotations'] as $pak => $pac) {
+											if (($pac['y'] >= $minstartliney) AND (($pac['x'] * $this->k) >= ($currentxpos - $this->feps)) AND (($pac['x'] * $this->k) <= ($currentxpos + $this->feps))) {
+												if ($cxpos > $lmpos) {
+													$this->xobjects[$this->xobjid]['annotations'][$pak]['x'] += ($spacew / $this->k);
+													$this->xobjects[$this->xobjid]['annotations'][$pak]['w'] += (($spacewidth * $pac['numspaces']) / $this->k);
+												} else {
+													$this->xobjects[$this->xobjid]['annotations'][$pak]['w'] += (($spacewidth * $pac['numspaces']) / $this->k);
+												}
 												break;
 											}
 										}
-										// shift the annotations and links
-										if (isset($this->PageAnnots[$this->page])) {
-											$cxpos = ($currentxpos / $this->k);
-											$lmpos = ($this->lMargin + $this->cMargin + $this->feps);
-											foreach ($this->PageAnnots[$this->page] as $pak => $pac) {
-												if (($pac['y'] >= $minstartliney) AND (($pac['x'] * $this->k) >= ($currentxpos - $this->feps)) AND (($pac['x'] * $this->k) <= ($currentxpos + $this->feps))) {
-													if ($cxpos > $lmpos) {
-														$this->PageAnnots[$this->page][$pak]['x'] += (($spacew - $one_space_width) / $this->k);
-														$this->PageAnnots[$this->page][$pak]['w'] += (($spacewidth * $pac['numspaces']) / $this->k);
-													} else {
-														$this->PageAnnots[$this->page][$pak]['w'] += ((($spacewidth * $pac['numspaces']) - $one_space_width) / $this->k);
-													}
-													break;
+									} elseif (isset($this->PageAnnots[$this->page])) {
+										foreach ($this->PageAnnots[$this->page] as $pak => $pac) {
+											if (($pac['y'] >= $minstartliney) AND (($pac['x'] * $this->k) >= ($currentxpos - $this->feps)) AND (($pac['x'] * $this->k) <= ($currentxpos + $this->feps))) {
+												if ($cxpos > $lmpos) {
+													$this->PageAnnots[$this->page][$pak]['x'] += ($spacew / $this->k);
+													$this->PageAnnots[$this->page][$pak]['w'] += (($spacewidth * $pac['numspaces']) / $this->k);
+												} else {
+													$this->PageAnnots[$this->page][$pak]['w'] += (($spacewidth * $pac['numspaces']) / $this->k);
 												}
+												break;
 											}
 										}
-									} // end of while
-									// remove markers
-									$pmid = str_replace('x*#!#*x', '', $pmid);
-									if (($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) {
-										// multibyte characters
-										$spacew = $spacewidthu;
-										$pmidtemp = $pmid;
-										// escape special characters
-										$pmidtemp = preg_replace('/[\\\][\(]/x', '\\#!#OP#!#', $pmidtemp);
-										$pmidtemp = preg_replace('/[\\\][\)]/x', '\\#!#CP#!#', $pmidtemp);
-										$pmid = preg_replace_callback("/\[\(([^\)]*)\)\]/x",
-													create_function('$matches', 'global $spacew;
-													$matches[1] = str_replace("#!#OP#!#", "(", $matches[1]);
-													$matches[1] = str_replace("#!#CP#!#", ")", $matches[1]);
-													return "[(".str_replace(chr(0).chr(32), ") ".sprintf("%.3F", $spacew)." (", $matches[1]).")]";'), $pmidtemp);
+									}
+								} // end of while
+								// remove markers
+								$pmid = str_replace('x*#!#*x', '', $pmid);
+								if ($this->isUnicodeFont()) {
+									// multibyte characters
+									$spacew = $spacewidthu;
+									if ($this->font_stretching != 100) {
+										// word spacing is affected by stretching
+										$spacew /= ($this->font_stretching / 100);
+									}
+									$pmidtemp = $pmid;
+									// escape special characters
+									$pmidtemp = preg_replace('/[\\\][\(]/x', '\\#!#OP#!#', $pmidtemp);
+									$pmidtemp = preg_replace('/[\\\][\)]/x', '\\#!#CP#!#', $pmidtemp);
+									$pmid = preg_replace_callback("/\[\(([^\)]*)\)\]/x",
+												create_function('$matches', 'global $spacew;
+												$matches[1] = str_replace("#!#OP#!#", "(", $matches[1]);
+												$matches[1] = str_replace("#!#CP#!#", ")", $matches[1]);
+												return "[(".str_replace(chr(0).chr(32), ") ".sprintf("%.3F", $spacew)." (", $matches[1]).")]";'), $pmidtemp);
+									if ($this->inxobj) {
+										// we are inside an XObject template
+										$this->xobjects[$this->xobjid]['outdata'] = $pstart."\n".$pmid."\n".$pend;
+									} else {
 										$this->setPageBuffer($startlinepage, $pstart."\n".$pmid."\n".$pend);
-										$endlinepos = strlen($pstart."\n".$pmid."\n");
+									}
+									$endlinepos = strlen($pstart."\n".$pmid."\n");
+								} else {
+									// non-unicode (single-byte characters)
+									if ($this->font_stretching != 100) {
+										// word spacing (Tw) is affected by stretching
+										$spacewidth /= ($this->font_stretching / 100);
+									}
+									$rs = sprintf('%.3F Tw', $spacewidth);
+									$pmid = preg_replace("/\[\(/x", $rs.' [(', $pmid);
+									if ($this->inxobj) {
+										// we are inside an XObject template
+										$this->xobjects[$this->xobjid]['outdata'] = $pstart."\n".$pmid."\nBT 0 Tw ET\n".$pend;
 									} else {
-										// non-unicode (single-byte characters)
-										$rs = sprintf('%.3F Tw', $spacewidth);
-										$pmid = preg_replace("/\[\(/x", $rs.' [(', $pmid);
 										$this->setPageBuffer($startlinepage, $pstart."\n".$pmid."\nBT 0 Tw ET\n".$pend);
-										$endlinepos = strlen($pstart."\n".$pmid."\nBT 0 Tw ET\n");
 									}
+									$endlinepos = strlen($pstart."\n".$pmid."\nBT 0 Tw ET\n");
+								}
+							}
+						} // end of J
+					} // end if $startlinex
+					if (($t_x != 0) OR ($yshift < 0)) {
+						// shift the line
+						$trx = sprintf('1 0 0 1 %.3F %.3F cm', ($t_x * $this->k), ($yshift * $this->k));
+						$pstart .= "\nq\n".$trx."\n".$pmid."\nQ\n";
+						$endlinepos = strlen($pstart);
+						if ($this->inxobj) {
+							// we are inside an XObject template
+							$this->xobjects[$this->xobjid]['outdata'] = $pstart.$pend;
+							foreach ($this->xobjects[$this->xobjid]['annotations'] as $pak => $pac) {
+								if ($pak >= $pask) {
+									$this->xobjects[$this->xobjid]['annotations'][$pak]['x'] += $t_x;
+									$this->xobjects[$this->xobjid]['annotations'][$pak]['y'] -= $yshift;
 								}
-							} // end of J
-						} // end if $startlinex
-						if (($t_x != 0) OR ($yshift < 0)) {
-							// shift the line
-							$trx = sprintf('1 0 0 1 %.3F %.3F cm', ($t_x * $this->k), ($yshift * $this->k));
-							$this->setPageBuffer($startlinepage, $pstart."\nq\n".$trx."\n".$pmid."\nQ\n".$pend);
-							$endlinepos = strlen($pstart."\nq\n".$trx."\n".$pmid."\nQ\n");
+							}
+						} else {
+							$this->setPageBuffer($startlinepage, $pstart.$pend);
 							// shift the annotations and links
 							if (isset($this->PageAnnots[$this->page])) {
 								foreach ($this->PageAnnots[$this->page] as $pak => $pac) {
@@ -17743,346 +19818,405 @@ if (!class_exists('TCPDF', false)) {
 									}
 								}
 							}
-							$this->y -= $yshift;
 						}
+						$this->y -= $yshift;
 					}
-					$pbrk = $this->checkPageBreak($this->lasth);
-					$this->newline = false;
-					$startlinex = $this->x;
-					$startliney = $this->y;
-					if ($dom[$dom[$key]['parent']]['value'] == 'sup') {
-						$startliney -= ((0.3 * $this->FontSizePt) / $this->k);
-					} elseif ($dom[$dom[$key]['parent']]['value'] == 'sub') {
-						$startliney -= (($this->FontSizePt / 0.7) / $this->k);
-					} else {
-						$minstartliney = $startliney;
-						$maxbottomliney = ($this->y + (($fontsize * $this->cell_height_ratio) / $this->k));
-					}
-					$startlinepage = $this->page;
-					if (isset($endlinepos) AND (!$pbrk)) {
-						$startlinepos = $endlinepos;
-					} else {
-						if (!$this->InFooter) {
-							if (isset($this->footerlen[$this->page])) {
-								$this->footerpos[$this->page] = $this->pagelen[$this->page] - $this->footerlen[$this->page];
-							} else {
-								$this->footerpos[$this->page] = $this->pagelen[$this->page];
-							}
-							$startlinepos = $this->footerpos[$this->page];
+				}
+				$pbrk = $this->checkPageBreak($this->lasth);
+				$this->newline = false;
+				$startlinex = $this->x;
+				$startliney = $this->y;
+				if ($dom[$dom[$key]['parent']]['value'] == 'sup') {
+					$startliney -= ((0.3 * $this->FontSizePt) / $this->k);
+				} elseif ($dom[$dom[$key]['parent']]['value'] == 'sub') {
+					$startliney -= (($this->FontSizePt / 0.7) / $this->k);
+				} else {
+					$minstartliney = $startliney;
+					$maxbottomliney = ($this->y + (($fontsize * $this->cell_height_ratio) / $this->k));
+				}
+				$startlinepage = $this->page;
+				if (isset($endlinepos) AND (!$pbrk)) {
+					$startlinepos = $endlinepos;
+				} else {
+					if ($this->inxobj) {
+						// we are inside an XObject template
+						$startlinepos = strlen($this->xobjects[$this->xobjid]['outdata']);
+					} elseif (!$this->InFooter) {
+						if (isset($this->footerlen[$this->page])) {
+							$this->footerpos[$this->page] = $this->pagelen[$this->page] - $this->footerlen[$this->page];
 						} else {
-							$startlinepos = $this->pagelen[$this->page];
+							$this->footerpos[$this->page] = $this->pagelen[$this->page];
 						}
-					}
-					unset($endlinepos);
-					$plalign = $lalign;
-					if (isset($this->PageAnnots[$this->page])) {
-						$pask = count($this->PageAnnots[$this->page]);
+						$startlinepos = $this->footerpos[$this->page];
 					} else {
-						$pask = 0;
+						$startlinepos = $this->pagelen[$this->page];
 					}
+				}
+				unset($endlinepos);
+				$plalign = $lalign;
+				if (isset($this->PageAnnots[$this->page])) {
+					$pask = count($this->PageAnnots[$this->page]);
+				} else {
+					$pask = 0;
+				}
+				if (!($dom[$key]['tag'] AND !$dom[$key]['opening'] AND ($dom[$key]['value'] == 'table') AND ($this->emptypagemrk[$this->page] == $this->pagelen[$this->page]))) {
 					$this->SetFont($fontname, $fontstyle, $fontsize);
 					if ($wfill) {
 						$this->SetFillColorArray($this->bgcolor);
 					}
-				} // end newline
-				if (isset($opentagpos)) {
-					unset($opentagpos);
 				}
-				if ($dom[$key]['tag']) {
-					if ($dom[$key]['opening']) {
-						// get text indentation (if any)
-						if (isset($dom[$key]['text-indent']) AND $dom[$key]['block']) {
-							$this->textindent = $dom[$key]['text-indent'];
-							$this->newline = true;
+			} // end newline
+			if (isset($opentagpos)) {
+				unset($opentagpos);
+			}
+			if ($dom[$key]['tag']) {
+				if ($dom[$key]['opening']) {
+					// get text indentation (if any)
+					if (isset($dom[$key]['text-indent']) AND $dom[$key]['block']) {
+						$this->textindent = $dom[$key]['text-indent'];
+						$this->newline = true;
+					}
+					// table
+					if ($dom[$key]['value'] == 'table') {
+						// available page width
+						if ($this->rtl) {
+							$wtmp = $this->x - $this->lMargin;
+						} else {
+							$wtmp = $this->w - $this->rMargin - $this->x;
+						}
+						// get cell spacing
+						if (isset($dom[$key]['attribute']['cellspacing'])) {
+							$clsp = $this->getHTMLUnitToUnits($dom[$key]['attribute']['cellspacing'], 1, 'px');
+							$cellspacing = array('H' => $clsp, 'V' => $clsp);
+						} elseif (isset($dom[$key]['border-spacing'])) {
+							$cellspacing = $dom[$key]['border-spacing'];
+						} else {
+							$cellspacing = array('H' => 0, 'V' => 0);
+						}
+						// table width
+						if (isset($dom[$key]['width'])) {
+							$table_width = $this->getHTMLUnitToUnits($dom[$key]['width'], $wtmp, 'px');
+						} else {
+							$table_width = $wtmp;
+						}
+						$table_width -= (2 * $cellspacing['H']);
+						if (!$this->inthead) {
+							$this->y += $cellspacing['V'];
+						}
+						if ($this->rtl) {
+							$cellspacingx = -$cellspacing['H'];
+						} else {
+							$cellspacingx = $cellspacing['H'];
+						}
+						// total table width without cellspaces
+						$table_columns_width = ($table_width - ($cellspacing['H'] * ($dom[$key]['cols'] - 1)));
+						// minimum column width
+						$table_min_column_width = ($table_columns_width / $dom[$key]['cols']);
+						// array of custom column widths
+						$table_colwidths = array_fill(0, $dom[$key]['cols'], $table_min_column_width);
+					}
+					// table row
+					if ($dom[$key]['value'] == 'tr') {
+						// reset column counter
+						$colid = 0;
+					}
+					// table cell
+					if (($dom[$key]['value'] == 'td') OR ($dom[$key]['value'] == 'th')) {
+						$trid = $dom[$key]['parent'];
+						$table_el = $dom[$trid]['parent'];
+						if (!isset($dom[$table_el]['cols'])) {
+							$dom[$table_el]['cols'] = $dom[$trid]['cols'];
+						}
+						// store border info
+						$tdborder = 0;
+						if (isset($dom[$key]['border']) AND !empty($dom[$key]['border'])) {
+							$tdborder = $dom[$key]['border'];
+						}
+						$colspan = $dom[$key]['attribute']['colspan'];
+						$old_cell_padding = $this->cell_padding;
+						if (isset($dom[($dom[$trid]['parent'])]['attribute']['cellpadding'])) {
+							$crclpd = $this->getHTMLUnitToUnits($dom[($dom[$trid]['parent'])]['attribute']['cellpadding'], 1, 'px');
+							$current_cell_padding = array('L' => $crclpd, 'T' => $crclpd, 'R' => $crclpd, 'B' => $crclpd);
+						} elseif (isset($dom[($dom[$trid]['parent'])]['padding'])) {
+							$current_cell_padding = $dom[($dom[$trid]['parent'])]['padding'];
+						} else {
+							$current_cell_padding = array('L' => 0, 'T' => 0, 'R' => 0, 'B' => 0);
+						}
+						$this->cell_padding = $current_cell_padding;
+						if (isset($dom[$key]['height'])) {
+							// minimum cell height
+							$cellh = $this->getHTMLUnitToUnits($dom[$key]['height'], 0, 'px');
+						} else {
+							$cellh = 0;
 						}
-						// table
-						if ($dom[$key]['value'] == 'table') {
-							// available page width
-							if ($this->rtl) {
-								$wtmp = $this->x - $this->lMargin;
-							} else {
-								$wtmp = $this->w - $this->rMargin - $this->x;
-							}
-							if (isset($dom[$key]['attribute']['nested']) AND ($dom[$key]['attribute']['nested'] == 'true')) {
-								// add margin for nested tables
-								$wtmp -= $this->cMargin;
-							}
-							// table width
-							if (isset($dom[$key]['width'])) {
-								$table_width = $this->getHTMLUnitToUnits($dom[$key]['width'], $wtmp, 'px');
-							} else {
-								$table_width = $wtmp;
-							}
-							if (isset($dom[$key]['attribute']['cellspacing'])) {
-								$cellspacing = $this->getHTMLUnitToUnits($dom[$key]['attribute']['cellspacing'], 1, 'px');
-							} else {
-								$cellspacing = 0;
-							}
-							if ($this->rtl) {
-								$cellspacingx = -$cellspacing;
-							} else {
-								$cellspacingx = $cellspacing;
-							}
-							// total table width without cellspaces
-							$table_columns_width = ($table_width - ($cellspacing * ($dom[$key]['cols'] - 1)));
-							// minimum column width
-							$table_min_column_width = ($table_columns_width / $dom[$key]['cols']);
-							// array of custom column widths
-							$table_colwidths = array_fill(0, $dom[$key]['cols'], $table_min_column_width);
-						}
-						// table row
-						if ($dom[$key]['value'] == 'tr') {
-							// reset column counter
-							$colid = 0;
-						}
-						// table cell
-						if (($dom[$key]['value'] == 'td') OR ($dom[$key]['value'] == 'th')) {
-							$trid = $dom[$key]['parent'];
-							$table_el = $dom[$trid]['parent'];
-							if (!isset($dom[$table_el]['cols'])) {
-								$dom[$table_el]['cols'] = $dom[$trid]['cols'];
-							}
-							$colspan = $dom[$key]['attribute']['colspan'];
-							$oldmargin = $this->cMargin;
-							if (isset($dom[($dom[$trid]['parent'])]['attribute']['cellpadding'])) {
-								$currentcmargin = $this->getHTMLUnitToUnits($dom[($dom[$trid]['parent'])]['attribute']['cellpadding'], 1, 'px');
-							} else {
-								$currentcmargin = 0;
-							}
-							$this->cMargin = $currentcmargin;
-							if (isset($dom[$key]['width'])) {
-								// user specified width
-								$cellw = $this->getHTMLUnitToUnits($dom[$key]['width'], $table_columns_width, 'px');
-								$tmpcw = ($cellw / $colspan);
-								for ($i = 0; $i < $colspan; ++$i) {
-									$table_colwidths[($colid + $i)] = $tmpcw;
+						if (isset($dom[$key]['content'])) {
+							$cell_content = $dom[$key]['content'];
+						} else {
+							$cell_content = '&nbsp;';
+						}
+						$tagtype = $dom[$key]['value'];
+						$parentid = $key;
+						while (($key < $maxel) AND (!(($dom[$key]['tag']) AND (!$dom[$key]['opening']) AND ($dom[$key]['value'] == $tagtype) AND ($dom[$key]['parent'] == $parentid)))) {
+							// move $key index forward
+							++$key;
+						}
+						if (!isset($dom[$trid]['startpage'])) {
+							$dom[$trid]['startpage'] = $this->page;
+						} else {
+							$this->setPage($dom[$trid]['startpage']);
+						}
+						if (!isset($dom[$trid]['startcolumn'])) {
+							$dom[$trid]['startcolumn'] = $this->current_column;
+						} elseif ($this->current_column != $dom[$trid]['startcolumn']) {
+							$tmpx = $this->x;
+							$this->selectColumn($dom[$trid]['startcolumn']);
+							$this->x = $tmpx;
+						}
+						if (!isset($dom[$trid]['starty'])) {
+							$dom[$trid]['starty'] = $this->y;
+						} else {
+							$this->y = $dom[$trid]['starty'];
+						}
+						if (!isset($dom[$trid]['startx'])) {
+							$dom[$trid]['startx'] = $this->x;
+							$this->x += $cellspacingx;
+						} else {
+							$this->x += ($cellspacingx / 2);
+						}
+						if (isset($dom[$parentid]['attribute']['rowspan'])) {
+							$rowspan = intval($dom[$parentid]['attribute']['rowspan']);
+						} else {
+							$rowspan = 1;
+						}
+						// skip row-spanned cells started on the previous rows
+						if (isset($dom[$table_el]['rowspans'])) {
+							$rsk = 0;
+							$rskmax = count($dom[$table_el]['rowspans']);
+							while ($rsk < $rskmax) {
+								$trwsp = $dom[$table_el]['rowspans'][$rsk];
+								$rsstartx = $trwsp['startx'];
+								$rsendx = $trwsp['endx'];
+								// account for margin changes
+								if ($trwsp['startpage'] < $this->page) {
+									if (($this->rtl) AND ($this->pagedim[$this->page]['orm'] != $this->pagedim[$trwsp['startpage']]['orm'])) {
+										$dl = ($this->pagedim[$this->page]['orm'] - $this->pagedim[$trwsp['startpage']]['orm']);
+										$rsstartx -= $dl;
+										$rsendx -= $dl;
+									} elseif ((!$this->rtl) AND ($this->pagedim[$this->page]['olm'] != $this->pagedim[$trwsp['startpage']]['olm'])) {
+										$dl = ($this->pagedim[$this->page]['olm'] - $this->pagedim[$trwsp['startpage']]['olm']);
+										$rsstartx += $dl;
+										$rsendx += $dl;
+									}
 								}
-							} else {
-								// inherit column width
-								$cellw = 0;
-								for ($i = 0; $i < $colspan; ++$i) {
-									$cellw += $table_colwidths[($colid + $i)];
+								if (($trwsp['rowspan'] > 0)
+									AND ($rsstartx > ($this->x - $cellspacing['H'] - $current_cell_padding['L'] - $this->feps))
+									AND ($rsstartx < ($this->x + $cellspacing['H'] + $current_cell_padding['R'] + $this->feps))
+									AND (($trwsp['starty'] < ($this->y - $this->feps)) OR ($trwsp['startpage'] < $this->page) OR ($trwsp['startcolumn'] < $this->current_column))) {
+									// set the starting X position of the current cell
+									$this->x = $rsendx + $cellspacingx;
+									// increment column indicator
+									$colid += $trwsp['colspan'];
+									if (($trwsp['rowspan'] == 1)
+										AND (isset($dom[$trid]['endy']))
+										AND (isset($dom[$trid]['endpage']))
+										AND (isset($dom[$trid]['endcolumn']))
+										AND ($trwsp['endpage'] == $dom[$trid]['endpage'])
+										AND ($trwsp['endcolumn'] == $dom[$trid]['endcolumn'])) {
+										// set ending Y position for row
+										$dom[$table_el]['rowspans'][$rsk]['endy'] = max($dom[$trid]['endy'], $trwsp['endy']);
+										$dom[$trid]['endy'] = $dom[$table_el]['rowspans'][$rsk]['endy'];
+									}
+									$rsk = 0;
+								} else {
+									++$rsk;
 								}
 							}
-							$cellw += (($colspan - 1) * $cellspacing);
-							// increment column indicator
-							$colid += $colspan;
-							if (isset($dom[$key]['height'])) {
-								// minimum cell height
-								$cellh = $this->getHTMLUnitToUnits($dom[$key]['height'], 0, 'px');
-							} else {
-								$cellh = 0;
-							}
-							if (isset($dom[$key]['content'])) {
-								$cell_content = $dom[$key]['content'];
-							} else {
-								$cell_content = '&nbsp;';
-							}
-							$tagtype = $dom[$key]['value'];
-							$parentid = $key;
-							while (($key < $maxel) AND (!(($dom[$key]['tag']) AND (!$dom[$key]['opening']) AND ($dom[$key]['value'] == $tagtype) AND ($dom[$key]['parent'] == $parentid)))) {
-								// move $key index forward
-								++$key;
+						}
+						if (isset($dom[$parentid]['width'])) {
+							// user specified width
+							$cellw = $this->getHTMLUnitToUnits($dom[$parentid]['width'], $table_columns_width, 'px');
+							$tmpcw = ($cellw / $colspan);
+							for ($i = 0; $i < $colspan; ++$i) {
+								$table_colwidths[($colid + $i)] = $tmpcw;
 							}
-							if (!isset($dom[$trid]['startpage'])) {
-								$dom[$trid]['startpage'] = $this->page;
-							} else {
-								$this->setPage($dom[$trid]['startpage']);
+						} else {
+							// inherit column width
+							$cellw = 0;
+							for ($i = 0; $i < $colspan; ++$i) {
+								$cellw += $table_colwidths[($colid + $i)];
 							}
-							if (!isset($dom[$trid]['starty'])) {
-								$dom[$trid]['starty'] = $this->y;
+						}
+						$cellw += (($colspan - 1) * $cellspacing['H']);
+						// increment column indicator
+						$colid += $colspan;
+						// add rowspan information to table element
+						if ($rowspan > 1) {
+							$trsid = array_push($dom[$table_el]['rowspans'], array('trid' => $trid, 'rowspan' => $rowspan, 'mrowspan' => $rowspan, 'colspan' => $colspan, 'startpage' => $this->page, 'startcolumn' => $this->current_column, 'startx' => $this->x, 'starty' => $this->y));
+						}
+						$cellid = array_push($dom[$trid]['cellpos'], array('startx' => $this->x));
+						if ($rowspan > 1) {
+							$dom[$trid]['cellpos'][($cellid - 1)]['rowspanid'] = ($trsid - 1);
+						}
+						// push background colors
+						if (isset($dom[$parentid]['bgcolor']) AND ($dom[$parentid]['bgcolor'] !== false)) {
+							$dom[$trid]['cellpos'][($cellid - 1)]['bgcolor'] = $dom[$parentid]['bgcolor'];
+						}
+						// store border info
+						if (isset($tdborder) AND !empty($tdborder)) {
+							$dom[$trid]['cellpos'][($cellid - 1)]['border'] = $tdborder;
+						}
+						$prevLastH = $this->lasth;
+						// store some info for multicolumn mode
+						if ($this->rtl) {
+							$this->colxshift['x'] = $this->w - $this->x - $this->rMargin;
+						} else {
+							$this->colxshift['x'] = $this->x - $this->lMargin;
+						}
+						$this->colxshift['s'] = $cellspacing;
+						$this->colxshift['p'] = $current_cell_padding;
+						// ****** write the cell content ******
+						$this->MultiCell($cellw, $cellh, $cell_content, false, $lalign, false, 2, '', '', true, 0, true);
+						// restore some values
+						$this->colxshift = array('x' => 0, 's' => array('H' => 0, 'V' => 0), 'p' => array('L' => 0, 'T' => 0, 'R' => 0, 'B' => 0));
+						$this->lasth = $prevLastH;
+						$this->cell_padding = $old_cell_padding;
+						$dom[$trid]['cellpos'][($cellid - 1)]['endx'] = $this->x;
+						// update the end of row position
+						if ($rowspan <= 1) {
+							if (isset($dom[$trid]['endy'])) {
+								if (($this->page == $dom[$trid]['endpage']) AND ($this->current_column == $dom[$trid]['endcolumn'])) {
+									$dom[$trid]['endy'] = max($this->y, $dom[$trid]['endy']);
+								} elseif (($this->page > $dom[$trid]['endpage']) OR ($this->current_column > $dom[$trid]['endcolumn'])) {
+									$dom[$trid]['endy'] = $this->y;
+								}
 							} else {
-								$this->y = $dom[$trid]['starty'];
+								$dom[$trid]['endy'] = $this->y;
 							}
-							if (!isset($dom[$trid]['startx'])) {
-								$dom[$trid]['startx'] = $this->x;
+							if (isset($dom[$trid]['endpage'])) {
+								$dom[$trid]['endpage'] = max($this->page, $dom[$trid]['endpage']);
 							} else {
-								$this->x += ($cellspacingx / 2);
+								$dom[$trid]['endpage'] = $this->page;
 							}
-							if (isset($dom[$parentid]['attribute']['rowspan'])) {
-								$rowspan = intval($dom[$parentid]['attribute']['rowspan']);
+							if (isset($dom[$trid]['endcolumn'])) {
+								$dom[$trid]['endcolumn'] = max($this->current_column, $dom[$trid]['endcolumn']);
 							} else {
-								$rowspan = 1;
+								$dom[$trid]['endcolumn'] = $this->current_column;
 							}
-							// skip row-spanned cells started on the previous rows
-							if (isset($dom[$table_el]['rowspans'])) {
-								$rsk = 0;
-								$rskmax = count($dom[$table_el]['rowspans']);
-								while ($rsk < $rskmax) {
-									$trwsp = $dom[$table_el]['rowspans'][$rsk];
-									$rsstartx = $trwsp['startx'];
-									$rsendx = $trwsp['endx'];
-									// account for margin changes
-									if ($trwsp['startpage'] < $this->page) {
-										if (($this->rtl) AND ($this->pagedim[$this->page]['orm'] != $this->pagedim[$trwsp['startpage']]['orm'])) {
-											$dl = ($this->pagedim[$this->page]['orm'] - $this->pagedim[$trwsp['startpage']]['orm']);
-											$rsstartx -= $dl;
-											$rsendx -= $dl;
-										} elseif ((!$this->rtl) AND ($this->pagedim[$this->page]['olm'] != $this->pagedim[$trwsp['startpage']]['olm'])) {
-											$dl = ($this->pagedim[$this->page]['olm'] - $this->pagedim[$trwsp['startpage']]['olm']);
-											$rsstartx += $dl;
-											$rsendx += $dl;
-										}
-									}
-									if  (($trwsp['rowspan'] > 0)
-										AND ($rsstartx > ($this->x - $cellspacing - $currentcmargin - $this->feps))
-										AND ($rsstartx < ($this->x + $cellspacing + $currentcmargin + $this->feps))
-										AND (($trwsp['starty'] < ($this->y - $this->feps)) OR ($trwsp['startpage'] < $this->page))) {
-										// set the starting X position of the current cell
-										$this->x = $rsendx + $cellspacingx;
-										if (($trwsp['rowspan'] == 1)
-											AND (isset($dom[$trid]['endy']))
-											AND (isset($dom[$trid]['endpage']))
-											AND ($trwsp['endpage'] == $dom[$trid]['endpage'])) {
-											// set ending Y position for row
-											$dom[$table_el]['rowspans'][$rsk]['endy'] = max($dom[$trid]['endy'], $trwsp['endy']);
-											$dom[$trid]['endy'] = $dom[$table_el]['rowspans'][$rsk]['endy'];
+						} else {
+							// account for row-spanned cells
+							$dom[$table_el]['rowspans'][($trsid - 1)]['endx'] = $this->x;
+							$dom[$table_el]['rowspans'][($trsid - 1)]['endy'] = $this->y;
+							$dom[$table_el]['rowspans'][($trsid - 1)]['endpage'] = $this->page;
+							$dom[$table_el]['rowspans'][($trsid - 1)]['endcolumn'] = $this->current_column;
+						}
+						if (isset($dom[$table_el]['rowspans'])) {
+							// update endy and endpage on rowspanned cells
+							foreach ($dom[$table_el]['rowspans'] as $k => $trwsp) {
+								if ($trwsp['rowspan'] > 0) {
+									if (isset($dom[$trid]['endpage'])) {
+										if (($trwsp['endpage'] == $dom[$trid]['endpage']) AND ($trwsp['endcolumn'] == $dom[$trid]['endcolumn'])) {
+											$dom[$table_el]['rowspans'][$k]['endy'] = max($dom[$trid]['endy'], $trwsp['endy']);
+										} elseif (($trwsp['endpage'] < $dom[$trid]['endpage']) OR ($trwsp['endcolumn'] < $dom[$trid]['endcolumn'])) {
+											$dom[$table_el]['rowspans'][$k]['endy'] = $dom[$trid]['endy'];
+											$dom[$table_el]['rowspans'][$k]['endpage'] = $dom[$trid]['endpage'];
+											$dom[$table_el]['rowspans'][$k]['endcolumn'] = $dom[$trid]['endcolumn'];
+										} else {
+											$dom[$trid]['endy'] = $this->pagedim[$dom[$trid]['endpage']]['hk'] - $this->pagedim[$dom[$trid]['endpage']]['bm'];
 										}
-										$rsk = 0;
-									} else {
-										++$rsk;
 									}
 								}
 							}
-							// add rowspan information to table element
-							if ($rowspan > 1) {
-								$trsid = array_push($dom[$table_el]['rowspans'], array('trid' => $trid, 'rowspan' => $rowspan, 'mrowspan' => $rowspan, 'colspan' => $colspan, 'startpage' => $this->page, 'startx' => $this->x, 'starty' => $this->y));
-							}
-							$cellid = array_push($dom[$trid]['cellpos'], array('startx' => $this->x));
-							if ($rowspan > 1) {
-								$dom[$trid]['cellpos'][($cellid - 1)]['rowspanid'] = ($trsid - 1);
-							}
-							// push background colors
-							if (isset($dom[$parentid]['bgcolor']) AND ($dom[$parentid]['bgcolor'] !== false)) {
-								$dom[$trid]['cellpos'][($cellid - 1)]['bgcolor'] = $dom[$parentid]['bgcolor'];
-							}
-							$prevLastH = $this->lasth;
-							// ****** write the cell content ******
-							$this->MultiCell($cellw, $cellh, $cell_content, false, $lalign, false, 2, '', '', true, 0, true);
-							$this->lasth = $prevLastH;
-							$this->cMargin = $oldmargin;
-							$dom[$trid]['cellpos'][($cellid - 1)]['endx'] = $this->x;
-							// update the end of row position
-							if ($rowspan <= 1) {
-								if (isset($dom[$trid]['endy'])) {
-									if ($this->page == $dom[$trid]['endpage']) {
-										$dom[$trid]['endy'] = max($this->y, $dom[$trid]['endy']);
-									} elseif ($this->page > $dom[$trid]['endpage']) {
-										$dom[$trid]['endy'] = $this->y;
-									}
-								} else {
-									$dom[$trid]['endy'] = $this->y;
-								}
-								if (isset($dom[$trid]['endpage'])) {
-									$dom[$trid]['endpage'] = max($this->page, $dom[$trid]['endpage']);
+						}
+						$this->x += ($cellspacingx / 2);
+					} else {
+						// opening tag (or self-closing tag)
+						if (!isset($opentagpos)) {
+							if ($this->inxobj) {
+								// we are inside an XObject template
+								$opentagpos = strlen($this->xobjects[$this->xobjid]['outdata']);
+							} elseif (!$this->InFooter) {
+								if (isset($this->footerlen[$this->page])) {
+									$this->footerpos[$this->page] = $this->pagelen[$this->page] - $this->footerlen[$this->page];
 								} else {
-									$dom[$trid]['endpage'] = $this->page;
-								}
-							} else {
-								// account for row-spanned cells
-								$dom[$table_el]['rowspans'][($trsid - 1)]['endx'] = $this->x;
-								$dom[$table_el]['rowspans'][($trsid - 1)]['endy'] = $this->y;
-								$dom[$table_el]['rowspans'][($trsid - 1)]['endpage'] = $this->page;
-							}
-							if (isset($dom[$table_el]['rowspans'])) {
-								// update endy and endpage on rowspanned cells
-								foreach ($dom[$table_el]['rowspans'] as $k => $trwsp) {
-									if ($trwsp['rowspan'] > 0) {
-										if (isset($dom[$trid]['endpage'])) {
-											if ($trwsp['endpage'] == $dom[$trid]['endpage']) {
-												$dom[$table_el]['rowspans'][$k]['endy'] = max($dom[$trid]['endy'], $trwsp['endy']);
-											} elseif ($trwsp['endpage'] < $dom[$trid]['endpage']) {
-												$dom[$table_el]['rowspans'][$k]['endy'] = $dom[$trid]['endy'];
-												$dom[$table_el]['rowspans'][$k]['endpage'] = $dom[$trid]['endpage'];
-											} else {
-												$dom[$trid]['endy'] = $this->pagedim[$dom[$trid]['endpage']]['hk'] - $this->pagedim[$dom[$trid]['endpage']]['bm'];
-											}
-										}
-									}
-								}
-							}
-							$this->x += ($cellspacingx / 2);
-						} else {
-							// opening tag (or self-closing tag)
-							if (!isset($opentagpos)) {
-								if (!$this->InFooter) {
-									if (isset($this->footerlen[$this->page])) {
-										$this->footerpos[$this->page] = $this->pagelen[$this->page] - $this->footerlen[$this->page];
-									} else {
-										$this->footerpos[$this->page] = $this->pagelen[$this->page];
-									}
-									$opentagpos = $this->footerpos[$this->page];
+									$this->footerpos[$this->page] = $this->pagelen[$this->page];
 								}
+								$opentagpos = $this->footerpos[$this->page];
 							}
-							$this->openHTMLTagHandler($dom, $key, $cell);
-						}
-					} else {
-						// closing tag
-						$prev_numpages = $this->numpages;
-						$this->closeHTMLTagHandler($dom, $key, $cell, $maxbottomliney);
-						if ($prev_numpages > $this->numpages) {
-							$startlinepage = $this->page;
 						}
+						$this->openHTMLTagHandler($dom, $key, $cell);
+					}
+				} else { // closing tag
+					$prev_numpages = $this->numpages;
+					$old_bordermrk = $this->bordermrk[$this->page];
+					$this->closeHTMLTagHandler($dom, $key, $cell, $maxbottomliney);
+					if ($this->bordermrk[$this->page] > $old_bordermrk) {
+						$startlinepos += ($this->bordermrk[$this->page] - $old_bordermrk);
+					}
+					if ($prev_numpages > $this->numpages) {
+						$startlinepage = $this->page;
+					}
+				}
+			} elseif (strlen($dom[$key]['value']) > 0) {
+				// print list-item
+				if (!$this->empty_string($this->lispacer) AND ($this->lispacer != '^')) {
+					$this->SetFont($pfontname, $pfontstyle, $pfontsize);
+					$this->resetLastH();
+					$minstartliney = $this->y;
+					$maxbottomliney = ($startliney + ($this->FontSize * $this->cell_height_ratio));
+					$this->putHtmlListBullet($this->listnum, $this->lispacer, $pfontsize);
+					$this->SetFont($curfontname, $curfontstyle, $curfontsize);
+					$this->resetLastH();
+					if (is_numeric($pfontsize) AND ($pfontsize > 0) AND is_numeric($curfontsize) AND ($curfontsize > 0) AND ($pfontsize != $curfontsize)) {
+						$pfontascent = $this->getFontAscent($pfontname, $pfontstyle, $pfontsize);
+						$pfontdescent = $this->getFontDescent($pfontname, $pfontstyle, $pfontsize);
+						$this->y += ((($pfontsize - $curfontsize) * $this->cell_height_ratio / $this->k) + $pfontascent - $curfontascent - $pfontdescent + $curfontdescent) / 2;
+						$minstartliney = min($this->y, $minstartliney);
+						$maxbottomliney = max(($this->y + (($pfontsize * $this->cell_height_ratio) / $this->k)), $maxbottomliney);
 					}
-				} elseif (strlen($dom[$key]['value']) > 0) {
-					// print list-item
-					if (!$this->empty_string($this->lispacer) AND ($this->lispacer != '^')) {
-						$this->SetFont($pfontname, $pfontstyle, $pfontsize);
-						$this->lasth = $this->FontSize * $this->cell_height_ratio;
-						$minstartliney = $this->y;
-						$maxbottomliney = ($startliney + ($this->FontSize * $this->cell_height_ratio));
-						$this->putHtmlListBullet($this->listnum, $this->lispacer, $pfontsize);
-						$this->SetFont($curfontname, $curfontstyle, $curfontsize);
-						$this->lasth = $this->FontSize * $this->cell_height_ratio;
-						if (is_numeric($pfontsize) AND ($pfontsize > 0) AND is_numeric($curfontsize) AND ($curfontsize > 0) AND ($pfontsize != $curfontsize)) {
-							$pfontascent = $this->getFontAscent($pfontname, $pfontstyle, $pfontsize);
-							$pfontdescent = $this->getFontDescent($pfontname, $pfontstyle, $pfontsize);
-							$this->y += ((($pfontsize - $curfontsize) * $this->cell_height_ratio / $this->k) + $pfontascent - $curfontascent - $pfontdescent + $curfontdescent) / 2;
-							$minstartliney = min($this->y, $minstartliney);
-							$maxbottomliney = max(($this->y + (($pfontsize * $this->cell_height_ratio) / $this->k)), $maxbottomliney);
-						}
-					}
-					// text
-					$this->htmlvspace = 0;
-					if ((!$this->premode) AND $this->isRTLTextDir()) {
-						// reverse spaces order
-						$len1 = strlen($dom[$key]['value']);
-						$lsp = $len1 - strlen(ltrim($dom[$key]['value']));
-						$rsp = $len1 - strlen(rtrim($dom[$key]['value']));
-						$tmpstr = '';
-						if ($rsp > 0) {
-							$tmpstr .= substr($dom[$key]['value'], -$rsp);
-						}
-						$tmpstr .= trim($dom[$key]['value']);
-						if ($lsp > 0) {
-							$tmpstr .= substr($dom[$key]['value'], 0, $lsp);
-						}
-						$dom[$key]['value'] = $tmpstr;
-					}
-					if ($newline) {
-						if (!$this->premode) {
-							$prelen = strlen($dom[$key]['value']);
-							if ($this->isRTLTextDir()) {
-								$dom[$key]['value'] = rtrim($dom[$key]['value']).chr(0);
-							} else {
-								$dom[$key]['value'] = ltrim($dom[$key]['value']);
-							}
-							$postlen = strlen($dom[$key]['value']);
-							if (($postlen == 0) AND ($prelen > 0)) {
-								$dom[$key]['trimmed_space'] = true;
-							}
+				}
+				// text
+				$this->htmlvspace = 0;
+				if ((!$this->premode) AND $this->isRTLTextDir()) {
+					// reverse spaces order
+					$lsp = ''; // left spaces
+					$rsp = ''; // right spaces
+					if (preg_match('/^('.$this->re_space['p'].'+)/'.$this->re_space['m'], $dom[$key]['value'], $matches)) {
+						$lsp = $matches[1];
+					}
+					if (preg_match('/('.$this->re_space['p'].'+)$/'.$this->re_space['m'], $dom[$key]['value'], $matches)) {
+						$rsp = $matches[1];
+					}
+					$dom[$key]['value'] = $rsp.$this->stringTrim($dom[$key]['value']).$lsp;
+				}
+				if ($newline) {
+					if (!$this->premode) {
+						$prelen = strlen($dom[$key]['value']);
+						if ($this->isRTLTextDir()) {
+							// right trim except non-breaking space
+							$dom[$key]['value'] = $this->stringRightTrim($dom[$key]['value']);
+						} else {
+							// left trim except non-breaking space
+							$dom[$key]['value'] = $this->stringLeftTrim($dom[$key]['value']);
+						}
+						$postlen = strlen($dom[$key]['value']);
+						if (($postlen == 0) AND ($prelen > 0)) {
+							$dom[$key]['trimmed_space'] = true;
 						}
-						$newline = false;
-						$firstblock = true;
-					} else {
-						$firstblock = false;
-					}
-					$strrest = '';
-					if ($this->rtl) {
-						$this->x -= $this->textindent;
-					} else {
-						$this->x += $this->textindent;
 					}
+					$newline = false;
+					$firstblock = true;
+				} else {
+					$firstblock = false;
+					// replace empty multiple spaces string with a single space
+					$dom[$key]['value'] = preg_replace('/^'.$this->re_space['p'].'+$/'.$this->re_space['m'], chr(32), $dom[$key]['value']);
+				}
+				$strrest = '';
+				if ($this->rtl) {
+					$this->x -= $this->textindent;
+				} else {
+					$this->x += $this->textindent;
+				}
+				if (!isset($dom[$key]['trimmed_space']) OR !$dom[$key]['trimmed_space']) {
 					if (!empty($this->HREF) AND (isset($this->HREF['url']))) {
 						// HTML <a> Link
 						$hrefcolor = '';
@@ -18095,980 +20229,1222 @@ if (!class_exists('TCPDF', false)) {
 						}
 						$strrest = $this->addHtmlLink($this->HREF['url'], $dom[$key]['value'], $wfill, true, $hrefcolor, $hrefstyle, true);
 					} else {
-						// ****** write only until the end of the line and get the rest ******
-						$strrest = $this->Write($this->lasth, $dom[$key]['value'], '', $wfill, '', false, 0, true, $firstblock, 0);
-					}
-					$this->textindent = 0;
-					if (strlen($strrest) > 0) {
-						// store the remaining string on the previous $key position
-						$this->newline = true;
-						if ($cell) {
+						$wadj = 0; // space to leave for block continuity
+						$adjblks = 0; // number of blocks
+						// check the next text blocks for continuity
+						$nkey = ($key + 1);
+						$write_block = true;
+						$same_textdir = true;
+						$tmp_fontname = $this->FontFamily;
+						$tmp_fontstyle = $this->FontStyle;
+						$tmp_fontsize = $this->FontSizePt;
+						while ($write_block AND isset($dom[$nkey])) {
+							if ($dom[$nkey]['tag']) {
+								if ($dom[$nkey]['block']) {
+									// end of block
+									$write_block = false;
+								}
+								$tmp_fontname = isset($dom[$nkey]['fontname']) ? $dom[$nkey]['fontname'] : $this->FontFamily;
+								$tmp_fontstyle = isset($dom[$nkey]['fontstyle']) ? $dom[$nkey]['fontstyle'] : $this->FontStyle;
+								$tmp_fontsize = isset($dom[$nkey]['fontsize']) ? $dom[$nkey]['fontsize'] : $this->FontSizePt;
+								$same_textdir = ($dom[$nkey]['dir'] == $dom[$key]['dir']);
+							} else {
+								$nextstr = preg_split('/'.$this->re_space['p'].'+/'.$this->re_space['m'], $dom[$nkey]['value']);
+								if (isset($nextstr[0])) {
+									if ($same_textdir) {
+										$wadj += $this->GetStringWidth($nextstr[0], $tmp_fontname, $tmp_fontstyle, $tmp_fontsize);
+									}
+									++$adjblks;
+								}
+								if (isset($nextstr[1])) {
+									$write_block = false;
+								}
+							}
+							++$nkey;
+						}
+						// check for reversed text direction
+						if (($wadj > 0) AND (($this->rtl AND ($this->tmprtl === 'L')) OR (!$this->rtl AND ($this->tmprtl === 'R')))) {
+							// LTR text on RTL direction or RTL text on LTR direction
+							$reverse_dir = true;
+							$this->rtl = !$this->rtl;
+							$revshift = ($this->GetStringWidth($dom[$key]['value']) + $wadj) + 0.000001; // add little quantity for rounding problems
 							if ($this->rtl) {
-								$this->x -= $this->cMargin;
+								$this->x += $revshift;
 							} else {
-								$this->x += $this->cMargin;
+								$this->x -= $revshift;
 							}
+							$xws = $this->x;
 						}
-						if ($strrest == $dom[$key]['value']) {
-							// used to avoid infinite loop
-							++$loop;
-						} else {
-							$loop = 0;
-						}
-						if (!empty($this->HREF) AND (isset($this->HREF['url']))) {
-							$dom[$key]['value'] = trim($strrest);
-						} elseif ($this->premode) {
-							$dom[$key]['value'] = $strrest;
-						} elseif ($this->isRTLTextDir()) {
-							$dom[$key]['value'] = rtrim($strrest);
-						} else {
-							$dom[$key]['value'] = ltrim($strrest);
-						}
-						if ($loop < 3) {
-							--$key;
-						}
+						// ****** write only until the end of the line and get the rest ******
+						$strrest = $this->Write($this->lasth, $dom[$key]['value'], '', $wfill, '', false, 0, true, $firstblock, 0, $wadj);
+						// restore default direction
+						if ($reverse_dir AND ($wadj == 0)) {
+							$this->x = $xws;
+							$this->rtl = !$this->rtl;
+							$reverse_dir = false;
+						}
+					}
+				}
+				$this->textindent = 0;
+				if (strlen($strrest) > 0) {
+					// store the remaining string on the previous $key position
+					$this->newline = true;
+					if ($strrest == $dom[$key]['value']) {
+						// used to avoid infinite loop
+						++$loop;
 					} else {
 						$loop = 0;
 					}
-				}
-				++$key;
-				if (isset($dom[$key]['tag']) AND $dom[$key]['tag'] AND (!isset($dom[$key]['opening']) OR !$dom[$key]['opening']) AND isset($dom[($dom[$key]['parent'])]['attribute']['nobr']) AND ($dom[($dom[$key]['parent'])]['attribute']['nobr'] == 'true')) {
-					if ( (!$undo) AND (($this->start_transaction_page == ($this->numpages - 1)) OR ($this->y < $this->start_transaction_y))) {
-						// restore previous object
-						$this->rollbackTransaction(true);
-						// restore previous values
-						foreach ($this_method_vars as $vkey => $vval) {
-							$$vkey = $vval;
-						}
-						// add a page (or trig AcceptPageBreak() for multicolumn mode)
-						$pre_y = $this->y;
-						if ((!$this->checkPageBreak($this->PageBreakTrigger + 1)) AND ($this->y < $pre_y)) {
-							$startliney = $this->y;
-						}
-						$undo = true; // avoid infinite loop
-					} else {
-						$undo = false;
-					}
-				}
-			} // end for each $key
-			// align the last line
-			if (isset($startlinex)) {
-				$yshift = $minstartliney - $startliney;
-				if (($yshift > 0) OR ($this->page > $startlinepage)) {
-					$yshift = 0;
-				}
-				$t_x = 0;
-				// the last line must be shifted to be aligned as requested
-				$linew = abs($this->endlinex - $startlinex);
-				$pstart = substr($this->getPageBuffer($startlinepage), 0, $startlinepos);
-				if (isset($opentagpos) AND isset($this->footerlen[$startlinepage]) AND (!$this->InFooter)) {
-					$this->footerpos[$startlinepage] = $this->pagelen[$startlinepage] - $this->footerlen[$startlinepage];
-					$midpos = min($opentagpos, $this->footerpos[$startlinepage]);
-				} elseif (isset($opentagpos)) {
-					$midpos = $opentagpos;
-				} elseif (isset($this->footerlen[$startlinepage]) AND (!$this->InFooter)) {
-					$this->footerpos[$startlinepage] = $this->pagelen[$startlinepage] - $this->footerlen[$startlinepage];
-					$midpos = $this->footerpos[$startlinepage];
-				} else {
-					$midpos = 0;
-				}
-				if ($midpos > 0) {
-					$pmid = substr($this->getPageBuffer($startlinepage), $startlinepos, ($midpos - $startlinepos));
-					$pend = substr($this->getPageBuffer($startlinepage), $midpos);
-				} else {
-					$pmid = substr($this->getPageBuffer($startlinepage), $startlinepos);
-					$pend = '';
-				}
-				if ((isset($plalign) AND ((($plalign == 'C') OR (($plalign == 'R') AND (!$this->rtl)) OR (($plalign == 'L') AND ($this->rtl))))) OR ($yshift < 0)) {
-					// calculate shifting amount
-					$tw = $w;
-					if ($this->lMargin != $prevlMargin) {
-						$tw += ($prevlMargin - $this->lMargin);
-					}
-					if ($this->rMargin != $prevrMargin) {
-						$tw += ($prevrMargin - $this->rMargin);
-					}
-					$one_space_width = $this->GetStringWidth(chr(32));
-					$mdiff = abs($tw - $linew);
-					if ($plalign == 'C') {
+					$dom[$key]['value'] = $strrest;
+					if ($cell) {
 						if ($this->rtl) {
-							$t_x = -($mdiff / 2);
+							$this->x -= $this->cell_padding['R'];
 						} else {
-							$t_x = ($mdiff / 2);
-						}
-					} elseif (($plalign == 'R') AND (!$this->rtl)) {
-						// right alignment on LTR document
-						if (intval($this->revstrpos($pmid, ')]')) == (intval($this->revstrpos($pmid, ' )]')) + 1)) {
-							// remove last space (if any)
-							$linew -= $one_space_width;
-							$mdiff = abs($tw - $linew);
-						}
-						$t_x = $mdiff;
-					} elseif (($plalign == 'L') AND ($this->rtl)) {
-						// left alignment on RTL document
-						if (($this->revstrpos($pmid, '[(') > 0) AND ((intval($this->revstrpos($pmid, '[( ')) == intval($this->revstrpos($pmid, '[('))) OR (intval($this->revstrpos($pmid, '[('.chr(0).chr(32))) == intval($this->revstrpos($pmid, '[('))))) {
-							// remove first space (if any)
-							$linew -= $one_space_width;
-						}
-						if ((strpos($pmid, '[(') > 0) AND (intval(strpos($pmid, '[(')) == (intval($this->revstrpos($pmid, '[('))))) {
-							// remove last space (if any)
-							$linew -= $one_space_width;
-							if (($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) {
-								$linew -= $one_space_width;
-							}
+							$this->x += $this->cell_padding['L'];
 						}
-						$mdiff = abs($tw - $linew);
-						$t_x = -$mdiff;
 					}
-				} // end if startlinex
-				if (($t_x != 0) OR ($yshift < 0)) {
-					// shift the line
-					$trx = sprintf('1 0 0 1 %.3F %.3F cm', ($t_x * $this->k), ($yshift * $this->k));
-					$this->setPageBuffer($startlinepage, $pstart."\nq\n".$trx."\n".$pmid."\nQ\n".$pend);
-					$endlinepos = strlen($pstart."\nq\n".$trx."\n".$pmid."\nQ\n");
-					// shift the annotations and links
-					if (isset($this->PageAnnots[$this->page])) {
-						foreach ($this->PageAnnots[$this->page] as $pak => $pac) {
-							if ($pak >= $pask) {
-								$this->PageAnnots[$this->page][$pak]['x'] += $t_x;
-								$this->PageAnnots[$this->page][$pak]['y'] -= $yshift;
-							}
-						}
+					if ($loop < 3) {
+						--$key;
 					}
-					$this->y -= $yshift;
-				}
-			}
-			// restore previous values
-			$this->setGraphicVars($gvars);
-			if ($this->page > $prevPage) {
-				$this->lMargin = $this->pagedim[$this->page]['olm'];
-				$this->rMargin = $this->pagedim[$this->page]['orm'];
-			}
-			// restore previous list state
-			$this->cell_height_ratio = $prev_cell_height_ratio;
-			$this->listnum = $prev_listnum;
-			$this->listordered = $prev_listordered;
-			$this->listcount = $prev_listcount;
-			$this->lispacer = $prev_lispacer;
-			if ($ln AND (!($cell AND ($dom[$key-1]['value'] == 'table')))) {
-				$this->Ln($this->lasth);
-				if ($this->y < $maxbottomliney) {
-					$this->y = $maxbottomliney;
-				}
-			}
-			unset($dom);
-		}
-
-		/**
-		 * Process opening tags.
-		 * @param array $dom html dom array
-		 * @param int $key current element id
-		 * @param boolean $cell if true add the default cMargin space to each new line (default false).
-		 * @access protected
-		 */
-		protected function openHTMLTagHandler(&$dom, $key, $cell) {
-			$tag = $dom[$key];
-			$parent = $dom[($dom[$key]['parent'])];
-			$firstorlast = ($key == 1);
-			// check for text direction attribute
-			if (isset($tag['attribute']['dir'])) {
-				$this->setTempRTL($tag['attribute']['dir']);
-			} else {
-				$this->tmprtl = false;
-			}
-			if ($tag['block']) {
-				$hbz = 0; // distance from y to line bottom
-				$hb = 0; // vertical space between block tags
-				// calculate vertical space for block tags
-				if (isset($this->tagvspaces[$tag['value']][0]['h']) AND ($this->tagvspaces[$tag['value']][0]['h'] >= 0)) {
-					$cur_h = $this->tagvspaces[$tag['value']][0]['h'];
-				} elseif (isset($tag['fontsize'])) {
-					$cur_h = ($tag['fontsize'] / $this->k) * $this->cell_height_ratio;
-				} else {
-					$cur_h = $this->FontSize * $this->cell_height_ratio;
-				}
-				if (isset($this->tagvspaces[$tag['value']][0]['n'])) {
-					$n = $this->tagvspaces[$tag['value']][0]['n'];
-				} elseif (preg_match('/[h][0-9]/', $tag['value']) > 0) {
-					$n = 0.6;
 				} else {
-					$n = 1;
-				}
-				$hb = ($n * $cur_h);
-				if (($this->htmlvspace <= 0) AND ($n > 0)) {
-					if (isset($parent['fontsize'])) {
-						$hbz = (($parent['fontsize'] / $this->k) * $this->cell_height_ratio);
-					} else {
-						$hbz = $this->FontSize * $this->cell_height_ratio;
-					}
+					$loop = 0;
 				}
 			}
-			//Opening tag
-			switch($tag['value']) {
-				case 'table': {
-					$cp = 0;
-					$cs = 0;
-					$dom[$key]['rowspans'] = array();
-					if (!isset($dom[$key]['attribute']['nested']) OR ($dom[$key]['attribute']['nested'] != 'true')) {
-						// set table header
-						if (!$this->empty_string($dom[$key]['thead'])) {
-							// set table header
-							$this->thead = $dom[$key]['thead'];
-							if (!isset($this->theadMargins) OR (empty($this->theadMargins))) {
-								$this->theadMargins = array();
-								$this->theadMargins['cmargin'] = $this->cMargin;
-								$this->theadMargins['lmargin'] = $this->lMargin;
-								$this->theadMargins['rmargin'] = $this->rMargin;
-								$this->theadMargins['page'] = $this->page;
-							}
-						}
-					}
-					if (isset($tag['attribute']['cellpadding'])) {
-						$cp = $this->getHTMLUnitToUnits($tag['attribute']['cellpadding'], 1, 'px');
-						$this->oldcMargin = $this->cMargin;
-						$this->cMargin = $cp;
-					}
-					if (isset($tag['attribute']['cellspacing'])) {
-						$cs = $this->getHTMLUnitToUnits($tag['attribute']['cellspacing'], 1, 'px');
-					}
-					$prev_y = $this->y;
-					if ($this->checkPageBreak(((2 * $cp) + (2 * $cs) + $this->lasth), '', false) OR ($this->y < $prev_y)) {
-						$this->inthead = true;
-						// add a page (or trig AcceptPageBreak() for multicolumn mode)
-						$this->checkPageBreak($this->PageBreakTrigger + 1);
-					}
-					break;
-				}
-				case 'tr': {
-					// array of columns positions
-					$dom[$key]['cellpos'] = array();
-					break;
-				}
-				case 'hr': {
-					if ((isset($tag['height'])) AND ($tag['height'] != '')) {
-						$hrHeight = $this->getHTMLUnitToUnits($tag['height'], 1, 'px');
-					} else {
-						$hrHeight = $this->GetLineWidth();
-					}
-					$this->addHTMLVertSpace($hbz, ($hrHeight / 2), $cell, $firstorlast);
-					$x = $this->GetX();
-					$y = $this->GetY();
-					$wtmp = $this->w - $this->lMargin - $this->rMargin;
-					if ($cell) {
-						$wtmp -= 2 * $this->cMargin;
-					}
-					if ((isset($tag['attribute']['width'])) AND ($tag['attribute']['width'] != '')) {
-						$hrWidth = $this->getHTMLUnitToUnits($tag['attribute']['width'], $wtmp, 'px');
-					} else {
-						$hrWidth = $wtmp;
-					}
-					$prevlinewidth = $this->GetLineWidth();
-					$this->SetLineWidth($hrHeight);
-					$this->Line($x, $y, $x + $hrWidth, $y);
-					$this->SetLineWidth($prevlinewidth);
-					$this->addHTMLVertSpace(($hrHeight / 2), 0, $cell, !isset($dom[($key + 1)]));
-					break;
-				}
-				case 'a': {
-					if (array_key_exists('href', $tag['attribute'])) {
-						$this->HREF['url'] = $tag['attribute']['href'];
-					}
-					break;
-				}
-				case 'img': {
-					if (isset($tag['attribute']['src'])) {
-						// replace relative path with real server path
-						if (($tag['attribute']['src'][0] == '/') AND ($_SERVER['DOCUMENT_ROOT'] != '/')) {
-							$findroot = strpos($tag['attribute']['src'], $_SERVER['DOCUMENT_ROOT']);
-							if (($findroot === false) OR ($findroot > 1)) {
-								$tag['attribute']['src'] = $_SERVER['DOCUMENT_ROOT'].$tag['attribute']['src'];
-							}
-						}
-						$tag['attribute']['src'] = urldecode($tag['attribute']['src']);
-						$type = $this->getImageFileType($tag['attribute']['src']);
-						$testscrtype = @parse_url($tag['attribute']['src']);
-						if (!isset($testscrtype['query']) OR empty($testscrtype['query'])) {
-							// convert URL to server path
-							$tag['attribute']['src'] = str_replace(K_PATH_URL, K_PATH_MAIN, $tag['attribute']['src']);
-						}
-						if (!isset($tag['attribute']['width'])) {
-							$tag['attribute']['width'] = 0;
-						}
-						if (!isset($tag['attribute']['height'])) {
-							$tag['attribute']['height'] = 0;
-						}
-						//if (!isset($tag['attribute']['align'])) {
-							// the only alignment supported is "bottom"
-							// further development is required for other modes.
-							$tag['attribute']['align'] = 'bottom';
-						//}
-						switch($tag['attribute']['align']) {
-							case 'top': {
-								$align = 'T';
-								break;
-							}
-							case 'middle': {
-								$align = 'M';
-								break;
-							}
-							case 'bottom': {
-								$align = 'B';
-								break;
-							}
-							default: {
-								$align = 'B';
-								break;
-							}
-						}
-						$prevy = $this->y;
-						$xpos = $this->x;
-						// eliminate marker spaces
-						if (isset($dom[($key - 1)])) {
-							if (($dom[($key - 1)]['value'] == ' ') OR (isset($dom[($key - 1)]['trimmed_space']))) {
-								$xpos -= $this->GetStringWidth(chr(32));
-							} elseif ($this->rtl AND $dom[($key - 1)]['value'] == '  ') {
-								$xpos += (2 * $this->GetStringWidth(chr(32)));
-							}
-						}
-						$imglink = '';
-						if (isset($this->HREF['url']) AND !$this->empty_string($this->HREF['url'])) {
-							$imglink = $this->HREF['url'];
-							if ($imglink{0} == '#') {
-								// convert url to internal link
-								$page = intval(substr($imglink, 1));
-								$imglink = $this->AddLink();
-								$this->SetLink($imglink, 0, $page);
-							}
-						}
-						$border = 0;
-						if (isset($tag['attribute']['border']) AND !empty($tag['attribute']['border'])) {
-							// currently only support 1 (frame) or a combination of 'LTRB'
-							$border = $tag['attribute']['border'];
-						}
-						$iw = '';
-						if (isset($tag['attribute']['width'])) {
-							$iw = $this->getHTMLUnitToUnits($tag['attribute']['width'], 1, 'px', false);
-						}
-						$ih = '';
-						if (isset($tag['attribute']['height'])) {
-							$ih = $this->getHTMLUnitToUnits($tag['attribute']['height'], 1, 'px', false);
-						}
-						if (($type == 'eps') OR ($type == 'ai')) {
-							$this->ImageEps($tag['attribute']['src'], $xpos, $this->y, $iw, $ih, $imglink, true, $align, '', $border, true);
-						} elseif ($type == 'svg') {
-							$this->ImageSVG($tag['attribute']['src'], $xpos, $this->y, $iw, $ih, $imglink, $align, '', $border, true);
-						} else  {
-							$this->Image($tag['attribute']['src'], $xpos, $this->y, $iw, $ih, '', $imglink, $align, false, 300, '', false, false, $border, false, false, true);
-						}
-						switch($align) {
-							case 'T': {
-								$this->y = $prevy;
-								break;
-							}
-							case 'M': {
-								$this->y = (($this->img_rb_y + $prevy - ($tag['fontsize'] / $this->k)) / 2) ;
-								break;
-							}
-							case 'B': {
-								$this->y = $this->img_rb_y - ($tag['fontsize'] / $this->k);
-								break;
-							}
-						}
+			++$key;
+			if (isset($dom[$key]['tag']) AND $dom[$key]['tag'] AND (!isset($dom[$key]['opening']) OR !$dom[$key]['opening']) AND isset($dom[($dom[$key]['parent'])]['attribute']['nobr']) AND ($dom[($dom[$key]['parent'])]['attribute']['nobr'] == 'true')) {
+				// check if we are on a new page or on a new column
+				if ((!$undo) AND ($this->y < $this->start_transaction_y)) {
+					// we are on a new page or on a new column and the total object height is less than the available vertical space.
+					// restore previous object
+					$this->rollbackTransaction(true);
+					// restore previous values
+					foreach ($this_method_vars as $vkey => $vval) {
+						$$vkey = $vval;
 					}
-					break;
-				}
-				case 'dl': {
-					++$this->listnum;
-					if ($this->listnum == 1) {
-						$this->addHTMLVertSpace($hbz, $hb, $cell, $firstorlast);
-					} else {
-						$this->addHTMLVertSpace(0, 0, $cell, $firstorlast);
+					// add a page (or trig AcceptPageBreak() for multicolumn mode)
+					$pre_y = $this->y;
+					if ((!$this->checkPageBreak($this->PageBreakTrigger + 1)) AND ($this->y < $pre_y)) {
+						$startliney = $this->y;
 					}
-					break;
-				}
-				case 'dt': {
-					$this->addHTMLVertSpace($hbz, 0, $cell, $firstorlast);
-					break;
+					$undo = true; // avoid infinite loop
+				} else {
+					$undo = false;
+				}
+			}
+		} // end for each $key
+		// align the last line
+		if (isset($startlinex)) {
+			$yshift = $minstartliney - $startliney;
+			if (($yshift > 0) OR ($this->page > $startlinepage)) {
+				$yshift = 0;
+			}
+			$t_x = 0;
+			// the last line must be shifted to be aligned as requested
+			$linew = abs($this->endlinex - $startlinex);
+			if ($this->inxobj) {
+				// we are inside an XObject template
+				$pstart = substr($this->xobjects[$this->xobjid]['outdata'], 0, $startlinepos);
+				if (isset($opentagpos)) {
+					$midpos = $opentagpos;
+				} else {
+					$midpos = 0;
 				}
-				case 'dd': {
-					if ($this->rtl) {
-						$this->rMargin += $this->listindent;
-					} else {
-						$this->lMargin += $this->listindent;
-					}
-					++$this->listindentlevel;
-					$this->addHTMLVertSpace($hbz, 0, $cell, $firstorlast);
-					break;
+				if ($midpos > 0) {
+					$pmid = substr($this->xobjects[$this->xobjid]['outdata'], $startlinepos, ($midpos - $startlinepos));
+					$pend = substr($this->xobjects[$this->xobjid]['outdata'], $midpos);
+				} else {
+					$pmid = substr($this->xobjects[$this->xobjid]['outdata'], $startlinepos);
+					$pend = '';
 				}
-				case 'ul':
-				case 'ol': {
-					++$this->listnum;
-					if ($tag['value'] == 'ol') {
-						$this->listordered[$this->listnum] = true;
-					} else {
-						$this->listordered[$this->listnum] = false;
-					}
-					if (isset($tag['attribute']['start'])) {
-						$this->listcount[$this->listnum] = intval($tag['attribute']['start']) - 1;
-					} else {
-						$this->listcount[$this->listnum] = 0;
-					}
-					if ($this->rtl) {
-						$this->rMargin += $this->listindent;
-						$this->x -= $this->listindent;
-					} else {
-						$this->lMargin += $this->listindent;
-						$this->x += $this->listindent;
-					}
-					++$this->listindentlevel;
-					if ($this->listnum == 1) {
-						$this->addHTMLVertSpace($hbz, $hb, $cell, $firstorlast);
-					} else {
-						$this->addHTMLVertSpace(0, 0, $cell, $firstorlast);
-					}
-					break;
+			} else {
+				$pstart = substr($this->getPageBuffer($startlinepage), 0, $startlinepos);
+				if (isset($opentagpos) AND isset($this->footerlen[$startlinepage]) AND (!$this->InFooter)) {
+					$this->footerpos[$startlinepage] = $this->pagelen[$startlinepage] - $this->footerlen[$startlinepage];
+					$midpos = min($opentagpos, $this->footerpos[$startlinepage]);
+				} elseif (isset($opentagpos)) {
+					$midpos = $opentagpos;
+				} elseif (isset($this->footerlen[$startlinepage]) AND (!$this->InFooter)) {
+					$this->footerpos[$startlinepage] = $this->pagelen[$startlinepage] - $this->footerlen[$startlinepage];
+					$midpos = $this->footerpos[$startlinepage];
+				} else {
+					$midpos = 0;
+				}
+				if ($midpos > 0) {
+					$pmid = substr($this->getPageBuffer($startlinepage), $startlinepos, ($midpos - $startlinepos));
+					$pend = substr($this->getPageBuffer($startlinepage), $midpos);
+				} else {
+					$pmid = substr($this->getPageBuffer($startlinepage), $startlinepos);
+					$pend = '';
 				}
-				case 'li': {
-					$this->addHTMLVertSpace($hbz, 0, $cell, $firstorlast);
-					if ($this->listordered[$this->listnum]) {
-						// ordered item
-						if (isset($parent['attribute']['type']) AND !$this->empty_string($parent['attribute']['type'])) {
-							$this->lispacer = $parent['attribute']['type'];
-						} elseif (isset($parent['listtype']) AND !$this->empty_string($parent['listtype'])) {
-							$this->lispacer = $parent['listtype'];
-						} elseif (isset($this->lisymbol) AND !$this->empty_string($this->lisymbol)) {
-							$this->lispacer = $this->lisymbol;
+			}
+			if ((isset($plalign) AND ((($plalign == 'C') OR (($plalign == 'R') AND (!$this->rtl)) OR (($plalign == 'L') AND ($this->rtl)))))) {
+				// calculate shifting amount
+				$tw = $w;
+				if ($this->lMargin != $prevlMargin) {
+					$tw += ($prevlMargin - $this->lMargin);
+				}
+				if ($this->rMargin != $prevrMargin) {
+					$tw += ($prevrMargin - $this->rMargin);
+				}
+				$one_space_width = $this->GetStringWidth(chr(32));
+				$no = 0; // number of spaces on a line contained on a single block
+				if ($this->isRTLTextDir()) { // RTL
+					// remove left space if exist
+					$pos1 = $this->revstrpos($pmid, '[(');
+					if ($pos1 > 0) {
+						$pos1 = intval($pos1);
+						if ($this->isUnicodeFont()) {
+							$pos2 = intval($this->revstrpos($pmid, '[('.chr(0).chr(32)));
+							$spacelen = 2;
 						} else {
-							$this->lispacer = '#';
+							$pos2 = intval($this->revstrpos($pmid, '[('.chr(32)));
+							$spacelen = 1;
 						}
-						++$this->listcount[$this->listnum];
-						if (isset($tag['attribute']['value'])) {
-							$this->listcount[$this->listnum] = intval($tag['attribute']['value']);
+						if ($pos1 == $pos2) {
+							$pmid = substr($pmid, 0, ($pos1 + 2)).substr($pmid, ($pos1 + 2 + $spacelen));
+							if (substr($pmid, $pos1, 4) == '[()]') {
+								$linew -= $one_space_width;
+							} elseif ($pos1 == strpos($pmid, '[(')) {
+								$no = 1;
+							}
 						}
-					} else {
-						// unordered item
-						if (isset($parent['attribute']['type']) AND !$this->empty_string($parent['attribute']['type'])) {
-							$this->lispacer = $parent['attribute']['type'];
-						} elseif (isset($parent['listtype']) AND !$this->empty_string($parent['listtype'])) {
-							$this->lispacer = $parent['listtype'];
-						} elseif (isset($this->lisymbol) AND !$this->empty_string($this->lisymbol)) {
-							$this->lispacer = $this->lisymbol;
+					}
+				} else { // LTR
+					// remove right space if exist
+					$pos1 = $this->revstrpos($pmid, ')]');
+					if ($pos1 > 0) {
+						$pos1 = intval($pos1);
+						if ($this->isUnicodeFont()) {
+							$pos2 = intval($this->revstrpos($pmid, chr(0).chr(32).')]')) + 2;
+							$spacelen = 2;
 						} else {
-							$this->lispacer = '!';
+							$pos2 = intval($this->revstrpos($pmid, chr(32).')]')) + 1;
+							$spacelen = 1;
+						}
+						if ($pos1 == $pos2) {
+							$pmid = substr($pmid, 0, ($pos1 - $spacelen)).substr($pmid, $pos1);
+							$linew -= $one_space_width;
 						}
 					}
-					break;
 				}
-				case 'blockquote': {
+				$mdiff = ($tw - $linew);
+				if ($plalign == 'C') {
 					if ($this->rtl) {
-						$this->rMargin += $this->listindent;
+						$t_x = -($mdiff / 2);
 					} else {
-						$this->lMargin += $this->listindent;
+						$t_x = ($mdiff / 2);
+					}
+				} elseif ($plalign == 'R') {
+					// right alignment on LTR document
+					$t_x = $mdiff;
+				} elseif ($plalign == 'L') {
+					// left alignment on RTL document
+					$t_x = -$mdiff;
+				}
+			} // end if startlinex
+			if (($t_x != 0) OR ($yshift < 0)) {
+				// shift the line
+				$trx = sprintf('1 0 0 1 %.3F %.3F cm', ($t_x * $this->k), ($yshift * $this->k));
+				$pstart .= "\nq\n".$trx."\n".$pmid."\nQ\n";
+				$endlinepos = strlen($pstart);
+				if ($this->inxobj) {
+					// we are inside an XObject template
+					$this->xobjects[$this->xobjid]['outdata'] = $pstart.$pend;
+					foreach ($this->xobjects[$this->xobjid]['annotations'] as $pak => $pac) {
+						if ($pak >= $pask) {
+							$this->xobjects[$this->xobjid]['annotations'][$pak]['x'] += $t_x;
+							$this->xobjects[$this->xobjid]['annotations'][$pak]['y'] -= $yshift;
+						}
+					}
+				} else {
+					$this->setPageBuffer($startlinepage, $pstart.$pend);
+					// shift the annotations and links
+					if (isset($this->PageAnnots[$this->page])) {
+						foreach ($this->PageAnnots[$this->page] as $pak => $pac) {
+							if ($pak >= $pask) {
+								$this->PageAnnots[$this->page][$pak]['x'] += $t_x;
+								$this->PageAnnots[$this->page][$pak]['y'] -= $yshift;
+							}
+						}
 					}
-					++$this->listindentlevel;
-					$this->addHTMLVertSpace($hbz, $hb, $cell, $firstorlast);
-					break;
-				}
-				case 'br': {
-					$this->addHTMLVertSpace($hbz, 0, $cell, $firstorlast);
-					break;
 				}
-				case 'div': {
-					$this->addHTMLVertSpace($hbz, 0, $cell, $firstorlast);
-					break;
+				$this->y -= $yshift;
+			}
+		}
+		// restore previous values
+		$this->setGraphicVars($gvars);
+		if ($this->num_columns > 1) {
+			$this->selectColumn();
+		} elseif ($this->page > $prevPage) {
+			$this->lMargin = $this->pagedim[$this->page]['olm'];
+			$this->rMargin = $this->pagedim[$this->page]['orm'];
+		}
+		// restore previous list state
+		$this->cell_height_ratio = $prev_cell_height_ratio;
+		$this->listnum = $prev_listnum;
+		$this->listordered = $prev_listordered;
+		$this->listcount = $prev_listcount;
+		$this->lispacer = $prev_lispacer;
+		if ($ln AND (!($cell AND ($dom[$key-1]['value'] == 'table')))) {
+			$this->Ln($this->lasth);
+			if ($this->y < $maxbottomliney) {
+				$this->y = $maxbottomliney;
+			}
+		}
+		unset($dom);
+	}
+
+	/**
+	 * Process opening tags.
+	 * @param $dom (array) html dom array
+	 * @param $key (int) current element id
+	 * @param $cell (boolean) if true add the default left (or right if RTL) padding to each new line (default false).
+	 * @protected
+	 */
+	protected function openHTMLTagHandler(&$dom, $key, $cell) {
+		$tag = $dom[$key];
+		$parent = $dom[($dom[$key]['parent'])];
+		$firsttag = ($key == 1);
+		// check for text direction attribute
+		if (isset($tag['dir'])) {
+			$this->setTempRTL($tag['dir']);
+		} else {
+			$this->tmprtl = false;
+		}
+		if ($tag['block']) {
+			$hbz = 0; // distance from y to line bottom
+			$hb = 0; // vertical space between block tags
+			// calculate vertical space for block tags
+			if (isset($this->tagvspaces[$tag['value']][0]['h']) AND ($this->tagvspaces[$tag['value']][0]['h'] >= 0)) {
+				$cur_h = $this->tagvspaces[$tag['value']][0]['h'];
+			} elseif (isset($tag['fontsize'])) {
+				$cur_h = ($tag['fontsize'] / $this->k) * $this->cell_height_ratio;
+			} else {
+				$cur_h = $this->FontSize * $this->cell_height_ratio;
+			}
+			if (isset($this->tagvspaces[$tag['value']][0]['n'])) {
+				$n = $this->tagvspaces[$tag['value']][0]['n'];
+			} elseif (preg_match('/[h][0-9]/', $tag['value']) > 0) {
+				$n = 0.6;
+			} else {
+				$n = 1;
+			}
+			$hb = ($n * $cur_h);
+			if (($this->htmlvspace <= 0) AND ($n > 0)) {
+				if (isset($parent['fontsize'])) {
+					$hbz = (($parent['fontsize'] / $this->k) * $this->cell_height_ratio);
+				} else {
+					$hbz = $this->FontSize * $this->cell_height_ratio;
 				}
-				case 'p': {
-					$this->addHTMLVertSpace($hbz, $hb, $cell, $firstorlast);
-					break;
+			}
+		}
+		// Opening tag
+		switch($tag['value']) {
+			case 'table': {
+				$cp = 0;
+				$cs = 0;
+				$dom[$key]['rowspans'] = array();
+				if (!isset($dom[$key]['attribute']['nested']) OR ($dom[$key]['attribute']['nested'] != 'true')) {
+					// set table header
+					if (!$this->empty_string($dom[$key]['thead'])) {
+						// set table header
+						$this->thead = $dom[$key]['thead'];
+						if (!isset($this->theadMargins) OR (empty($this->theadMargins))) {
+							$this->theadMargins = array();
+							$this->theadMargins['cell_padding'] = $this->cell_padding;
+							$this->theadMargins['lmargin'] = $this->lMargin;
+							$this->theadMargins['rmargin'] = $this->rMargin;
+							$this->theadMargins['page'] = $this->page;
+						}
+					}
 				}
-				case 'pre': {
-					$this->addHTMLVertSpace($hbz, $hb, $cell, $firstorlast);
-					$this->premode = true;
-					break;
+				// store current margins and page
+				$dom[$key]['old_cell_padding'] = $this->cell_padding;
+				if (isset($tag['attribute']['cellpadding'])) {
+					$pad = $this->getHTMLUnitToUnits($tag['attribute']['cellpadding'], 1, 'px');
+					$this->SetCellPadding($pad);
+				} elseif (isset($tag['padding'])) {
+					$this->cell_padding = $tag['padding'];
 				}
-				case 'sup': {
-					$this->SetXY($this->GetX(), $this->GetY() - ((0.7 * $this->FontSizePt) / $this->k));
-					break;
+				if (isset($tag['attribute']['cellspacing'])) {
+					$cs = $this->getHTMLUnitToUnits($tag['attribute']['cellspacing'], 1, 'px');
+				} elseif (isset($tag['border-spacing'])) {
+					$cs = $tag['border-spacing']['V'];
 				}
-				case 'sub': {
-					$this->SetXY($this->GetX(), $this->GetY() + ((0.3 * $this->FontSizePt) / $this->k));
-					break;
+				$prev_y = $this->y;
+				if ($this->checkPageBreak(((2 * $cp) + (2 * $cs) + $this->lasth), '', false) OR ($this->y < $prev_y)) {
+					$this->inthead = true;
+					// add a page (or trig AcceptPageBreak() for multicolumn mode)
+					$this->checkPageBreak($this->PageBreakTrigger + 1);
 				}
-				case 'h1':
-				case 'h2':
-				case 'h3':
-				case 'h4':
-				case 'h5':
-				case 'h6': {
-					$this->addHTMLVertSpace($hbz, $hb, $cell, $firstorlast);
-					break;
+				break;
+			}
+			case 'tr': {
+				// array of columns positions
+				$dom[$key]['cellpos'] = array();
+				break;
+			}
+			case 'hr': {
+				if ((isset($tag['height'])) AND ($tag['height'] != '')) {
+					$hrHeight = $this->getHTMLUnitToUnits($tag['height'], 1, 'px');
+				} else {
+					$hrHeight = $this->GetLineWidth();
 				}
-				// Form fields (since 4.8.000 - 2009-09-07)
-				case 'form': {
-					if (isset($tag['attribute']['action'])) {
-						$this->form_action = $tag['attribute']['action'];
-					} else {
-						$this->form_action = K_PATH_URL.$_SERVER['SCRIPT_NAME'];
-					}
-					if (isset($tag['attribute']['enctype'])) {
-						$this->form_enctype = $tag['attribute']['enctype'];
-					} else {
-						$this->form_enctype = 'application/x-www-form-urlencoded';
-					}
-					if (isset($tag['attribute']['method'])) {
-						$this->form_mode = $tag['attribute']['method'];
-					} else {
-						$this->form_mode = 'post';
-					}
-					break;
+				$this->addHTMLVertSpace($hbz, ($hrHeight / 2), $cell, $firsttag);
+				$x = $this->GetX();
+				$y = $this->GetY();
+				$wtmp = $this->w - $this->lMargin - $this->rMargin;
+				if ($cell) {
+					$wtmp -= ($this->cell_padding['L'] + $this->cell_padding['R']);
 				}
-				case 'input': {
-					if (isset($tag['attribute']['name']) AND !$this->empty_string($tag['attribute']['name'])) {
-						$name = $tag['attribute']['name'];
-					} else {
-						break;
-					}
-					$prop = array();
-					$opt = array();
-					if (isset($tag['attribute']['readonly']) AND !$this->empty_string($tag['attribute']['readonly'])) {
-						$prop['readonly'] = true;
-					}
-					if (isset($tag['attribute']['value']) AND !$this->empty_string($tag['attribute']['value'])) {
-						$value = $tag['attribute']['value'];
-					}
-					if (isset($tag['attribute']['maxlength']) AND !$this->empty_string($tag['attribute']['maxlength'])) {
-						$opt['maxlen'] = intval($tag['attribute']['value']);
-					}
-					$h = $this->FontSize * $this->cell_height_ratio;
-					if (isset($tag['attribute']['size']) AND !$this->empty_string($tag['attribute']['size'])) {
-						$w = intval($tag['attribute']['size']) * $this->GetStringWidth(chr(32)) * 2;
-					} else {
-						$w = $h;
-					}
-					if (isset($tag['attribute']['checked']) AND (($tag['attribute']['checked'] == 'checked') OR ($tag['attribute']['checked'] == 'true'))) {
-						$checked = true;
-					} else {
-						$checked = false;
-					}
-					switch ($tag['attribute']['type']) {
-						case 'text': {
-							if (isset($value)) {
-								$opt['v'] = $value;
-							}
-							$this->TextField($name, $w, $h, $prop, $opt, '', '', false);
-							break;
-						}
-						case 'password': {
-							if (isset($value)) {
-								$opt['v'] = $value;
-							}
-							$prop['password'] = 'true';
-							$this->TextField($name, $w, $h, $prop, $opt, '', '', false);
-							break;
-						}
-						case 'checkbox': {
-							$this->CheckBox($name, $w, $checked, $prop, $opt, $value, '', '', false);
+				if ((isset($tag['width'])) AND ($tag['width'] != '')) {
+					$hrWidth = $this->getHTMLUnitToUnits($tag['width'], $wtmp, 'px');
+				} else {
+					$hrWidth = $wtmp;
+				}
+				$prevlinewidth = $this->GetLineWidth();
+				$this->SetLineWidth($hrHeight);
+				$this->Line($x, $y, $x + $hrWidth, $y);
+				$this->SetLineWidth($prevlinewidth);
+				$this->addHTMLVertSpace(($hrHeight / 2), 0, $cell, !isset($dom[($key + 1)]));
+				break;
+			}
+			case 'a': {
+				if (array_key_exists('href', $tag['attribute'])) {
+					$this->HREF['url'] = $tag['attribute']['href'];
+				}
+				break;
+			}
+			case 'img': {
+				if (isset($tag['attribute']['src'])) {
+					// replace relative path with real server path
+					if (($tag['attribute']['src'][0] == '/') AND ($_SERVER['DOCUMENT_ROOT'] != '/')) {
+						$findroot = strpos($tag['attribute']['src'], $_SERVER['DOCUMENT_ROOT']);
+						if (($findroot === false) OR ($findroot > 1)) {
+							$tag['attribute']['src'] = $_SERVER['DOCUMENT_ROOT'].$tag['attribute']['src'];
+						}
+					}
+					$tag['attribute']['src'] = urldecode($tag['attribute']['src']);
+					$type = $this->getImageFileType($tag['attribute']['src']);
+					$testscrtype = @parse_url($tag['attribute']['src']);
+					if (!isset($testscrtype['query']) OR empty($testscrtype['query'])) {
+						// convert URL to server path
+						$tag['attribute']['src'] = str_replace(K_PATH_URL, K_PATH_MAIN, $tag['attribute']['src']);
+					}
+					if (!isset($tag['width'])) {
+						$tag['width'] = 0;
+					}
+					if (!isset($tag['height'])) {
+						$tag['height'] = 0;
+					}
+					//if (!isset($tag['attribute']['align'])) {
+						// the only alignment supported is "bottom"
+						// further development is required for other modes.
+						$tag['attribute']['align'] = 'bottom';
+					//}
+					switch($tag['attribute']['align']) {
+						case 'top': {
+							$align = 'T';
 							break;
 						}
-						case 'radio': {
-							$this->RadioButton($name, $w, $prop, $opt, $value, $checked, '', '', false);
+						case 'middle': {
+							$align = 'M';
 							break;
 						}
-						case 'submit': {
-							$w = $this->GetStringWidth($value) * 1.5;
-							$h *= 1.6;
-							$prop = array('lineWidth'=>1, 'borderStyle'=>'beveled', 'fillColor'=>array(196, 196, 196), 'strokeColor'=>array(255, 255, 255));
-							$action = array();
-							$action['S'] = 'SubmitForm';
-							$action['F'] = $this->form_action;
-							if ($this->form_enctype != 'FDF') {
-								$action['Flags'] = array('ExportFormat');
-							}
-							if ($this->form_mode == 'get') {
-								$action['Flags'] = array('GetMethod');
-							}
-							$this->Button($name, $w, $h, $value, $action, $prop, $opt, '', '', false);
+						case 'bottom': {
+							$align = 'B';
 							break;
 						}
-						case 'reset': {
-							$w = $this->GetStringWidth($value) * 1.5;
-							$h *= 1.6;
-							$prop = array('lineWidth'=>1, 'borderStyle'=>'beveled', 'fillColor'=>array(196, 196, 196), 'strokeColor'=>array(255, 255, 255));
-							$this->Button($name, $w, $h, $value, array('S'=>'ResetForm'), $prop, $opt, '', '', false);
+						default: {
+							$align = 'B';
 							break;
 						}
-						case 'file': {
-							$prop['fileSelect'] = 'true';
-							$this->TextField($name, $w, $h, $prop, $opt, '', '', false);
-							if (!isset($value)) {
-								$value = '*';
+					}
+					$prevy = $this->y;
+					$xpos = $this->x;
+					// eliminate marker spaces
+					if (isset($dom[($key - 1)])) {
+						if (($dom[($key - 1)]['value'] == ' ') OR (isset($dom[($key - 1)]['trimmed_space']))) {
+							$xpos -= $this->GetStringWidth(chr(32));
+						} elseif ($this->rtl AND $dom[($key - 1)]['value'] == '  ') {
+							$xpos += (2 * $this->GetStringWidth(chr(32)));
+						}
+					}
+					$imglink = '';
+					if (isset($this->HREF['url']) AND !$this->empty_string($this->HREF['url'])) {
+						$imglink = $this->HREF['url'];
+						if ($imglink{0} == '#') {
+							// convert url to internal link
+							$lnkdata = explode(',', $imglink);
+							if (isset($lnkdata[0])) {
+								$page = intval(substr($lnkdata[0], 1));
+								if (empty($page) OR ($page <= 0)) {
+									$page = $this->page;
+								}
+								if (isset($lnkdata[1]) AND (strlen($lnkdata[1]) > 0)) {
+									$lnky = floatval($lnkdata[1]);
+								} else {
+									$lnky = 0;
+								}
+								$imglink = $this->AddLink();
+								$this->SetLink($imglink, $lnky, $page);
 							}
-							$w = $this->GetStringWidth($value) * 2;
-							$h *= 1.2;
-							$prop = array('lineWidth'=>1, 'borderStyle'=>'beveled', 'fillColor'=>array(196, 196, 196), 'strokeColor'=>array(255, 255, 255));
-							$jsaction = 'var f=this.getField(\''.$name.'\'); f.browseForFileToSubmit();';
-							$this->Button('FB_'.$name, $w, $h, $value, $jsaction, $prop, $opt, '', '', false);
-							break;
 						}
-						case 'hidden': {
-							if (isset($value)) {
-								$opt['v'] = $value;
-							}
-							$opt['f'] = array('invisible', 'hidden');
-							$this->TextField($name, 0, 0, $prop, $opt, '', '', false);
+					}
+					$border = 0;
+					if (isset($tag['border']) AND !empty($tag['border'])) {
+						// currently only support 1 (frame) or a combination of 'LTRB'
+						$border = $tag['border'];
+					}
+					$iw = '';
+					if (isset($tag['width'])) {
+						$iw = $this->getHTMLUnitToUnits($tag['width'], 1, 'px', false);
+					}
+					$ih = '';
+					if (isset($tag['height'])) {
+						$ih = $this->getHTMLUnitToUnits($tag['height'], 1, 'px', false);
+					}
+					if (($type == 'eps') OR ($type == 'ai')) {
+						$this->ImageEps($tag['attribute']['src'], $xpos, $this->y, $iw, $ih, $imglink, true, $align, '', $border, true);
+					} elseif ($type == 'svg') {
+						$this->ImageSVG($tag['attribute']['src'], $xpos, $this->y, $iw, $ih, $imglink, $align, '', $border, true);
+					} else {
+						$this->Image($tag['attribute']['src'], $xpos, $this->y, $iw, $ih, '', $imglink, $align, false, 300, '', false, false, $border, false, false, true);
+					}
+					switch($align) {
+						case 'T': {
+							$this->y = $prevy;
 							break;
 						}
-						case 'image': {
-							// THIS TYPE MUST BE FIXED
-							if (isset($tag['attribute']['src']) AND !$this->empty_string($tag['attribute']['src'])) {
-								$img = $tag['attribute']['src'];
-							} else {
-								break;
-							}
-							$value = 'img';
-							//$opt['mk'] = array('i'=>$img, 'tp'=>1, 'if'=>array('sw'=>'A', 's'=>'A', 'fb'=>false));
-							if (isset($tag['attribute']['onclick']) AND !empty($tag['attribute']['onclick'])) {
-								$jsaction = $tag['attribute']['onclick'];
-							} else {
-								$jsaction = '';
-							}
-							$this->Button($name, $w, $h, $value, $jsaction, $prop, $opt, '', '', false);
+						case 'M': {
+							$this->y = (($this->img_rb_y + $prevy - ($tag['fontsize'] / $this->k)) / 2) ;
 							break;
 						}
-						case 'button': {
-							$w = $this->GetStringWidth($value) * 1.5;
-							$h *= 1.6;
-							$prop = array('lineWidth'=>1, 'borderStyle'=>'beveled', 'fillColor'=>array(196, 196, 196), 'strokeColor'=>array(255, 255, 255));
-							if (isset($tag['attribute']['onclick']) AND !empty($tag['attribute']['onclick'])) {
-								$jsaction = $tag['attribute']['onclick'];
-							} else {
-								$jsaction = '';
-							}
-							$this->Button($name, $w, $h, $value, $jsaction, $prop, $opt, '', '', false);
+						case 'B': {
+							$this->y = $this->img_rb_y - ($tag['fontsize'] / $this->k);
 							break;
 						}
 					}
-					break;
 				}
-				case 'textarea': {
-					$prop = array();
-					$opt = array();
-					if (isset($tag['attribute']['readonly']) AND !$this->empty_string($tag['attribute']['readonly'])) {
-						$prop['readonly'] = true;
-					}
-					if (isset($tag['attribute']['name']) AND !$this->empty_string($tag['attribute']['name'])) {
-						$name = $tag['attribute']['name'];
+				break;
+			}
+			case 'dl': {
+				++$this->listnum;
+				if ($this->listnum == 1) {
+					$this->addHTMLVertSpace($hbz, $hb, $cell, $firsttag);
+				} else {
+					$this->addHTMLVertSpace(0, 0, $cell, $firsttag);
+				}
+				break;
+			}
+			case 'dt': {
+				$this->addHTMLVertSpace($hbz, 0, $cell, $firsttag);
+				break;
+			}
+			case 'dd': {
+				if ($this->rtl) {
+					$this->rMargin += $this->listindent;
+				} else {
+					$this->lMargin += $this->listindent;
+				}
+				++$this->listindentlevel;
+				$this->addHTMLVertSpace($hbz, 0, $cell, $firsttag);
+				break;
+			}
+			case 'ul':
+			case 'ol': {
+				++$this->listnum;
+				if ($tag['value'] == 'ol') {
+					$this->listordered[$this->listnum] = true;
+				} else {
+					$this->listordered[$this->listnum] = false;
+				}
+				if (isset($tag['attribute']['start'])) {
+					$this->listcount[$this->listnum] = intval($tag['attribute']['start']) - 1;
+				} else {
+					$this->listcount[$this->listnum] = 0;
+				}
+				if ($this->rtl) {
+					$this->rMargin += $this->listindent;
+					$this->x -= $this->listindent;
+				} else {
+					$this->lMargin += $this->listindent;
+					$this->x += $this->listindent;
+				}
+				++$this->listindentlevel;
+				if ($this->listnum == 1) {
+					$this->addHTMLVertSpace($hbz, $hb, $cell, $firsttag);
+				} else {
+					$this->addHTMLVertSpace(0, 0, $cell, $firsttag);
+				}
+				break;
+			}
+			case 'li': {
+				$this->addHTMLVertSpace($hbz, 0, $cell, $firsttag);
+				if ($this->listordered[$this->listnum]) {
+					// ordered item
+					if (isset($parent['attribute']['type']) AND !$this->empty_string($parent['attribute']['type'])) {
+						$this->lispacer = $parent['attribute']['type'];
+					} elseif (isset($parent['listtype']) AND !$this->empty_string($parent['listtype'])) {
+						$this->lispacer = $parent['listtype'];
+					} elseif (isset($this->lisymbol) AND !$this->empty_string($this->lisymbol)) {
+						$this->lispacer = $this->lisymbol;
 					} else {
-						break;
+						$this->lispacer = '#';
 					}
-					if (isset($tag['attribute']['value']) AND !$this->empty_string($tag['attribute']['value'])) {
-						$opt['v'] = $tag['attribute']['value'];
+					++$this->listcount[$this->listnum];
+					if (isset($tag['attribute']['value'])) {
+						$this->listcount[$this->listnum] = intval($tag['attribute']['value']);
 					}
-					if (isset($tag['attribute']['cols']) AND !$this->empty_string($tag['attribute']['cols'])) {
-						$w = intval($tag['attribute']['cols']) * $this->GetStringWidth(chr(32)) * 2;
-					} else {
-						$w = 40;
-					}
-					if (isset($tag['attribute']['rows']) AND !$this->empty_string($tag['attribute']['rows'])) {
-						$h = intval($tag['attribute']['rows']) * $this->FontSize * $this->cell_height_ratio;
+				} else {
+					// unordered item
+					if (isset($parent['attribute']['type']) AND !$this->empty_string($parent['attribute']['type'])) {
+						$this->lispacer = $parent['attribute']['type'];
+					} elseif (isset($parent['listtype']) AND !$this->empty_string($parent['listtype'])) {
+						$this->lispacer = $parent['listtype'];
+					} elseif (isset($this->lisymbol) AND !$this->empty_string($this->lisymbol)) {
+						$this->lispacer = $this->lisymbol;
 					} else {
-						$h = 10;
+						$this->lispacer = '!';
 					}
-					$prop['multiline'] = 'true';
-					$this->TextField($name, $w, $h, $prop, $opt, '', '', false);
+				}
+				break;
+			}
+			case 'blockquote': {
+				if ($this->rtl) {
+					$this->rMargin += $this->listindent;
+				} else {
+					$this->lMargin += $this->listindent;
+				}
+				++$this->listindentlevel;
+				$this->addHTMLVertSpace($hbz, $hb, $cell, $firsttag);
+				break;
+			}
+			case 'br': {
+				$this->addHTMLVertSpace($hbz, 0, $cell, $firsttag);
+				break;
+			}
+			case 'div': {
+				$this->addHTMLVertSpace($hbz, 0, $cell, $firsttag);
+				break;
+			}
+			case 'p': {
+				$this->addHTMLVertSpace($hbz, $hb, $cell, $firsttag);
+				break;
+			}
+			case 'pre': {
+				$this->addHTMLVertSpace($hbz, $hb, $cell, $firsttag);
+				$this->premode = true;
+				break;
+			}
+			case 'sup': {
+				$this->SetXY($this->GetX(), $this->GetY() - ((0.7 * $this->FontSizePt) / $this->k));
+				break;
+			}
+			case 'sub': {
+				$this->SetXY($this->GetX(), $this->GetY() + ((0.3 * $this->FontSizePt) / $this->k));
+				break;
+			}
+			case 'h1':
+			case 'h2':
+			case 'h3':
+			case 'h4':
+			case 'h5':
+			case 'h6': {
+				$this->addHTMLVertSpace($hbz, $hb, $cell, $firsttag);
+				break;
+			}
+			// Form fields (since 4.8.000 - 2009-09-07)
+			case 'form': {
+				if (isset($tag['attribute']['action'])) {
+					$this->form_action = $tag['attribute']['action'];
+				} else {
+					$this->form_action = K_PATH_URL.$_SERVER['SCRIPT_NAME'];
+				}
+				if (isset($tag['attribute']['enctype'])) {
+					$this->form_enctype = $tag['attribute']['enctype'];
+				} else {
+					$this->form_enctype = 'application/x-www-form-urlencoded';
+				}
+				if (isset($tag['attribute']['method'])) {
+					$this->form_mode = $tag['attribute']['method'];
+				} else {
+					$this->form_mode = 'post';
+				}
+				break;
+			}
+			case 'input': {
+				if (isset($tag['attribute']['name']) AND !$this->empty_string($tag['attribute']['name'])) {
+					$name = $tag['attribute']['name'];
+				} else {
 					break;
 				}
-				case 'select': {
-					$h = $this->FontSize * $this->cell_height_ratio;
-					if (isset($tag['attribute']['size']) AND !$this->empty_string($tag['attribute']['size'])) {
-						$h *= ($tag['attribute']['size'] + 1);
+				$prop = array();
+				$opt = array();
+				if (isset($tag['attribute']['readonly']) AND !$this->empty_string($tag['attribute']['readonly'])) {
+					$prop['readonly'] = true;
+				}
+				if (isset($tag['attribute']['value']) AND !$this->empty_string($tag['attribute']['value'])) {
+					$value = $tag['attribute']['value'];
+				}
+				if (isset($tag['attribute']['maxlength']) AND !$this->empty_string($tag['attribute']['maxlength'])) {
+					$opt['maxlen'] = intval($tag['attribute']['value']);
+				}
+				$h = $this->FontSize * $this->cell_height_ratio;
+				if (isset($tag['attribute']['size']) AND !$this->empty_string($tag['attribute']['size'])) {
+					$w = intval($tag['attribute']['size']) * $this->GetStringWidth(chr(32)) * 2;
+				} else {
+					$w = $h;
+				}
+				if (isset($tag['attribute']['checked']) AND (($tag['attribute']['checked'] == 'checked') OR ($tag['attribute']['checked'] == 'true'))) {
+					$checked = true;
+				} else {
+					$checked = false;
+				}
+				switch ($tag['attribute']['type']) {
+					case 'text': {
+						if (isset($value)) {
+							$opt['v'] = $value;
+						}
+						$this->TextField($name, $w, $h, $prop, $opt, '', '', false);
+						break;
 					}
-					$prop = array();
-					$opt = array();
-					if (isset($tag['attribute']['name']) AND !$this->empty_string($tag['attribute']['name'])) {
-						$name = $tag['attribute']['name'];
-					} else {
+					case 'password': {
+						if (isset($value)) {
+							$opt['v'] = $value;
+						}
+						$prop['password'] = 'true';
+						$this->TextField($name, $w, $h, $prop, $opt, '', '', false);
 						break;
 					}
-					$w = 0;
-					if (isset($tag['attribute']['opt']) AND !$this->empty_string($tag['attribute']['opt'])) {
-						$options = explode ("\r", $tag['attribute']['opt']);
-						$values = array();
-						foreach ($options as $val) {
-							if (strpos($val, "\t") !== false) {
-								$opts = explode("\t", $val);
-								$values[] = $opts;
-								$w = max($w, $this->GetStringWidth($opts[1]));
-							} else {
-								$values[] = $val;
-								$w = max($w, $this->GetStringWidth($val));
-							}
+					case 'checkbox': {
+						$this->CheckBox($name, $w, $checked, $prop, $opt, $value, '', '', false);
+						break;
+					}
+					case 'radio': {
+						$this->RadioButton($name, $w, $prop, $opt, $value, $checked, '', '', false);
+						break;
+					}
+					case 'submit': {
+						$w = $this->GetStringWidth($value) * 1.5;
+						$h *= 1.6;
+						$prop = array('lineWidth'=>1, 'borderStyle'=>'beveled', 'fillColor'=>array(196, 196, 196), 'strokeColor'=>array(255, 255, 255));
+						$action = array();
+						$action['S'] = 'SubmitForm';
+						$action['F'] = $this->form_action;
+						if ($this->form_enctype != 'FDF') {
+							$action['Flags'] = array('ExportFormat');
 						}
-					} else {
+						if ($this->form_mode == 'get') {
+							$action['Flags'] = array('GetMethod');
+						}
+						$this->Button($name, $w, $h, $value, $action, $prop, $opt, '', '', false);
 						break;
 					}
-					$w *= 2;
-					if (isset($tag['attribute']['multiple']) AND ($tag['attribute']['multiple']='multiple')) {
-						$prop['multipleSelection'] = 'true';
-						$this->ListBox($name, $w, $h, $values, $prop, $opt, '', '', false);
-					} else {
-						$this->ComboBox($name, $w, $h, $values, $prop, $opt, '', '', false);
+					case 'reset': {
+						$w = $this->GetStringWidth($value) * 1.5;
+						$h *= 1.6;
+						$prop = array('lineWidth'=>1, 'borderStyle'=>'beveled', 'fillColor'=>array(196, 196, 196), 'strokeColor'=>array(255, 255, 255));
+						$this->Button($name, $w, $h, $value, array('S'=>'ResetForm'), $prop, $opt, '', '', false);
+						break;
 					}
-					break;
-				}
-				case 'tcpdf': {
-					if (defined('K_TCPDF_CALLS_IN_HTML') AND (K_TCPDF_CALLS_IN_HTML === true)) {
-						// Special tag used to call TCPDF methods
-						if (isset($tag['attribute']['method'])) {
-							$tcpdf_method = $tag['attribute']['method'];
-							if (method_exists($this, $tcpdf_method)) {
-								if (isset($tag['attribute']['params']) AND (!empty($tag['attribute']['params']))) {
-									$params = unserialize(urldecode($tag['attribute']['params']));
-									call_user_func_array(array($this, $tcpdf_method), $params);
-								} else {
-									$this->$tcpdf_method();
-								}
-								$this->newline = true;
-							}
+					case 'file': {
+						$prop['fileSelect'] = 'true';
+						$this->TextField($name, $w, $h, $prop, $opt, '', '', false);
+						if (!isset($value)) {
+							$value = '*';
+						}
+						$w = $this->GetStringWidth($value) * 2;
+						$h *= 1.2;
+						$prop = array('lineWidth'=>1, 'borderStyle'=>'beveled', 'fillColor'=>array(196, 196, 196), 'strokeColor'=>array(255, 255, 255));
+						$jsaction = 'var f=this.getField(\''.$name.'\'); f.browseForFileToSubmit();';
+						$this->Button('FB_'.$name, $w, $h, $value, $jsaction, $prop, $opt, '', '', false);
+						break;
+					}
+					case 'hidden': {
+						if (isset($value)) {
+							$opt['v'] = $value;
 						}
+						$opt['f'] = array('invisible', 'hidden');
+						$this->TextField($name, 0, 0, $prop, $opt, '', '', false);
+						break;
+					}
+					case 'image': {
+						// THIS TYPE MUST BE FIXED
+						if (isset($tag['attribute']['src']) AND !$this->empty_string($tag['attribute']['src'])) {
+							$img = $tag['attribute']['src'];
+						} else {
+							break;
+						}
+						$value = 'img';
+						//$opt['mk'] = array('i'=>$img, 'tp'=>1, 'if'=>array('sw'=>'A', 's'=>'A', 'fb'=>false));
+						if (isset($tag['attribute']['onclick']) AND !empty($tag['attribute']['onclick'])) {
+							$jsaction = $tag['attribute']['onclick'];
+						} else {
+							$jsaction = '';
+						}
+						$this->Button($name, $w, $h, $value, $jsaction, $prop, $opt, '', '', false);
+						break;
+					}
+					case 'button': {
+						$w = $this->GetStringWidth($value) * 1.5;
+						$h *= 1.6;
+						$prop = array('lineWidth'=>1, 'borderStyle'=>'beveled', 'fillColor'=>array(196, 196, 196), 'strokeColor'=>array(255, 255, 255));
+						if (isset($tag['attribute']['onclick']) AND !empty($tag['attribute']['onclick'])) {
+							$jsaction = $tag['attribute']['onclick'];
+						} else {
+							$jsaction = '';
+						}
+						$this->Button($name, $w, $h, $value, $jsaction, $prop, $opt, '', '', false);
+						break;
 					}
-					break;
 				}
-				default: {
+				break;
+			}
+			case 'textarea': {
+				$prop = array();
+				$opt = array();
+				if (isset($tag['attribute']['readonly']) AND !$this->empty_string($tag['attribute']['readonly'])) {
+					$prop['readonly'] = true;
+				}
+				if (isset($tag['attribute']['name']) AND !$this->empty_string($tag['attribute']['name'])) {
+					$name = $tag['attribute']['name'];
+				} else {
 					break;
 				}
-			}
-			if ($dom[$key]['self'] AND isset($dom[$key]['attribute']['pagebreakafter'])) {
-				$pba = $dom[$key]['attribute']['pagebreakafter'];
-				// check for pagebreak
-				if (($pba == 'true') OR ($pba == 'left') OR ($pba == 'right')) {
-					// add a page (or trig AcceptPageBreak() for multicolumn mode)
-					$this->checkPageBreak($this->PageBreakTrigger + 1);
+				if (isset($tag['attribute']['value']) AND !$this->empty_string($tag['attribute']['value'])) {
+					$opt['v'] = $tag['attribute']['value'];
 				}
-				if ((($pba == 'left') AND (((!$this->rtl) AND (($this->page % 2) == 0)) OR (($this->rtl) AND (($this->page % 2) != 0))))
-					OR (($pba == 'right') AND (((!$this->rtl) AND (($this->page % 2) != 0)) OR (($this->rtl) AND (($this->page % 2) == 0))))) {
-					// add a page (or trig AcceptPageBreak() for multicolumn mode)
-					$this->checkPageBreak($this->PageBreakTrigger + 1);
+				if (isset($tag['attribute']['cols']) AND !$this->empty_string($tag['attribute']['cols'])) {
+					$w = intval($tag['attribute']['cols']) * $this->GetStringWidth(chr(32)) * 2;
+				} else {
+					$w = 40;
 				}
+				if (isset($tag['attribute']['rows']) AND !$this->empty_string($tag['attribute']['rows'])) {
+					$h = intval($tag['attribute']['rows']) * $this->FontSize * $this->cell_height_ratio;
+				} else {
+					$h = 10;
+				}
+				$prop['multiline'] = 'true';
+				$this->TextField($name, $w, $h, $prop, $opt, '', '', false);
+				break;
 			}
-		}
-
-		/**
-		 * Process closing tags.
-		 * @param array $dom html dom array
-		 * @param int $key current element id
-		 * @param boolean $cell if true add the default cMargin space to each new line (default false).
-		 * @param int $maxbottomliney maximum y value of current line
-		 * @access protected
-		 */
-		protected function closeHTMLTagHandler(&$dom, $key, $cell, $maxbottomliney=0) {
-			$tag = $dom[$key];
-			$parent = $dom[($dom[$key]['parent'])];
-			$firstorlast = ((!isset($dom[($key + 1)])) OR ((!isset($dom[($key + 2)])) AND ($dom[($key + 1)]['value'] == 'marker')));
-			$in_table_head = false;
-			if ($tag['block']) {
-				$hbz = 0; // distance from y to line bottom
-				$hb = 0; // vertical space between block tags
-				// calculate vertical space for block tags
-				if (isset($this->tagvspaces[$tag['value']][1]['h']) AND ($this->tagvspaces[$tag['value']][1]['h'] >= 0)) {
-					$pre_h = $this->tagvspaces[$tag['value']][1]['h'];
-				} elseif (isset($parent['fontsize'])) {
-					$pre_h = (($parent['fontsize'] / $this->k) * $this->cell_height_ratio);
+			case 'select': {
+				$h = $this->FontSize * $this->cell_height_ratio;
+				if (isset($tag['attribute']['size']) AND !$this->empty_string($tag['attribute']['size'])) {
+					$h *= ($tag['attribute']['size'] + 1);
+				}
+				$prop = array();
+				$opt = array();
+				if (isset($tag['attribute']['name']) AND !$this->empty_string($tag['attribute']['name'])) {
+					$name = $tag['attribute']['name'];
 				} else {
-					$pre_h = $this->FontSize * $this->cell_height_ratio;
+					break;
 				}
-				if (isset($this->tagvspaces[$tag['value']][1]['n'])) {
-					$n = $this->tagvspaces[$tag['value']][1]['n'];
-				} elseif (preg_match('/[h][0-9]/', $tag['value']) > 0) {
-					$n = 0.6;
+				$w = 0;
+				if (isset($tag['attribute']['opt']) AND !$this->empty_string($tag['attribute']['opt'])) {
+					$options = explode('#!NwL!#', $tag['attribute']['opt']);
+					$values = array();
+					foreach ($options as $val) {
+						if (strpos($val, '#!TaB!#') !== false) {
+							$opts = explode('#!TaB!#', $val);
+							$values[] = $opts;
+							$w = max($w, $this->GetStringWidth($opts[1]));
+						} else {
+							$values[] = $val;
+							$w = max($w, $this->GetStringWidth($val));
+						}
+					}
 				} else {
-					$n = 1;
+					break;
 				}
-				$hb = ($n * $pre_h);
-				if ($this->y < $maxbottomliney) {
-					$hbz = ($maxbottomliney - $this->y);
+				$w *= 2;
+				if (isset($tag['attribute']['multiple']) AND ($tag['attribute']['multiple']='multiple')) {
+					$prop['multipleSelection'] = 'true';
+					$this->ListBox($name, $w, $h, $values, $prop, $opt, '', '', false);
+				} else {
+					$this->ComboBox($name, $w, $h, $values, $prop, $opt, '', '', false);
 				}
+				break;
 			}
-			//Closing tag
-			switch($tag['value']) {
-				case 'tr': {
-					$table_el = $dom[($dom[$key]['parent'])]['parent'];
-					if (!isset($parent['endy'])) {
-						$dom[($dom[$key]['parent'])]['endy'] = $this->y;
-						$parent['endy'] = $this->y;
-					}
-					if (!isset($parent['endpage'])) {
-						$dom[($dom[$key]['parent'])]['endpage'] = $this->page;
-						$parent['endpage'] = $this->page;
-					}
-					// update row-spanned cells
-					if (isset($dom[$table_el]['rowspans'])) {
-						foreach ($dom[$table_el]['rowspans'] as $k => $trwsp) {
-							$dom[$table_el]['rowspans'][$k]['rowspan'] -= 1;
-							if ($dom[$table_el]['rowspans'][$k]['rowspan'] == 0) {
-								if ($dom[$table_el]['rowspans'][$k]['endpage'] == $parent['endpage']) {
-									$dom[($dom[$key]['parent'])]['endy'] = max($dom[$table_el]['rowspans'][$k]['endy'], $parent['endy']);
-								} elseif ($dom[$table_el]['rowspans'][$k]['endpage'] > $parent['endpage']) {
-									$dom[($dom[$key]['parent'])]['endy'] = $dom[$table_el]['rowspans'][$k]['endy'];
-									$dom[($dom[$key]['parent'])]['endpage'] = $dom[$table_el]['rowspans'][$k]['endpage'];
-								}
+			case 'tcpdf': {
+				if (defined('K_TCPDF_CALLS_IN_HTML') AND (K_TCPDF_CALLS_IN_HTML === true)) {
+					// Special tag used to call TCPDF methods
+					if (isset($tag['attribute']['method'])) {
+						$tcpdf_method = $tag['attribute']['method'];
+						if (method_exists($this, $tcpdf_method)) {
+							if (isset($tag['attribute']['params']) AND (!empty($tag['attribute']['params']))) {
+								$params = unserialize(urldecode($tag['attribute']['params']));
+								call_user_func_array(array($this, $tcpdf_method), $params);
+							} else {
+								$this->$tcpdf_method();
 							}
+							$this->newline = true;
 						}
-						// report new endy and endpage to the rowspanned cells
-						foreach ($dom[$table_el]['rowspans'] as $k => $trwsp) {
-							if ($dom[$table_el]['rowspans'][$k]['rowspan'] == 0) {
-								$dom[$table_el]['rowspans'][$k]['endpage'] = max($dom[$table_el]['rowspans'][$k]['endpage'], $dom[($dom[$key]['parent'])]['endpage']);
-								$dom[($dom[$key]['parent'])]['endpage'] = $dom[$table_el]['rowspans'][$k]['endpage'];
-								$dom[$table_el]['rowspans'][$k]['endy'] = max($dom[$table_el]['rowspans'][$k]['endy'], $dom[($dom[$key]['parent'])]['endy']);
+					}
+				}
+				break;
+			}
+			default: {
+				break;
+			}
+		}
+		// define tags that support borders and background colors
+		$bordertags = array('blockquote','br','dd','dl','div','dt','h1','h2','h3','h4','h5','h6','hr','li','ol','p','pre','ul','tcpdf','table');
+		if (in_array($tag['value'], $bordertags)) {
+			// set border
+			$dom[$key]['borderposition'] = $this->getBorderStartPosition();
+		}
+		if ($dom[$key]['self'] AND isset($dom[$key]['attribute']['pagebreakafter'])) {
+			$pba = $dom[$key]['attribute']['pagebreakafter'];
+			// check for pagebreak
+			if (($pba == 'true') OR ($pba == 'left') OR ($pba == 'right')) {
+				// add a page (or trig AcceptPageBreak() for multicolumn mode)
+				$this->checkPageBreak($this->PageBreakTrigger + 1);
+			}
+			if ((($pba == 'left') AND (((!$this->rtl) AND (($this->page % 2) == 0)) OR (($this->rtl) AND (($this->page % 2) != 0))))
+				OR (($pba == 'right') AND (((!$this->rtl) AND (($this->page % 2) != 0)) OR (($this->rtl) AND (($this->page % 2) == 0))))) {
+				// add a page (or trig AcceptPageBreak() for multicolumn mode)
+				$this->checkPageBreak($this->PageBreakTrigger + 1);
+			}
+		}
+	}
+
+	/**
+	 * Process closing tags.
+	 * @param $dom (array) html dom array
+	 * @param $key (int) current element id
+	 * @param $cell (boolean) if true add the default left (or right if RTL) padding to each new line (default false).
+	 * @param $maxbottomliney (int) maximum y value of current line
+	 * @protected
+	 */
+	protected function closeHTMLTagHandler(&$dom, $key, $cell, $maxbottomliney=0) {
+		$tag = $dom[$key];
+		$parent = $dom[($dom[$key]['parent'])];
+		$lasttag = ((!isset($dom[($key + 1)])) OR ((!isset($dom[($key + 2)])) AND ($dom[($key + 1)]['value'] == 'marker')));
+		$in_table_head = false;
+		// maximum x position (used to draw borders)
+		if ($this->rtl) {
+			$xmax = $this->w;
+		} else {
+			$xmax = 0;
+		}
+		if ($tag['block']) {
+			$hbz = 0; // distance from y to line bottom
+			$hb = 0; // vertical space between block tags
+			// calculate vertical space for block tags
+			if (isset($this->tagvspaces[$tag['value']][1]['h']) AND ($this->tagvspaces[$tag['value']][1]['h'] >= 0)) {
+				$pre_h = $this->tagvspaces[$tag['value']][1]['h'];
+			} elseif (isset($parent['fontsize'])) {
+				$pre_h = (($parent['fontsize'] / $this->k) * $this->cell_height_ratio);
+			} else {
+				$pre_h = $this->FontSize * $this->cell_height_ratio;
+			}
+			if (isset($this->tagvspaces[$tag['value']][1]['n'])) {
+				$n = $this->tagvspaces[$tag['value']][1]['n'];
+			} elseif (preg_match('/[h][0-9]/', $tag['value']) > 0) {
+				$n = 0.6;
+			} else {
+				$n = 1;
+			}
+			$hb = ($n * $pre_h);
+			if ($this->y < $maxbottomliney) {
+				$hbz = ($maxbottomliney - $this->y);
+			}
+		}
+		// Closing tag
+		switch($tag['value']) {
+			case 'tr': {
+				$table_el = $dom[($dom[$key]['parent'])]['parent'];
+				if (!isset($parent['endy'])) {
+					$dom[($dom[$key]['parent'])]['endy'] = $this->y;
+					$parent['endy'] = $this->y;
+				}
+				if (!isset($parent['endpage'])) {
+					$dom[($dom[$key]['parent'])]['endpage'] = $this->page;
+					$parent['endpage'] = $this->page;
+				}
+				if (!isset($parent['endcolumn'])) {
+					$dom[($dom[$key]['parent'])]['endcolumn'] = $this->current_column;
+					$parent['endcolumn'] = $this->current_column;
+				}
+				// update row-spanned cells
+				if (isset($dom[$table_el]['rowspans'])) {
+					foreach ($dom[$table_el]['rowspans'] as $k => $trwsp) {
+						$dom[$table_el]['rowspans'][$k]['rowspan'] -= 1;
+						if ($dom[$table_el]['rowspans'][$k]['rowspan'] == 0) {
+							if (($dom[$table_el]['rowspans'][$k]['endpage'] == $parent['endpage']) AND ($dom[$table_el]['rowspans'][$k]['endcolumn'] == $parent['endcolumn'])) {
+								$dom[($dom[$key]['parent'])]['endy'] = max($dom[$table_el]['rowspans'][$k]['endy'], $parent['endy']);
+							} elseif (($dom[$table_el]['rowspans'][$k]['endpage'] > $parent['endpage']) OR ($dom[$table_el]['rowspans'][$k]['endcolumn'] > $parent['endcolumn'])) {
 								$dom[($dom[$key]['parent'])]['endy'] = $dom[$table_el]['rowspans'][$k]['endy'];
+								$dom[($dom[$key]['parent'])]['endpage'] = $dom[$table_el]['rowspans'][$k]['endpage'];
+								$dom[($dom[$key]['parent'])]['endcolumn'] = $dom[$table_el]['rowspans'][$k]['endcolumn'];
 							}
 						}
-						// update remaining rowspanned cells
-						foreach ($dom[$table_el]['rowspans'] as $k => $trwsp) {
-							if ($dom[$table_el]['rowspans'][$k]['rowspan'] == 0) {
-								$dom[$table_el]['rowspans'][$k]['endpage'] = $dom[($dom[$key]['parent'])]['endpage'];
-								$dom[$table_el]['rowspans'][$k]['endy'] = $dom[($dom[$key]['parent'])]['endy'];
-							}
+					}
+					// report new endy and endpage to the rowspanned cells
+					foreach ($dom[$table_el]['rowspans'] as $k => $trwsp) {
+						if ($dom[$table_el]['rowspans'][$k]['rowspan'] == 0) {
+							$dom[$table_el]['rowspans'][$k]['endpage'] = max($dom[$table_el]['rowspans'][$k]['endpage'], $dom[($dom[$key]['parent'])]['endpage']);
+							$dom[($dom[$key]['parent'])]['endpage'] = $dom[$table_el]['rowspans'][$k]['endpage'];
+							$dom[$table_el]['rowspans'][$k]['endcolumn'] = max($dom[$table_el]['rowspans'][$k]['endcolumn'], $dom[($dom[$key]['parent'])]['endcolumn']);
+							$dom[($dom[$key]['parent'])]['endcolumn'] = $dom[$table_el]['rowspans'][$k]['endcolumn'];
+							$dom[$table_el]['rowspans'][$k]['endy'] = max($dom[$table_el]['rowspans'][$k]['endy'], $dom[($dom[$key]['parent'])]['endy']);
+							$dom[($dom[$key]['parent'])]['endy'] = $dom[$table_el]['rowspans'][$k]['endy'];
 						}
 					}
-					if (($this->num_columns > 1) AND ($dom[($dom[$key]['parent'])]['endy'] >= ($this->PageBreakTrigger - $this->lasth)) AND ($this->y < $dom[($dom[$key]['parent'])]['endy'])) {
-						$this->Ln(0, $cell);
-					} else {
-						$this->setPage($dom[($dom[$key]['parent'])]['endpage']);
-						$this->y = $dom[($dom[$key]['parent'])]['endy'];
-						if (isset($dom[$table_el]['attribute']['cellspacing'])) {
-							$cellspacing = $this->getHTMLUnitToUnits($dom[$table_el]['attribute']['cellspacing'], 1, 'px');
-							$this->y += $cellspacing;
-						}
-						$this->Ln(0, $cell);
-						$this->x = $parent['startx'];
-						// account for booklet mode
-						if ($this->page > $parent['startpage']) {
-							if (($this->rtl) AND ($this->pagedim[$this->page]['orm'] != $this->pagedim[$parent['startpage']]['orm'])) {
-								$this->x -= ($this->pagedim[$this->page]['orm'] - $this->pagedim[$parent['startpage']]['orm']);
-							} elseif ((!$this->rtl) AND ($this->pagedim[$this->page]['olm'] != $this->pagedim[$parent['startpage']]['olm'])) {
-								$this->x += ($this->pagedim[$this->page]['olm'] - $this->pagedim[$parent['startpage']]['olm']);
+					// update remaining rowspanned cells
+					foreach ($dom[$table_el]['rowspans'] as $k => $trwsp) {
+						if ($dom[$table_el]['rowspans'][$k]['rowspan'] == 0) {
+							$dom[$table_el]['rowspans'][$k]['endpage'] = $dom[($dom[$key]['parent'])]['endpage'];
+							$dom[$table_el]['rowspans'][$k]['endcolumn'] = $dom[($dom[$key]['parent'])]['endcolumn'];
+							$dom[$table_el]['rowspans'][$k]['endy'] = $dom[($dom[$key]['parent'])]['endy'];
+						}
+					}
+				}
+				$this->setPage($dom[($dom[$key]['parent'])]['endpage']);
+				if ($this->num_columns > 1) {
+					$this->selectColumn($dom[($dom[$key]['parent'])]['endcolumn']);
+				}
+				$this->y = $dom[($dom[$key]['parent'])]['endy'];
+				if (isset($dom[$table_el]['attribute']['cellspacing'])) {
+					$this->y += $this->getHTMLUnitToUnits($dom[$table_el]['attribute']['cellspacing'], 1, 'px');
+				} elseif (isset($dom[$table_el]['border-spacing'])) {
+					$this->y += $dom[$table_el]['border-spacing']['V'];
+				}
+				$this->Ln(0, $cell);
+				if ($this->current_column == $parent['startcolumn']) {
+					$this->x = $parent['startx'];
+				}
+				// account for booklet mode
+				if ($this->page > $parent['startpage']) {
+					if (($this->rtl) AND ($this->pagedim[$this->page]['orm'] != $this->pagedim[$parent['startpage']]['orm'])) {
+						$this->x -= ($this->pagedim[$this->page]['orm'] - $this->pagedim[$parent['startpage']]['orm']);
+					} elseif ((!$this->rtl) AND ($this->pagedim[$this->page]['olm'] != $this->pagedim[$parent['startpage']]['olm'])) {
+						$this->x += ($this->pagedim[$this->page]['olm'] - $this->pagedim[$parent['startpage']]['olm']);
+					}
+				}
+				break;
+			}
+			case 'tablehead':
+				// closing tag used for the thead part
+				$in_table_head = true;
+				$this->inthead = false;
+			case 'table': {
+				$table_el = $parent;
+				// set default border
+				if (isset($table_el['attribute']['border']) AND ($table_el['attribute']['border'] > 0)) {
+					// set default border
+					$border = array('LTRB' => array('width' => $this->getCSSBorderWidth($table_el['attribute']['border']), 'cap'=>'square', 'join'=>'miter', 'dash'=> 0, 'color'=>array(0,0,0)));
+				} else {
+					$border = 0;
+				}
+				$default_border = $border;
+				// fix bottom line alignment of last line before page break
+				foreach ($dom[($dom[$key]['parent'])]['trids'] as $j => $trkey) {
+					// update row-spanned cells
+					if (isset($dom[($dom[$key]['parent'])]['rowspans'])) {
+						foreach ($dom[($dom[$key]['parent'])]['rowspans'] as $k => $trwsp) {
+							if ($trwsp['trid'] == $trkey) {
+								$dom[($dom[$key]['parent'])]['rowspans'][$k]['mrowspan'] -= 1;
+							}
+							if (isset($prevtrkey) AND ($trwsp['trid'] == $prevtrkey) AND ($trwsp['mrowspan'] >= 0)) {
+								$dom[($dom[$key]['parent'])]['rowspans'][$k]['trid'] = $trkey;
 							}
 						}
 					}
-					break;
-				}
-				case 'tablehead':
-					// closing tag used for the thead part
-					$in_table_head = true;
-					$this->inthead = false;
-				case 'table': {
-					$table_el = $parent;
-					// draw borders
-					if ((isset($table_el['attribute']['border']) AND ($table_el['attribute']['border'] > 0))
-						OR (isset($table_el['style']['border']) AND ($table_el['style']['border'] > 0))) {
-							$border = 1;
-					} else {
-						$border = 0;
-					}
-					// fix bottom line alignment of last line before page break
-					foreach ($dom[($dom[$key]['parent'])]['trids'] as $j => $trkey) {
+					if (isset($prevtrkey) AND ($dom[$trkey]['startpage'] > $dom[$prevtrkey]['endpage'])) {
+						$pgendy = $this->pagedim[$dom[$prevtrkey]['endpage']]['hk'] - $this->pagedim[$dom[$prevtrkey]['endpage']]['bm'];
+						$dom[$prevtrkey]['endy'] = $pgendy;
 						// update row-spanned cells
 						if (isset($dom[($dom[$key]['parent'])]['rowspans'])) {
 							foreach ($dom[($dom[$key]['parent'])]['rowspans'] as $k => $trwsp) {
-								if ($trwsp['trid'] == $trkey) {
-									$dom[($dom[$key]['parent'])]['rowspans'][$k]['mrowspan'] -= 1;
-								}
-								if (isset($prevtrkey) AND ($trwsp['trid'] == $prevtrkey) AND ($trwsp['mrowspan'] >= 0)) {
-									$dom[($dom[$key]['parent'])]['rowspans'][$k]['trid'] = $trkey;
+								if (($trwsp['trid'] == $trkey) AND ($trwsp['mrowspan'] > 1) AND ($trwsp['endpage'] == $dom[$prevtrkey]['endpage'])) {
+									$dom[($dom[$key]['parent'])]['rowspans'][$k]['endy'] = $pgendy;
+									$dom[($dom[$key]['parent'])]['rowspans'][$k]['mrowspan'] = -1;
 								}
 							}
 						}
-						if (isset($prevtrkey) AND ($dom[$trkey]['startpage'] > $dom[$prevtrkey]['endpage'])) {
-							$pgendy = $this->pagedim[$dom[$prevtrkey]['endpage']]['hk'] - $this->pagedim[$dom[$prevtrkey]['endpage']]['bm'];
-							$dom[$prevtrkey]['endy'] = $pgendy;
-							// update row-spanned cells
-							if (isset($dom[($dom[$key]['parent'])]['rowspans'])) {
-								foreach ($dom[($dom[$key]['parent'])]['rowspans'] as $k => $trwsp) {
-									if (($trwsp['trid'] == $trkey) AND ($trwsp['mrowspan'] > 1) AND ($trwsp['endpage'] == $dom[$prevtrkey]['endpage'])) {
-										$dom[($dom[$key]['parent'])]['rowspans'][$k]['endy'] = $pgendy;
-										$dom[($dom[$key]['parent'])]['rowspans'][$k]['mrowspan'] = -1;
-									}
-								}
-							}
+					}
+					$prevtrkey = $trkey;
+					$table_el = $dom[($dom[$key]['parent'])];
+				}
+				// for each row
+				unset($xmax);
+				foreach ($table_el['trids'] as $j => $trkey) {
+					$parent = $dom[$trkey];
+					if (!isset($xmax)) {
+						$xmax = $parent['cellpos'][(count($parent['cellpos']) - 1)]['endx'];
+					}
+					// for each cell on the row
+					foreach ($parent['cellpos'] as $k => $cellpos) {
+						if (isset($cellpos['rowspanid']) AND ($cellpos['rowspanid'] >= 0)) {
+							$cellpos['startx'] = $table_el['rowspans'][($cellpos['rowspanid'])]['startx'];
+							$cellpos['endx'] = $table_el['rowspans'][($cellpos['rowspanid'])]['endx'];
+							$endy = $table_el['rowspans'][($cellpos['rowspanid'])]['endy'];
+							$startpage = $table_el['rowspans'][($cellpos['rowspanid'])]['startpage'];
+							$endpage = $table_el['rowspans'][($cellpos['rowspanid'])]['endpage'];
+							$startcolumn = $table_el['rowspans'][($cellpos['rowspanid'])]['startcolumn'];
+							$endcolumn = $table_el['rowspans'][($cellpos['rowspanid'])]['endcolumn'];
+						} else {
+							$endy = $parent['endy'];
+							$startpage = $parent['startpage'];
+							$endpage = $parent['endpage'];
+							$startcolumn = $parent['startcolumn'];
+							$endcolumn = $parent['endcolumn'];
 						}
-						$prevtrkey = $trkey;
-						$table_el = $dom[($dom[$key]['parent'])];
-					}
-					// for each row
-					foreach ($table_el['trids'] as $j => $trkey) {
-						$parent = $dom[$trkey];
-						// for each cell on the row
-						foreach ($parent['cellpos'] as $k => $cellpos) {
-							if (isset($cellpos['rowspanid']) AND ($cellpos['rowspanid'] >= 0)) {
-								$cellpos['startx'] = $table_el['rowspans'][($cellpos['rowspanid'])]['startx'];
-								$cellpos['endx'] = $table_el['rowspans'][($cellpos['rowspanid'])]['endx'];
-								$endy = $table_el['rowspans'][($cellpos['rowspanid'])]['endy'];
-								$startpage = $table_el['rowspans'][($cellpos['rowspanid'])]['startpage'];
-								$endpage = $table_el['rowspans'][($cellpos['rowspanid'])]['endpage'];
-							} else {
-								$endy = $parent['endy'];
-								$startpage = $parent['startpage'];
-								$endpage = $parent['endpage'];
+						if ($this->num_columns == 0) {
+							$this->num_columns = 1;
+						}
+						if (isset($cellpos['border'])) {
+							$border = $cellpos['border'];
+						}
+						if (isset($cellpos['bgcolor']) AND ($cellpos['bgcolor']) !== false) {
+							$this->SetFillColorArray($cellpos['bgcolor']);
+							$fill = true;
+						} else {
+							$fill = false;
+						}
+						$x = $cellpos['startx'];
+						$y = $parent['starty'];
+						$starty = $y;
+						$w = abs($cellpos['endx'] - $cellpos['startx']);
+						// get border modes
+						$border_start = $this->getBorderMode($border, $position='start');
+						$border_end = $this->getBorderMode($border, $position='end');
+						$border_middle = $this->getBorderMode($border, $position='middle');
+						// design borders around HTML cells.
+						for ($page = $startpage; $page <= $endpage; ++$page) { // for each page
+							$ccode = '';
+							$this->setPage($page);
+							if ($this->num_columns < 2) {
+								// single-column mode
+								$this->x = $x;
+								$this->y = $this->tMargin;
 							}
-							if ($endpage > $startpage) {
-								// design borders around HTML cells.
-								for ($page=$startpage; $page <= $endpage; ++$page) {
-									$this->setPage($page);
-									if ($page == $startpage) {
-										$this->y = $parent['starty']; // put cursor at the beginning of row on the first page
-										$ch = $this->getPageHeight() - $parent['starty'] - $this->getBreakMargin();
-										$cborder = $this->getBorderMode($border, $position='start');
-									} elseif ($page == $endpage) {
-										$this->y = $this->tMargin; // put cursor at the beginning of last page
-										$ch = $endy - $this->tMargin;
-										$cborder = $this->getBorderMode($border, $position='end');
-									} else {
-										$this->y = $this->tMargin; // put cursor at the beginning of the current page
-										$ch = $this->getPageHeight() - $this->tMargin - $this->getBreakMargin();
-										$cborder = $this->getBorderMode($border, $position='middle');
+							// account for margin changes
+							if ($page > $startpage) {
+								if (($this->rtl) AND ($this->pagedim[$page]['orm'] != $this->pagedim[$startpage]['orm'])) {
+									$this->x -= ($this->pagedim[$page]['orm'] - $this->pagedim[$startpage]['orm']);
+								} elseif ((!$this->rtl) AND ($this->pagedim[$page]['olm'] != $this->pagedim[$startpage]['olm'])) {
+									$this->x += ($this->pagedim[$page]['olm'] - $this->pagedim[$startpage]['olm']);
+								}
+							}
+							if ($startpage == $endpage) { // single page
+								$deltacol = 0;
+								$deltath = 0;
+								for ($column = $startcolumn; $column <= $endcolumn; ++$column) { // for each column
+									$this->selectColumn($column);
+									if ($startcolumn == $endcolumn) { // single column
+										$cborder = $border;
+										$h = $endy - $parent['starty'];
+										$this->y = $y;
+										$this->x = $x;
+									} elseif ($column == $startcolumn) { // first column
+										$cborder = $border_start;
+										$this->y = $starty;
+										$this->x = $x;
+										$h = $this->h - $this->y - $this->bMargin;
+										if ($this->rtl) {
+											$deltacol = $this->x + $this->rMargin - $this->w;
+										} else {
+											$deltacol = $this->x - $this->lMargin;
+										}
+									} elseif ($column == $endcolumn) { // end column
+										$cborder = $border_end;
+										if (isset($this->columns[$column]['th']['\''.$page.'\''])) {
+											$this->y = $this->columns[$column]['th']['\''.$page.'\''];
+										}
+										$this->x += $deltacol;
+										$h = $endy - $this->y;
+									} else { // middle column
+										$cborder = $border_middle;
+										if (isset($this->columns[$column]['th']['\''.$page.'\''])) {
+											$this->y = $this->columns[$column]['th']['\''.$page.'\''];
+										}
+										$this->x += $deltacol;
+										$h = $this->h - $this->y - $this->bMargin;
 									}
-									if (isset($cellpos['bgcolor']) AND ($cellpos['bgcolor']) !== false) {
-										$this->SetFillColorArray($cellpos['bgcolor']);
-										$fill = true;
-									} else {
-										$fill = false;
+									$ccode .= $this->getCellCode($w, $h, '', $cborder, 1, '', $fill, '', 0, true)."\n";
+								} // end for each column
+							} elseif ($page == $startpage) { // first page
+								$deltacol = 0;
+								$deltath = 0;
+								for ($column = $startcolumn; $column < $this->num_columns; ++$column) { // for each column
+									$this->selectColumn($column);
+									if ($column == $startcolumn) { // first column
+										$cborder = $border_start;
+										$this->y = $starty;
+										$this->x = $x;
+										$h = $this->h - $this->y - $this->bMargin;
+										if ($this->rtl) {
+											$deltacol = $this->x + $this->rMargin - $this->w;
+										} else {
+											$deltacol = $this->x - $this->lMargin;
+										}
+									} else { // middle column
+										$cborder = $border_middle;
+										if (isset($this->columns[$column]['th']['\''.$page.'\''])) {
+											$this->y = $this->columns[$column]['th']['\''.$page.'\''];
+										}
+										$this->x += $deltacol;
+										$h = $this->h - $this->y - $this->bMargin;
 									}
-									$cw = abs($cellpos['endx'] - $cellpos['startx']);
-									$this->x = $cellpos['startx'];
-									// account for margin changes
-									if ($page > $startpage) {
-										if (($this->rtl) AND ($this->pagedim[$page]['orm'] != $this->pagedim[$startpage]['orm'])) {
-											$this->x -= ($this->pagedim[$page]['orm'] - $this->pagedim[$startpage]['orm']);
-										} elseif ((!$this->rtl) AND ($this->pagedim[$page]['lm'] != $this->pagedim[$startpage]['olm'])) {
-											$this->x += ($this->pagedim[$page]['olm'] - $this->pagedim[$startpage]['olm']);
+									$ccode .= $this->getCellCode($w, $h, '', $cborder, 1, '', $fill, '', 0, true)."\n";
+								} // end for each column
+							} elseif ($page == $endpage) { // last page
+								$deltacol = 0;
+								$deltath = 0;
+								for ($column = 0; $column <= $endcolumn; ++$column) { // for each column
+									$this->selectColumn($column);
+									if ($column == $endcolumn) { // end column
+										$cborder = $border_end;
+										if (isset($this->columns[$column]['th']['\''.$page.'\''])) {
+											$this->y = $this->columns[$column]['th']['\''.$page.'\''];
+										}
+										$this->x += $deltacol;
+										$h = $endy - $this->y;
+									} else { // middle column
+										$cborder = $border_middle;
+										if (isset($this->columns[$column]['th']['\''.$page.'\''])) {
+											$this->y = $this->columns[$column]['th']['\''.$page.'\''];
 										}
+										$this->x += $deltacol;
+										$h = $this->h - $this->y - $this->bMargin;
 									}
-									// design a cell around the text
-									$ccode = $this->FillColor."\n".$this->getCellCode($cw, $ch, '', $cborder, 1, '', $fill, '', 0, true);
-									if ($cborder OR $fill) {
-										$pagebuff = $this->getPageBuffer($this->page);
-										$pstart = substr($pagebuff, 0, $this->intmrk[$this->page]);
-										$pend = substr($pagebuff, $this->intmrk[$this->page]);
-										$this->setPageBuffer($this->page, $pstart.$ccode."\n".$pend);
-										$this->intmrk[$this->page] += strlen($ccode."\n");
+									$ccode .= $this->getCellCode($w, $h, '', $cborder, 1, '', $fill, '', 0, true)."\n";
+								} // end for each column
+							} else { // middle page
+								$deltacol = 0;
+								$deltath = 0;
+								for ($column = 0; $column < $this->num_columns; ++$column) { // for each column
+									$this->selectColumn($column);
+									$cborder = $border_middle;
+									if (isset($this->columns[$column]['th']['\''.$page.'\''])) {
+										$this->y = $this->columns[$column]['th']['\''.$page.'\''];
 									}
-								}
-							} else {
-								$this->setPage($startpage);
-								if (isset($cellpos['bgcolor']) AND ($cellpos['bgcolor']) !== false) {
-									$this->SetFillColorArray($cellpos['bgcolor']);
-									$fill = true;
+									$this->x += $deltacol;
+									$h = $this->h - $this->y - $this->bMargin;
+									$ccode .= $this->getCellCode($w, $h, '', $cborder, 1, '', $fill, '', 0, true)."\n";
+								} // end for each column
+							}
+							if ($cborder OR $fill) {
+								// draw border and fill
+								if ($this->inxobj) {
+									// we are inside an XObject template
+									if (end($this->xobjects[$this->xobjid]['transfmrk']) !== false) {
+										$pagemarkkey = key($this->xobjects[$this->xobjid]['transfmrk']);
+										$pagemark = &$this->xobjects[$this->xobjid]['transfmrk'][$pagemarkkey];
+									} else {
+										$pagemark = &$this->xobjects[$this->xobjid]['intmrk'];
+									}
+									$pagebuff = $this->xobjects[$this->xobjid]['outdata'];
+									$pstart = substr($pagebuff, 0, $pagemark);
+									$pend = substr($pagebuff, $pagemark);
+									$this->xobjects[$this->xobjid]['outdata'] = $pstart.$ccode.$pend;
+									$pagemark += strlen($ccode);
 								} else {
-									$fill = false;
-								}
-								$this->x = $cellpos['startx'];
-								$this->y = $parent['starty'];
-								$cw = abs($cellpos['endx'] - $cellpos['startx']);
-								$ch = $endy - $parent['starty'];
-								// design a cell around the text
-								$ccode = $this->FillColor."\n".$this->getCellCode($cw, $ch, '', $border, 1, '', $fill, '', 0, true);
-								if ($border OR $fill) {
+									// draw border and fill
 									if (end($this->transfmrk[$this->page]) !== false) {
 										$pagemarkkey = key($this->transfmrk[$this->page]);
 										$pagemark = &$this->transfmrk[$this->page][$pagemarkkey];
@@ -19080,3577 +21456,4632 @@ if (!class_exists('TCPDF', false)) {
 									$pagebuff = $this->getPageBuffer($this->page);
 									$pstart = substr($pagebuff, 0, $pagemark);
 									$pend = substr($pagebuff, $pagemark);
-									$this->setPageBuffer($this->page, $pstart.$ccode."\n".$pend);
-									$pagemark += strlen($ccode."\n");
+									$this->setPageBuffer($this->page, $pstart.$ccode.$pend);
+									$pagemark += strlen($ccode);
 								}
 							}
-						}
-						if (isset($table_el['attribute']['cellspacing'])) {
-							$cellspacing = $this->getHTMLUnitToUnits($table_el['attribute']['cellspacing'], 1, 'px');
-							$this->y += $cellspacing;
-						}
-						$this->Ln(0, $cell);
-						$this->x = $parent['startx'];
-						if ($endpage > $startpage) {
-							if (($this->rtl) AND ($this->pagedim[$endpage]['orm'] != $this->pagedim[$startpage]['orm'])) {
-								$this->x += ($this->pagedim[$endpage]['orm'] - $this->pagedim[$startpage]['orm']);
-							} elseif ((!$this->rtl) AND ($this->pagedim[$endpage]['olm'] != $this->pagedim[$startpage]['olm'])) {
-								$this->x += ($this->pagedim[$endpage]['olm'] - $this->pagedim[$startpage]['olm']);
-							}
-						}
+						} // end for each page
+						// restore default border
+						$border = $default_border;
+					} // end for each cell on the row
+					if (isset($table_el['attribute']['cellspacing'])) {
+						$this->y += $this->getHTMLUnitToUnits($table_el['attribute']['cellspacing'], 1, 'px');
+					} elseif (isset($table_el['border-spacing'])) {
+						$this->y += $table_el['border-spacing']['V'];
+					}
+					$this->Ln(0, $cell);
+					$this->x = $parent['startx'];
+					if ($endpage > $startpage) {
+						if (($this->rtl) AND ($this->pagedim[$endpage]['orm'] != $this->pagedim[$startpage]['orm'])) {
+							$this->x += ($this->pagedim[$endpage]['orm'] - $this->pagedim[$startpage]['orm']);
+						} elseif ((!$this->rtl) AND ($this->pagedim[$endpage]['olm'] != $this->pagedim[$startpage]['olm'])) {
+							$this->x += ($this->pagedim[$endpage]['olm'] - $this->pagedim[$startpage]['olm']);
+						}
+					}
+				}
+				if (!$in_table_head) { // we are not inside a thead section
+					$this->cell_padding = $table_el['old_cell_padding'];
+					// reset row height
+					$this->resetLastH();
+					if (($this->page == ($this->numpages - 1)) AND ($this->pageopen[$this->numpages]) AND ($this->emptypagemrk[$this->numpages] == $this->pagelen[$this->numpages])) {
+						// remove last blank page
+						$this->deletePage($this->numpages);
+					}
+					if (isset($this->theadMargins['top'])) {
+						// restore top margin
+						$this->tMargin = $this->theadMargins['top'];
+						$this->pagedim[$this->page]['tm'] = $this->tMargin;
+					}
+					if (!isset($table_el['attribute']['nested']) OR ($table_el['attribute']['nested'] != 'true')) {
+						// reset main table header
+						$this->thead = '';
+						$this->theadMargins = array();
+					}
+				}
+				$parent = $table_el;
+				break;
+			}
+			case 'a': {
+				$this->HREF = '';
+				break;
+			}
+			case 'sup': {
+				$this->SetXY($this->GetX(), $this->GetY() + ((0.7 * $parent['fontsize']) / $this->k));
+				break;
+			}
+			case 'sub': {
+				$this->SetXY($this->GetX(), $this->GetY() - ((0.3 * $parent['fontsize'])/$this->k));
+				break;
+			}
+			case 'div': {
+				$this->addHTMLVertSpace($hbz, 0, $cell, false, $lasttag);
+				break;
+			}
+			case 'blockquote': {
+				if ($this->rtl) {
+					$this->rMargin -= $this->listindent;
+				} else {
+					$this->lMargin -= $this->listindent;
+				}
+				--$this->listindentlevel;
+				$this->addHTMLVertSpace($hbz, $hb, $cell, false, $lasttag);
+				break;
+			}
+			case 'p': {
+				$this->addHTMLVertSpace($hbz, $hb, $cell, false, $lasttag);
+				break;
+			}
+			case 'pre': {
+				$this->addHTMLVertSpace($hbz, $hb, $cell, false, $lasttag);
+				$this->premode = false;
+				break;
+			}
+			case 'dl': {
+				--$this->listnum;
+				if ($this->listnum <= 0) {
+					$this->listnum = 0;
+					$this->addHTMLVertSpace($hbz, $hb, $cell, false, $lasttag);
+				} else {
+					$this->addHTMLVertSpace(0, 0, $cell, false, $lasttag);
+				}
+				$this->resetLastH();
+				break;
+			}
+			case 'dt': {
+				$this->lispacer = '';
+				$this->addHTMLVertSpace(0, 0, $cell, false, $lasttag);
+				break;
+			}
+			case 'dd': {
+				$this->lispacer = '';
+				if ($this->rtl) {
+					$this->rMargin -= $this->listindent;
+				} else {
+					$this->lMargin -= $this->listindent;
+				}
+				--$this->listindentlevel;
+				$this->addHTMLVertSpace(0, 0, $cell, false, $lasttag);
+				break;
+			}
+			case 'ul':
+			case 'ol': {
+				--$this->listnum;
+				$this->lispacer = '';
+				if ($this->rtl) {
+					$this->rMargin -= $this->listindent;
+				} else {
+					$this->lMargin -= $this->listindent;
+				}
+				--$this->listindentlevel;
+				if ($this->listnum <= 0) {
+					$this->listnum = 0;
+					$this->addHTMLVertSpace($hbz, $hb, $cell, false, $lasttag);
+				} else {
+					$this->addHTMLVertSpace(0, 0, $cell, false, $lasttag);
+				}
+				$this->resetLastH();
+				break;
+			}
+			case 'li': {
+				$this->lispacer = '';
+				$this->addHTMLVertSpace(0, 0, $cell, false, $lasttag);
+				break;
+			}
+			case 'h1':
+			case 'h2':
+			case 'h3':
+			case 'h4':
+			case 'h5':
+			case 'h6': {
+				$this->addHTMLVertSpace($hbz, $hb, $cell, false, $lasttag);
+				break;
+			}
+			// Form fields (since 4.8.000 - 2009-09-07)
+			case 'form': {
+				$this->form_action = '';
+				$this->form_enctype = 'application/x-www-form-urlencoded';
+				break;
+			}
+			default : {
+				break;
+			}
+		}
+		// draw border and background (if any)
+		$this->drawHTMLTagBorder($parent, $xmax);
+		if (isset($dom[($dom[$key]['parent'])]['attribute']['pagebreakafter'])) {
+			$pba = $dom[($dom[$key]['parent'])]['attribute']['pagebreakafter'];
+			// check for pagebreak
+			if (($pba == 'true') OR ($pba == 'left') OR ($pba == 'right')) {
+				// add a page (or trig AcceptPageBreak() for multicolumn mode)
+				$this->checkPageBreak($this->PageBreakTrigger + 1);
+			}
+			if ((($pba == 'left') AND (((!$this->rtl) AND (($this->page % 2) == 0)) OR (($this->rtl) AND (($this->page % 2) != 0))))
+				OR (($pba == 'right') AND (((!$this->rtl) AND (($this->page % 2) != 0)) OR (($this->rtl) AND (($this->page % 2) == 0))))) {
+				// add a page (or trig AcceptPageBreak() for multicolumn mode)
+				$this->checkPageBreak($this->PageBreakTrigger + 1);
+			}
+		}
+		$this->tmprtl = false;
+	}
+
+	/**
+	 * Add vertical spaces if needed.
+	 * @param $hbz (string) Distance between current y and line bottom.
+	 * @param $hb (string) The height of the break.
+	 * @param $cell (boolean) if true add the default left (or right if RTL) padding to each new line (default false).
+	 * @param $firsttag (boolean) set to true when the tag is the first.
+	 * @param $lasttag (boolean) set to true when the tag is the last.
+	 * @protected
+	 */
+	protected function addHTMLVertSpace($hbz=0, $hb=0, $cell=false, $firsttag=false, $lasttag=false) {
+		if ($firsttag) {
+			$this->Ln(0, $cell);
+			$this->htmlvspace = 0;
+			return;
+		}
+		if ($lasttag) {
+			$this->Ln($hbz, $cell);
+			$this->htmlvspace = 0;
+			return;
+		}
+		if ($hb < $this->htmlvspace) {
+			$hd = 0;
+		} else {
+			$hd = $hb - $this->htmlvspace;
+			$this->htmlvspace = $hb;
+		}
+		$this->Ln(($hbz + $hd), $cell);
+	}
+
+	/**
+	 * Return the starting coordinates to draw an html border
+	 * @return array containing top-left border coordinates
+	 * @protected
+	 * @since 5.7.000 (2010-08-03)
+	 */
+	protected function getBorderStartPosition() {
+		if ($this->rtl) {
+			$xmax = $this->lMargin;
+		} else {
+			$xmax = $this->w - $this->rMargin;
+		}
+		return array('page' => $this->page, 'column' => $this->current_column, 'x' => $this->x, 'y' => $this->y, 'xmax' => $xmax);
+	}
+
+	/**
+	 * Draw an HTML block border and fill
+	 * @param $tag (array) array of tag properties.
+	 * @param $xmax (int) end X coordinate for border.
+	 * @protected
+	 * @since 5.7.000 (2010-08-03)
+	 */
+	protected function drawHTMLTagBorder($tag, $xmax) {
+		if (!isset($tag['borderposition'])) {
+			// nothing to draw
+			return;
+		}
+		$prev_x = $this->x;
+		$prev_y = $this->y;
+		$prev_lasth = $this->lasth;
+		$border = 0;
+		$fill = false;
+		$this->lasth = 0;
+		if (isset($tag['border']) AND !empty($tag['border'])) {
+			// get border style
+			$border = $tag['border'];
+			if (!$this->empty_string($this->thead) AND (!$this->inthead)) {
+				// border for table header
+				$border = $this->getBorderMode($border, $position='middle');
+			}
+		}
+		if (isset($tag['bgcolor']) AND ($tag['bgcolor'] !== false)) {
+			// get background color
+			$old_bgcolor = $this->bgcolor;
+			$this->SetFillColorArray($tag['bgcolor']);
+			$fill = true;
+		}
+		if (!$border AND !$fill) {
+			// nothing to draw
+			return;
+		}
+		if (isset($tag['attribute']['cellspacing'])) {
+			$clsp = $this->getHTMLUnitToUnits($tag['attribute']['cellspacing'], 1, 'px');
+			$cellspacing = array('H' => $clsp, 'V' => $clsp);
+		} elseif (isset($tag['border-spacing'])) {
+			$cellspacing = $tag['border-spacing'];
+		} else {
+			$cellspacing = array('H' => 0, 'V' => 0);
+		}
+		if (($tag['value'] != 'table') AND (is_array($border)) AND (!empty($border))) {
+			// draw the border externally respect the sqare edge.
+			$border['mode'] = 'ext';
+		}
+		if ($this->rtl) {
+			if ($xmax >= $tag['borderposition']['x']) {
+				$xmax = $tag['borderposition']['xmax'];
+			}
+			$w = ($tag['borderposition']['x'] - $xmax);
+		} else {
+			if ($xmax <= $tag['borderposition']['x']) {
+				$xmax = $tag['borderposition']['xmax'];
+			}
+			$w = ($xmax - $tag['borderposition']['x']);
+		}
+		if ($w <= 0) {
+			return;
+		}
+		$w += $cellspacing['H'];
+		$startpage = $tag['borderposition']['page'];
+		$startcolumn = $tag['borderposition']['column'];
+		$x = $tag['borderposition']['x'];
+		$y = $tag['borderposition']['y'];
+		$endpage = $this->page;
+		$starty = $tag['borderposition']['y'] - $cellspacing['V'];
+		$currentY = $this->y;
+		$this->x = $x;
+		// get latest column
+		$endcolumn = $this->current_column;
+		if ($this->num_columns == 0) {
+			$this->num_columns = 1;
+		}
+		// get border modes
+		$border_start = $this->getBorderMode($border, $position='start');
+		$border_end = $this->getBorderMode($border, $position='end');
+		$border_middle = $this->getBorderMode($border, $position='middle');
+		// design borders around HTML cells.
+		for ($page = $startpage; $page <= $endpage; ++$page) { // for each page
+			$ccode = '';
+			$this->setPage($page);
+			if ($this->num_columns < 2) {
+				// single-column mode
+				$this->x = $x;
+				$this->y = $this->tMargin;
+			}
+			// account for margin changes
+			if ($page > $startpage) {
+				if (($this->rtl) AND ($this->pagedim[$page]['orm'] != $this->pagedim[$startpage]['orm'])) {
+					$this->x -= ($this->pagedim[$page]['orm'] - $this->pagedim[$startpage]['orm']);
+				} elseif ((!$this->rtl) AND ($this->pagedim[$page]['olm'] != $this->pagedim[$startpage]['olm'])) {
+					$this->x += ($this->pagedim[$page]['olm'] - $this->pagedim[$startpage]['olm']);
+				}
+			}
+			if ($startpage == $endpage) {
+				// single page
+				for ($column = $startcolumn; $column <= $endcolumn; ++$column) { // for each column
+					$this->selectColumn($column);
+					if ($startcolumn == $endcolumn) { // single column
+						$cborder = $border;
+						$h = ($currentY - $y) + $cellspacing['V'];
+						$this->y = $starty;
+					} elseif ($column == $startcolumn) { // first column
+						$cborder = $border_start;
+						$this->y = $starty;
+						$h = $this->h - $this->y - $this->bMargin;
+					} elseif ($column == $endcolumn) { // end column
+						$cborder = $border_end;
+						$h = $currentY - $this->y;
+					} else { // middle column
+						$cborder = $border_middle;
+						$h = $this->h - $this->y - $this->bMargin;
+					}
+					$ccode .= $this->getCellCode($w, $h, '', $cborder, 1, '', $fill, '', 0, true)."\n";
+				} // end for each column
+			} elseif ($page == $startpage) { // first page
+				for ($column = $startcolumn; $column < $this->num_columns; ++$column) { // for each column
+					$this->selectColumn($column);
+					if ($column == $startcolumn) { // first column
+						$cborder = $border_start;
+						$this->y = $starty;
+						$h = $this->h - $this->y - $this->bMargin;
+					} else { // middle column
+						$cborder = $border_middle;
+						$h = $this->h - $this->y - $this->bMargin;
+					}
+					$ccode .= $this->getCellCode($w, $h, '', $cborder, 1, '', $fill, '', 0, true)."\n";
+				} // end for each column
+			} elseif ($page == $endpage) { // last page
+				for ($column = 0; $column <= $endcolumn; ++$column) { // for each column
+					$this->selectColumn($column);
+					if ($column == $endcolumn) {
+						// end column
+						$cborder = $border_end;
+						$h = $currentY - $this->y;
+					} else {
+						// middle column
+						$cborder = $border_middle;
+						$h = $this->h - $this->y - $this->bMargin;
+					}
+					$ccode .= $this->getCellCode($w, $h, '', $cborder, 1, '', $fill, '', 0, true)."\n";
+				} // end for each column
+			} else { // middle page
+				for ($column = 0; $column < $this->num_columns; ++$column) { // for each column
+					$this->selectColumn($column);
+					$cborder = $border_middle;
+					$h = $this->h - $this->y - $this->bMargin;
+					$ccode .= $this->getCellCode($w, $h, '', $cborder, 1, '', $fill, '', 0, true)."\n";
+				} // end for each column
+			}
+			if ($cborder OR $fill) {
+				// draw border and fill
+				if ($this->inxobj) {
+					// we are inside an XObject template
+					if (end($this->xobjects[$this->xobjid]['transfmrk']) !== false) {
+						$pagemarkkey = key($this->xobjects[$this->xobjid]['transfmrk']);
+						$pagemark = &$this->xobjects[$this->xobjid]['transfmrk'][$pagemarkkey];
+					} else {
+						$pagemark = &$this->xobjects[$this->xobjid]['intmrk'];
 					}
-					if (!$in_table_head) {
-						// we are not inside a thead section
-						if (isset($parent['cellpadding'])) {
-							$this->cMargin = $this->oldcMargin;
-						}
-						$this->lasth = $this->FontSize * $this->cell_height_ratio;
-						if (($this->page == ($this->numpages - 1)) AND ($this->pageopen[$this->numpages])) {
-							// remove last blank page
-							$this->deletePage($this->numpages);
-						}
-						if (isset($this->theadMargins['top'])) {
-							// restore top margin
-							$this->tMargin = $this->theadMargins['top'];
-							$this->pagedim[$this->page]['tm'] = $this->tMargin;
-						}
-						if (!isset($table_el['attribute']['nested']) OR ($table_el['attribute']['nested'] != 'true')) {
-							// reset main table header
-							$this->thead = '';
-							$this->theadMargins = array();
-						}
+					$pagebuff = $this->xobjects[$this->xobjid]['outdata'];
+					$pstart = substr($pagebuff, 0, $pagemark);
+					$pend = substr($pagebuff, $pagemark);
+					$this->xobjects[$this->xobjid]['outdata'] = $pstart.$ccode.$pend;
+					$pagemark += strlen($ccode);
+				} else {
+					if (end($this->transfmrk[$this->page]) !== false) {
+						$pagemarkkey = key($this->transfmrk[$this->page]);
+						$pagemark = &$this->transfmrk[$this->page][$pagemarkkey];
+					} elseif ($this->InFooter) {
+						$pagemark = &$this->footerpos[$this->page];
+					} else {
+						$pagemark = &$this->intmrk[$this->page];
 					}
-					break;
-				}
-				case 'a': {
-					$this->HREF = '';
-					break;
+					$pagebuff = $this->getPageBuffer($this->page);
+					$pstart = substr($pagebuff, 0, $this->bordermrk[$this->page]);
+					$pend = substr($pagebuff, $this->bordermrk[$this->page]);
+					$this->setPageBuffer($this->page, $pstart.$ccode.$pend);
+					$offsetlen = strlen($ccode);
+					$this->bordermrk[$this->page] += $offsetlen;
+					$this->cntmrk[$this->page] += $offsetlen;
+					$pagemark += $offsetlen;
+				}
+			}
+		} // end for each page
+		if (isset($old_bgcolor)) {
+			// restore background color
+			$this->SetFillColorArray($old_bgcolor);
+		}
+		// restore pointer position
+		$this->x = $prev_x;
+		$this->y = $prev_y;
+		$this->lasth = $prev_lasth;
+	}
+
+	/**
+	 * Set the default bullet to be used as LI bullet symbol
+	 * @param $symbol (string) character or string to be used (legal values are: '' = automatic, '!' = auto bullet, '#' = auto numbering, 'disc', 'disc', 'circle', 'square', '1', 'decimal', 'decimal-leading-zero', 'i', 'lower-roman', 'I', 'upper-roman', 'a', 'lower-alpha', 'lower-latin', 'A', 'upper-alpha', 'upper-latin', 'lower-greek', 'img|type|width|height|image.ext')
+	 * @public
+	 * @since 4.0.028 (2008-09-26)
+	 */
+	public function setLIsymbol($symbol='!') {
+		// check for custom image symbol
+		if (substr($symbol, 0, 4) == 'img|') {
+			$this->lisymbol = $symbol;
+			return;
+		}
+		$symbol = strtolower($symbol);
+		switch ($symbol) {
+			case '!' :
+			case '#' :
+			case 'disc' :
+			case 'circle' :
+			case 'square' :
+			case '1':
+			case 'decimal':
+			case 'decimal-leading-zero':
+			case 'i':
+			case 'lower-roman':
+			case 'I':
+			case 'upper-roman':
+			case 'a':
+			case 'lower-alpha':
+			case 'lower-latin':
+			case 'A':
+			case 'upper-alpha':
+			case 'upper-latin':
+			case 'lower-greek': {
+				$this->lisymbol = $symbol;
+				break;
+			}
+			default : {
+				$this->lisymbol = '';
+			}
+		}
+	}
+
+	/**
+	 * Set the booklet mode for double-sided pages.
+	 * @param $booklet (boolean) true set the booklet mode on, false otherwise.
+	 * @param $inner (float) Inner page margin.
+	 * @param $outer (float) Outer page margin.
+	 * @public
+	 * @since 4.2.000 (2008-10-29)
+	 */
+	public function SetBooklet($booklet=true, $inner=-1, $outer=-1) {
+		$this->booklet = $booklet;
+		if ($inner >= 0) {
+			$this->lMargin = $inner;
+		}
+		if ($outer >= 0) {
+			$this->rMargin = $outer;
+		}
+	}
+
+	/**
+	 * Swap the left and right margins.
+	 * @param $reverse (boolean) if true swap left and right margins.
+	 * @protected
+	 * @since 4.2.000 (2008-10-29)
+	 */
+	protected function swapMargins($reverse=true) {
+		if ($reverse) {
+			// swap left and right margins
+			$mtemp = $this->original_lMargin;
+			$this->original_lMargin = $this->original_rMargin;
+			$this->original_rMargin = $mtemp;
+			$deltam = $this->original_lMargin - $this->original_rMargin;
+			$this->lMargin += $deltam;
+			$this->rMargin -= $deltam;
+		}
+	}
+
+	/**
+	 * Set the vertical spaces for HTML tags.
+	 * The array must have the following structure (example):
+	 * $tagvs = array('h1' => array(0 => array('h' => '', 'n' => 2), 1 => array('h' => 1.3, 'n' => 1)));
+	 * The first array level contains the tag names,
+	 * the second level contains 0 for opening tags or 1 for closing tags,
+	 * the third level contains the vertical space unit (h) and the number spaces to add (n).
+	 * If the h parameter is not specified, default values are used.
+	 * @param $tagvs (array) array of tags and relative vertical spaces.
+	 * @public
+	 * @since 4.2.001 (2008-10-30)
+	 */
+	public function setHtmlVSpace($tagvs) {
+		$this->tagvspaces = $tagvs;
+	}
+
+	/**
+	 * Set custom width for list indentation.
+	 * @param $width (float) width of the indentation. Use negative value to disable it.
+	 * @public
+	 * @since 4.2.007 (2008-11-12)
+	 */
+	public function setListIndentWidth($width) {
+		return $this->customlistindent = floatval($width);
+	}
+
+	/**
+	 * Set the top/bottom cell sides to be open or closed when the cell cross the page.
+	 * @param $isopen (boolean) if true keeps the top/bottom border open for the cell sides that cross the page.
+	 * @public
+	 * @since 4.2.010 (2008-11-14)
+	 */
+	public function setOpenCell($isopen) {
+		$this->opencell = $isopen;
+	}
+
+	/**
+	 * Set the color and font style for HTML links.
+	 * @param $color (array) RGB array of colors
+	 * @param $fontstyle (string) additional font styles to add
+	 * @public
+	 * @since 4.4.003 (2008-12-09)
+	 */
+	public function setHtmlLinksStyle($color=array(0,0,255), $fontstyle='U') {
+		$this->htmlLinkColorArray = $color;
+		$this->htmlLinkFontStyle = $fontstyle;
+	}
+
+	/**
+	 * Convert HTML string containing value and unit of measure to user's units or points.
+	 * @param $htmlval (string) string containing values and unit
+	 * @param $refsize (string) reference value in points
+	 * @param $defaultunit (string) default unit (can be one of the following: %, em, ex, px, in, mm, pc, pt).
+	 * @param $points (boolean) if true returns points, otherwise returns value in user's units
+	 * @return float value in user's unit or point if $points=true
+	 * @public
+	 * @since 4.4.004 (2008-12-10)
+	 */
+	public function getHTMLUnitToUnits($htmlval, $refsize=1, $defaultunit='px', $points=false) {
+		$supportedunits = array('%', 'em', 'ex', 'px', 'in', 'cm', 'mm', 'pc', 'pt');
+		$retval = 0;
+		$value = 0;
+		$unit = 'px';
+		$k = $this->k;
+		if ($points) {
+			$k = 1;
+		}
+		if (in_array($defaultunit, $supportedunits)) {
+			$unit = $defaultunit;
+		}
+		if (is_numeric($htmlval)) {
+			$value = floatval($htmlval);
+		} elseif (preg_match('/([0-9\.\-\+]+)/', $htmlval, $mnum)) {
+			$value = floatval($mnum[1]);
+			if (preg_match('/([a-z%]+)/', $htmlval, $munit)) {
+				if (in_array($munit[1], $supportedunits)) {
+					$unit = $munit[1];
+				}
+			}
+		}
+		switch ($unit) {
+			// percentage
+			case '%': {
+				$retval = (($value * $refsize) / 100);
+				break;
+			}
+			// relative-size
+			case 'em': {
+				$retval = ($value * $refsize);
+				break;
+			}
+			// height of lower case 'x' (about half the font-size)
+			case 'ex': {
+				$retval = $value * ($refsize / 2);
+				break;
+			}
+			// absolute-size
+			case 'in': {
+				$retval = ($value * $this->dpi) / $k;
+				break;
+			}
+			// centimeters
+			case 'cm': {
+				$retval = ($value / 2.54 * $this->dpi) / $k;
+				break;
+			}
+			// millimeters
+			case 'mm': {
+				$retval = ($value / 25.4 * $this->dpi) / $k;
+				break;
+			}
+			// one pica is 12 points
+			case 'pc': {
+				$retval = ($value * 12) / $k;
+				break;
+			}
+			// points
+			case 'pt': {
+				$retval = $value / $k;
+				break;
+			}
+			// pixels
+			case 'px': {
+				$retval = $this->pixelsToUnits($value);
+				break;
+			}
+		}
+		return $retval;
+	}
+
+	/**
+	 * Returns the Roman representation of an integer number
+	 * @param $number (int) number to convert
+	 * @return string roman representation of the specified number
+	 * @since 4.4.004 (2008-12-10)
+	 * @public
+	 */
+	public function intToRoman($number) {
+		$roman = '';
+		while ($number >= 1000) {
+			$roman .= 'M';
+			$number -= 1000;
+		}
+		while ($number >= 900) {
+			$roman .= 'CM';
+			$number -= 900;
+		}
+		while ($number >= 500) {
+			$roman .= 'D';
+			$number -= 500;
+		}
+		while ($number >= 400) {
+			$roman .= 'CD';
+			$number -= 400;
+		}
+		while ($number >= 100) {
+			$roman .= 'C';
+			$number -= 100;
+		}
+		while ($number >= 90) {
+			$roman .= 'XC';
+			$number -= 90;
+		}
+		while ($number >= 50) {
+			$roman .= 'L';
+			$number -= 50;
+		}
+		while ($number >= 40) {
+			$roman .= 'XL';
+			$number -= 40;
+		}
+		while ($number >= 10) {
+			$roman .= 'X';
+			$number -= 10;
+		}
+		while ($number >= 9) {
+			$roman .= 'IX';
+			$number -= 9;
+		}
+		while ($number >= 5) {
+			$roman .= 'V';
+			$number -= 5;
+		}
+		while ($number >= 4) {
+			$roman .= 'IV';
+			$number -= 4;
+		}
+		while ($number >= 1) {
+			$roman .= 'I';
+			--$number;
+		}
+		return $roman;
+	}
+
+	/**
+	 * Output an HTML list bullet or ordered item symbol
+	 * @param $listdepth (int) list nesting level
+	 * @param $listtype (string) type of list
+	 * @param $size (float) current font size
+	 * @protected
+	 * @since 4.4.004 (2008-12-10)
+	 */
+	protected function putHtmlListBullet($listdepth, $listtype='', $size=10) {
+		$size /= $this->k;
+		$fill = '';
+		$color = $this->fgcolor;
+		$width = 0;
+		$textitem = '';
+		$tmpx = $this->x;
+		$lspace = $this->GetStringWidth('  ');
+		if ($listtype == '^') {
+			// special symbol used for avoid justification of rect bullet
+			$this->lispacer = '';
+			return;
+		} elseif ($listtype == '!') {
+			// set default list type for unordered list
+			$deftypes = array('disc', 'circle', 'square');
+			$listtype = $deftypes[($listdepth - 1) % 3];
+		} elseif ($listtype == '#') {
+			// set default list type for ordered list
+			$listtype = 'decimal';
+		} elseif(substr($listtype, 0, 4) == 'img|') {
+			// custom image type ('img|type|width|height|image.ext')
+			$img = explode('|', $listtype);
+			$listtype = 'img';
+		}
+		switch ($listtype) {
+			// unordered types
+			case 'none': {
+				break;
+			}
+			case 'disc': {
+				$fill = 'F';
+			}
+			case 'circle': {
+				$fill .= 'D';
+				$r = $size / 6;
+				$lspace += (2 * $r);
+				if ($this->rtl) {
+					$this->x += $lspace;
+				} else {
+					$this->x -= $lspace;
 				}
-				case 'sup': {
-					$this->SetXY($this->GetX(), $this->GetY() + ((0.7 * $parent['fontsize']) / $this->k));
-					break;
+				$this->Circle(($this->x + $r), ($this->y + ($this->lasth / 2)), $r, 0, 360, $fill, array('color'=>$color), $color, 8);
+				break;
+			}
+			case 'square': {
+				$l = $size / 3;
+				$lspace += $l;
+				if ($this->rtl) {;
+					$this->x += $lspace;
+				} else {
+					$this->x -= $lspace;
 				}
-				case 'sub': {
-					$this->SetXY($this->GetX(), $this->GetY() - ((0.3 * $parent['fontsize'])/$this->k));
-					break;
+				$this->Rect($this->x, ($this->y + (($this->lasth - $l) / 2)), $l, $l, 'F', array(), $color);
+				break;
+			}
+			case 'img': {
+				// 1=>type, 2=>width, 3=>height, 4=>image.ext
+				$lspace += $img[2];
+				if ($this->rtl) {;
+					$this->x += $lspace;
+				} else {
+					$this->x -= $lspace;
 				}
-				case 'div': {
-					$this->addHTMLVertSpace($hbz, 0, $cell, $firstorlast);
-					break;
+				$imgtype = strtolower($img[1]);
+				$prev_y = $this->y;
+				switch ($imgtype) {
+					case 'svg': {
+						$this->ImageSVG($img[4], $this->x, ($this->y + (($this->lasth - $img[3]) / 2)), $img[2], $img[3], '', 'T', '', 0, false);
+						break;
+					}
+					case 'ai':
+					case 'eps': {
+						$this->ImageEps($img[4], $this->x, ($this->y + (($this->lasth - $img[3]) / 2)), $img[2], $img[3], '', true, 'T', '', 0, false);
+						break;
+					}
+					default: {
+						$this->Image($img[4], $this->x, ($this->y + (($this->lasth - $img[3]) / 2)), $img[2], $img[3], $img[1], '', 'T', false, 300, '', false, false, 0, false, false, false);
+						break;
+					}
 				}
-				case 'blockquote': {
+				$this->y = $prev_y;
+				break;
+			}
+			// ordered types
+			// $this->listcount[$this->listnum];
+			// $textitem
+			case '1':
+			case 'decimal': {
+				$textitem = $this->listcount[$this->listnum];
+				break;
+			}
+			case 'decimal-leading-zero': {
+				$textitem = sprintf('%02d', $this->listcount[$this->listnum]);
+				break;
+			}
+			case 'i':
+			case 'lower-roman': {
+				$textitem = strtolower($this->intToRoman($this->listcount[$this->listnum]));
+				break;
+			}
+			case 'I':
+			case 'upper-roman': {
+				$textitem = $this->intToRoman($this->listcount[$this->listnum]);
+				break;
+			}
+			case 'a':
+			case 'lower-alpha':
+			case 'lower-latin': {
+				$textitem = chr(97 + $this->listcount[$this->listnum] - 1);
+				break;
+			}
+			case 'A':
+			case 'upper-alpha':
+			case 'upper-latin': {
+				$textitem = chr(65 + $this->listcount[$this->listnum] - 1);
+				break;
+			}
+			case 'lower-greek': {
+				$textitem = $this->unichr(945 + $this->listcount[$this->listnum] - 1);
+				break;
+			}
+			/*
+			// Types to be implemented (special handling)
+			case 'hebrew': {
+				break;
+			}
+			case 'armenian': {
+				break;
+			}
+			case 'georgian': {
+				break;
+			}
+			case 'cjk-ideographic': {
+				break;
+			}
+			case 'hiragana': {
+				break;
+			}
+			case 'katakana': {
+				break;
+			}
+			case 'hiragana-iroha': {
+				break;
+			}
+			case 'katakana-iroha': {
+				break;
+			}
+			*/
+			default: {
+				$textitem = $this->listcount[$this->listnum];
+			}
+		}
+		if (!$this->empty_string($textitem)) {
+			// Check whether we need a new page or new column
+			$prev_y = $this->y;
+			$h = ($this->FontSize * $this->cell_height_ratio) + $this->cell_padding['T'] + $this->cell_padding['B'];
+			if ($this->checkPageBreak($h) OR ($this->y < $prev_y)) {
+				$tmpx = $this->x;
+			}
+			// print ordered item
+			if ($this->rtl) {
+				$textitem = '.'.$textitem;
+			} else {
+				$textitem = $textitem.'.';
+			}
+			$lspace += $this->GetStringWidth($textitem);
+			if ($this->rtl) {
+				$this->x += $lspace;
+			} else {
+				$this->x -= $lspace;
+			}
+			$this->Write($this->lasth, $textitem, '', false, '', false, 0, false);
+		}
+		$this->x = $tmpx;
+		$this->lispacer = '^';
+	}
+
+	/**
+	 * Returns current graphic variables as array.
+	 * @return array of graphic variables
+	 * @protected
+	 * @since 4.2.010 (2008-11-14)
+	 */
+	protected function getGraphicVars() {
+		$grapvars = array(
+			'FontFamily' => $this->FontFamily,
+			'FontStyle' => $this->FontStyle,
+			'FontSizePt' => $this->FontSizePt,
+			'rMargin' => $this->rMargin,
+			'lMargin' => $this->lMargin,
+			'cell_padding' => $this->cell_padding,
+			'cell_margin' => $this->cell_margin,
+			'LineWidth' => $this->LineWidth,
+			'linestyleWidth' => $this->linestyleWidth,
+			'linestyleCap' => $this->linestyleCap,
+			'linestyleJoin' => $this->linestyleJoin,
+			'linestyleDash' => $this->linestyleDash,
+			'textrendermode' => $this->textrendermode,
+			'textstrokewidth' => $this->textstrokewidth,
+			'DrawColor' => $this->DrawColor,
+			'FillColor' => $this->FillColor,
+			'TextColor' => $this->TextColor,
+			'ColorFlag' => $this->ColorFlag,
+			'bgcolor' => $this->bgcolor,
+			'fgcolor' => $this->fgcolor,
+			'htmlvspace' => $this->htmlvspace,
+			'listindent' => $this->listindent,
+			'listindentlevel' => $this->listindentlevel,
+			'listnum' => $this->listnum,
+			'listordered' => $this->listordered,
+			'listcount' => $this->listcount,
+			'lispacer' => $this->lispacer,
+			'cell_height_ratio' => $this->cell_height_ratio,
+			'font_stretching' => $this->font_stretching,
+			'font_spacing' => $this->font_spacing,
+			// extended
+			'lasth' => $this->lasth,
+			'tMargin' => $this->tMargin,
+			'bMargin' => $this->bMargin,
+			'AutoPageBreak' => $this->AutoPageBreak,
+			'PageBreakTrigger' => $this->PageBreakTrigger,
+			'x' => $this->x,
+			'y' => $this->y,
+			'w' => $this->w,
+			'h' => $this->h,
+			'wPt' => $this->wPt,
+			'hPt' => $this->hPt,
+			'fwPt' => $this->fwPt,
+			'fhPt' => $this->fhPt,
+			'page' => $this->page,
+			'current_column' => $this->current_column,
+			'num_columns' => $this->num_columns
+			);
+		return $grapvars;
+	}
+
+	/**
+	 * Set graphic variables.
+	 * @param $gvars (array) array of graphic variablesto restore
+	 * @param $extended (boolean) if true restore extended graphic variables
+	 * @protected
+	 * @since 4.2.010 (2008-11-14)
+	 */
+	protected function setGraphicVars($gvars, $extended=false) {
+		$this->FontFamily = $gvars['FontFamily'];
+		$this->FontStyle = $gvars['FontStyle'];
+		$this->FontSizePt = $gvars['FontSizePt'];
+		$this->rMargin = $gvars['rMargin'];
+		$this->lMargin = $gvars['lMargin'];
+		$this->cell_padding = $gvars['cell_padding'];
+		$this->cell_margin = $gvars['cell_margin'];
+		$this->LineWidth = $gvars['LineWidth'];
+		$this->linestyleWidth = $gvars['linestyleWidth'];
+		$this->linestyleCap = $gvars['linestyleCap'];
+		$this->linestyleJoin = $gvars['linestyleJoin'];
+		$this->linestyleDash = $gvars['linestyleDash'];
+		$this->textrendermode = $gvars['textrendermode'];
+		$this->textstrokewidth = $gvars['textstrokewidth'];
+		$this->DrawColor = $gvars['DrawColor'];
+		$this->FillColor = $gvars['FillColor'];
+		$this->TextColor = $gvars['TextColor'];
+		$this->ColorFlag = $gvars['ColorFlag'];
+		$this->bgcolor = $gvars['bgcolor'];
+		$this->fgcolor = $gvars['fgcolor'];
+		$this->htmlvspace = $gvars['htmlvspace'];
+		$this->listindent = $gvars['listindent'];
+		$this->listindentlevel = $gvars['listindentlevel'];
+		$this->listnum = $gvars['listnum'];
+		$this->listordered = $gvars['listordered'];
+		$this->listcount = $gvars['listcount'];
+		$this->lispacer = $gvars['lispacer'];
+		$this->cell_height_ratio = $gvars['cell_height_ratio'];
+		$this->font_stretching = $gvars['font_stretching'];
+		$this->font_spacing = $gvars['font_spacing'];
+		if ($extended) {
+			// restore extended values
+			$this->lasth = $gvars['lasth'];
+			$this->tMargin = $gvars['tMargin'];
+			$this->bMargin = $gvars['bMargin'];
+			$this->AutoPageBreak = $gvars['AutoPageBreak'];
+			$this->PageBreakTrigger = $gvars['PageBreakTrigger'];
+			$this->x = $gvars['x'];
+			$this->y = $gvars['y'];
+			$this->w = $gvars['w'];
+			$this->h = $gvars['h'];
+			$this->wPt = $gvars['wPt'];
+			$this->hPt = $gvars['hPt'];
+			$this->fwPt = $gvars['fwPt'];
+			$this->fhPt = $gvars['fhPt'];
+			$this->page = $gvars['page'];
+			$this->current_column = $gvars['current_column'];
+			$this->num_columns = $gvars['num_columns'];
+		}
+		$this->_out(''.$this->linestyleWidth.' '.$this->linestyleCap.' '.$this->linestyleJoin.' '.$this->linestyleDash.' '.$this->DrawColor.' '.$this->FillColor.'');
+		if (!$this->empty_string($this->FontFamily)) {
+			$this->SetFont($this->FontFamily, $this->FontStyle, $this->FontSizePt);
+		}
+	}
+
+	/**
+	 * Returns a temporary filename for caching object on filesystem.
+	 * @param $name (string) prefix to add to filename
+	 * @return string filename.
+	 * @since 4.5.000 (2008-12-31)
+	 * @protected
+	 */
+	protected function getObjFilename($name) {
+		return tempnam(K_PATH_CACHE, $name.'_');
+	}
+
+	/**
+	 * Writes data to a temporary file on filesystem.
+	 * @param $filename (string) file name
+	 * @param $data (mixed) data to write on file
+	 * @param $append (boolean) if true append data, false replace.
+	 * @since 4.5.000 (2008-12-31)
+	 * @protected
+	 */
+	protected function writeDiskCache($filename, $data, $append=false) {
+		if ($append) {
+			$fmode = 'ab+';
+		} else {
+			$fmode = 'wb+';
+		}
+		$f = @fopen($filename, $fmode);
+		if (!$f) {
+			$this->Error('Unable to write cache file: '.$filename);
+		} else {
+			fwrite($f, $data);
+			fclose($f);
+		}
+		// update file length (needed for transactions)
+		if (!isset($this->cache_file_length['_'.$filename])) {
+			$this->cache_file_length['_'.$filename] = strlen($data);
+		} else {
+			$this->cache_file_length['_'.$filename] += strlen($data);
+		}
+	}
+
+	/**
+	 * Read data from a temporary file on filesystem.
+	 * @param $filename (string) file name
+	 * @return mixed retrieved data
+	 * @since 4.5.000 (2008-12-31)
+	 * @protected
+	 */
+	protected function readDiskCache($filename) {
+		return file_get_contents($filename);
+	}
+
+	/**
+	 * Set buffer content (always append data).
+	 * @param $data (string) data
+	 * @protected
+	 * @since 4.5.000 (2009-01-02)
+	 */
+	protected function setBuffer($data) {
+		$this->bufferlen += strlen($data);
+		if ($this->diskcache) {
+			if (!isset($this->buffer) OR $this->empty_string($this->buffer)) {
+				$this->buffer = $this->getObjFilename('buffer');
+			}
+			$this->writeDiskCache($this->buffer, $data, true);
+		} else {
+			$this->buffer .= $data;
+		}
+	}
+
+	/**
+	 * Replace the buffer content
+	 * @param $data (string) data
+	 * @protected
+	 * @since 5.5.000 (2010-06-22)
+	 */
+	protected function replaceBuffer($data) {
+		$this->bufferlen = strlen($data);
+		if ($this->diskcache) {
+			if (!isset($this->buffer) OR $this->empty_string($this->buffer)) {
+				$this->buffer = $this->getObjFilename('buffer');
+			}
+			$this->writeDiskCache($this->buffer, $data, false);
+		} else {
+			$this->buffer = $data;
+		}
+	}
+
+	/**
+	 * Get buffer content.
+	 * @return string buffer content
+	 * @protected
+	 * @since 4.5.000 (2009-01-02)
+	 */
+	protected function getBuffer() {
+		if ($this->diskcache) {
+			return $this->readDiskCache($this->buffer);
+		} else {
+			return $this->buffer;
+		}
+	}
+
+	/**
+	 * Set page buffer content.
+	 * @param $page (int) page number
+	 * @param $data (string) page data
+	 * @param $append (boolean) if true append data, false replace.
+	 * @protected
+	 * @since 4.5.000 (2008-12-31)
+	 */
+	protected function setPageBuffer($page, $data, $append=false) {
+		if ($this->diskcache) {
+			if (!isset($this->pages[$page])) {
+				$this->pages[$page] = $this->getObjFilename('page'.$page);
+			}
+			$this->writeDiskCache($this->pages[$page], $data, $append);
+		} else {
+			if ($append) {
+				$this->pages[$page] .= $data;
+			} else {
+				$this->pages[$page] = $data;
+			}
+		}
+		if ($append AND isset($this->pagelen[$page])) {
+			$this->pagelen[$page] += strlen($data);
+		} else {
+			$this->pagelen[$page] = strlen($data);
+		}
+	}
+
+	/**
+	 * Get page buffer content.
+	 * @param $page (int) page number
+	 * @return string page buffer content or false in case of error
+	 * @protected
+	 * @since 4.5.000 (2008-12-31)
+	 */
+	protected function getPageBuffer($page) {
+		if ($this->diskcache) {
+			return $this->readDiskCache($this->pages[$page]);
+		} elseif (isset($this->pages[$page])) {
+			return $this->pages[$page];
+		}
+		return false;
+	}
+
+	/**
+	 * Set image buffer content.
+	 * @param $image (string) image key
+	 * @param $data (array) image data
+	 * @protected
+	 * @since 4.5.000 (2008-12-31)
+	 */
+	protected function setImageBuffer($image, $data) {
+		if ($this->diskcache) {
+			if (!isset($this->images[$image])) {
+				$this->images[$image] = $this->getObjFilename('image'.$image);
+			}
+			$this->writeDiskCache($this->images[$image], serialize($data));
+		} else {
+			$this->images[$image] = $data;
+		}
+		if (!in_array($image, $this->imagekeys)) {
+			$this->imagekeys[] = $image;
+			++$this->numimages;
+		}
+	}
+
+	/**
+	 * Set image buffer content for a specified sub-key.
+	 * @param $image (string) image key
+	 * @param $key (string) image sub-key
+	 * @param $data (array) image data
+	 * @protected
+	 * @since 4.5.000 (2008-12-31)
+	 */
+	protected function setImageSubBuffer($image, $key, $data) {
+		if (!isset($this->images[$image])) {
+			$this->setImageBuffer($image, array());
+		}
+		if ($this->diskcache) {
+			$tmpimg = $this->getImageBuffer($image);
+			$tmpimg[$key] = $data;
+			$this->writeDiskCache($this->images[$image], serialize($tmpimg));
+		} else {
+			$this->images[$image][$key] = $data;
+		}
+	}
+
+	/**
+	 * Get image buffer content.
+	 * @param $image (string) image key
+	 * @return string image buffer content or false in case of error
+	 * @protected
+	 * @since 4.5.000 (2008-12-31)
+	 */
+	protected function getImageBuffer($image) {
+		if ($this->diskcache AND isset($this->images[$image])) {
+			return unserialize($this->readDiskCache($this->images[$image]));
+		} elseif (isset($this->images[$image])) {
+			return $this->images[$image];
+		}
+		return false;
+	}
+
+	/**
+	 * Set font buffer content.
+	 * @param $font (string) font key
+	 * @param $data (array) font data
+	 * @protected
+	 * @since 4.5.000 (2009-01-02)
+	 */
+	protected function setFontBuffer($font, $data) {
+		if ($this->diskcache) {
+			if (!isset($this->fonts[$font])) {
+				$this->fonts[$font] = $this->getObjFilename('font');
+			}
+			$this->writeDiskCache($this->fonts[$font], serialize($data));
+		} else {
+			$this->fonts[$font] = $data;
+		}
+		if (!in_array($font, $this->fontkeys)) {
+			$this->fontkeys[] = $font;
+			// store object ID for current font
+			++$this->n;
+			$this->font_obj_ids[$font] = $this->n;
+			$this->setFontSubBuffer($font, 'n', $this->n);
+		}
+	}
+
+	/**
+	 * Set font buffer content.
+	 * @param $font (string) font key
+	 * @param $key (string) font sub-key
+	 * @param $data (array) font data
+	 * @protected
+	 * @since 4.5.000 (2009-01-02)
+	 */
+	protected function setFontSubBuffer($font, $key, $data) {
+		if (!isset($this->fonts[$font])) {
+			$this->setFontBuffer($font, array());
+		}
+		if ($this->diskcache) {
+			$tmpfont = $this->getFontBuffer($font);
+			$tmpfont[$key] = $data;
+			$this->writeDiskCache($this->fonts[$font], serialize($tmpfont));
+		} else {
+			$this->fonts[$font][$key] = $data;
+		}
+	}
+
+	/**
+	 * Get font buffer content.
+	 * @param $font (string) font key
+	 * @return string font buffer content or false in case of error
+	 * @protected
+	 * @since 4.5.000 (2009-01-02)
+	 */
+	protected function getFontBuffer($font) {
+		if ($this->diskcache AND isset($this->fonts[$font])) {
+			return unserialize($this->readDiskCache($this->fonts[$font]));
+		} elseif (isset($this->fonts[$font])) {
+			return $this->fonts[$font];
+		}
+		return false;
+	}
+
+	/**
+	 * Move a page to a previous position.
+	 * @param $frompage (int) number of the source page
+	 * @param $topage (int) number of the destination page (must be less than $frompage)
+	 * @return true in case of success, false in case of error.
+	 * @public
+	 * @since 4.5.000 (2009-01-02)
+	 */
+	public function movePage($frompage, $topage) {
+		if (($frompage > $this->numpages) OR ($frompage <= $topage)) {
+			return false;
+		}
+		if ($frompage == $this->page) {
+			// close the page before moving it
+			$this->endPage();
+		}
+		// move all page-related states
+		$tmppage = $this->pages[$frompage];
+		$tmppagedim = $this->pagedim[$frompage];
+		$tmppagelen = $this->pagelen[$frompage];
+		$tmpintmrk = $this->intmrk[$frompage];
+		$tmpbordermrk = $this->bordermrk[$frompage];
+		$tmpcntmrk = $this->cntmrk[$frompage];
+		if (isset($this->footerpos[$frompage])) {
+			$tmpfooterpos = $this->footerpos[$frompage];
+		}
+		if (isset($this->footerlen[$frompage])) {
+			$tmpfooterlen = $this->footerlen[$frompage];
+		}
+		if (isset($this->transfmrk[$frompage])) {
+			$tmptransfmrk = $this->transfmrk[$frompage];
+		}
+		if (isset($this->PageAnnots[$frompage])) {
+			$tmpannots = $this->PageAnnots[$frompage];
+		}
+		if (isset($this->newpagegroup[$frompage])) {
+			$tmpnewpagegroup = $this->newpagegroup[$frompage];
+		}
+		for ($i = $frompage; $i > $topage; --$i) {
+			$j = $i - 1;
+			// shift pages down
+			$this->pages[$i] = $this->pages[$j];
+			$this->pagedim[$i] = $this->pagedim[$j];
+			$this->pagelen[$i] = $this->pagelen[$j];
+			$this->intmrk[$i] = $this->intmrk[$j];
+			$this->bordermrk[$i] = $this->bordermrk[$j];
+			$this->cntmrk[$i] = $this->cntmrk[$j];
+			if (isset($this->footerpos[$j])) {
+				$this->footerpos[$i] = $this->footerpos[$j];
+			} elseif (isset($this->footerpos[$i])) {
+				unset($this->footerpos[$i]);
+			}
+			if (isset($this->footerlen[$j])) {
+				$this->footerlen[$i] = $this->footerlen[$j];
+			} elseif (isset($this->footerlen[$i])) {
+				unset($this->footerlen[$i]);
+			}
+			if (isset($this->transfmrk[$j])) {
+				$this->transfmrk[$i] = $this->transfmrk[$j];
+			} elseif (isset($this->transfmrk[$i])) {
+				unset($this->transfmrk[$i]);
+			}
+			if (isset($this->PageAnnots[$j])) {
+				$this->PageAnnots[$i] = $this->PageAnnots[$j];
+			} elseif (isset($this->PageAnnots[$i])) {
+				unset($this->PageAnnots[$i]);
+			}
+			if (isset($this->newpagegroup[$j])) {
+				$this->newpagegroup[$i] = $this->newpagegroup[$j];
+			} elseif (isset($this->newpagegroup[$i])) {
+				unset($this->newpagegroup[$i]);
+			}
+		}
+		$this->pages[$topage] = $tmppage;
+		$this->pagedim[$topage] = $tmppagedim;
+		$this->pagelen[$topage] = $tmppagelen;
+		$this->intmrk[$topage] = $tmpintmrk;
+		$this->bordermrk[$topage] = $tmpbordermrk;
+		$this->cntmrk[$topage] = $tmpcntmrk;
+		if (isset($tmpfooterpos)) {
+			$this->footerpos[$topage] = $tmpfooterpos;
+		} elseif (isset($this->footerpos[$topage])) {
+			unset($this->footerpos[$topage]);
+		}
+		if (isset($tmpfooterlen)) {
+			$this->footerlen[$topage] = $tmpfooterlen;
+		} elseif (isset($this->footerlen[$topage])) {
+			unset($this->footerlen[$topage]);
+		}
+		if (isset($tmptransfmrk)) {
+			$this->transfmrk[$topage] = $tmptransfmrk;
+		} elseif (isset($this->transfmrk[$topage])) {
+			unset($this->transfmrk[$topage]);
+		}
+		if (isset($tmpannots)) {
+			$this->PageAnnots[$topage] = $tmpannots;
+		} elseif (isset($this->PageAnnots[$topage])) {
+			unset($this->PageAnnots[$topage]);
+		}
+		if (isset($tmpnewpagegroup)) {
+			$this->newpagegroup[$topage] = $tmpnewpagegroup;
+		} elseif (isset($this->newpagegroup[$topage])) {
+			unset($this->newpagegroup[$topage]);
+		}
+		// adjust outlines
+		$tmpoutlines = $this->outlines;
+		foreach ($tmpoutlines as $key => $outline) {
+			if (($outline['p'] >= $topage) AND ($outline['p'] < $frompage)) {
+				$this->outlines[$key]['p'] = $outline['p'] + 1;
+			} elseif ($outline['p'] == $frompage) {
+				$this->outlines[$key]['p'] = $topage;
+			}
+		}
+		// adjust links
+		$tmplinks = $this->links;
+		foreach ($tmplinks as $key => $link) {
+			if (($link[0] >= $topage) AND ($link[0] < $frompage)) {
+				$this->links[$key][0] = $link[0] + 1;
+			} elseif ($link[0] == $frompage) {
+				$this->links[$key][0] = $topage;
+			}
+		}
+		// adjust javascript
+		$tmpjavascript = $this->javascript;
+		global $jfrompage, $jtopage;
+		$jfrompage = $frompage;
+		$jtopage = $topage;
+		$this->javascript = preg_replace_callback('/this\.addField\(\'([^\']*)\',\'([^\']*)\',([0-9]+)/',
+			create_function('$matches', 'global $jfrompage, $jtopage;
+			$pagenum = intval($matches[3]) + 1;
+			if (($pagenum >= $jtopage) AND ($pagenum < $jfrompage)) {
+				$newpage = ($pagenum + 1);
+			} elseif ($pagenum == $jfrompage) {
+				$newpage = $jtopage;
+			} else {
+				$newpage = $pagenum;
+			}
+			--$newpage;
+			return "this.addField(\'".$matches[1]."\',\'".$matches[2]."\',".$newpage."";'), $tmpjavascript);
+		// return to last page
+		$this->lastPage(true);
+		return true;
+	}
+
+	/**
+	 * Remove the specified page.
+	 * @param $page (int) page to remove
+	 * @return true in case of success, false in case of error.
+	 * @public
+	 * @since 4.6.004 (2009-04-23)
+	 */
+	public function deletePage($page) {
+		if (($page < 1) OR ($page > $this->numpages)) {
+			return false;
+		}
+		// delete current page
+		unset($this->pages[$page]);
+		unset($this->pagedim[$page]);
+		unset($this->pagelen[$page]);
+		unset($this->intmrk[$page]);
+		unset($this->bordermrk[$page]);
+		unset($this->cntmrk[$page]);
+		if (isset($this->footerpos[$page])) {
+			unset($this->footerpos[$page]);
+		}
+		if (isset($this->footerlen[$page])) {
+			unset($this->footerlen[$page]);
+		}
+		if (isset($this->transfmrk[$page])) {
+			unset($this->transfmrk[$page]);
+		}
+		if (isset($this->PageAnnots[$page])) {
+			unset($this->PageAnnots[$page]);
+		}
+		if (isset($this->newpagegroup[$page])) {
+			unset($this->newpagegroup[$page]);
+		}
+		if (isset($this->pageopen[$page])) {
+			unset($this->pageopen[$page]);
+		}
+		// update remaining pages
+		for ($i = $page; $i < $this->numpages; ++$i) {
+			$j = $i + 1;
+			// shift pages
+			$this->pages[$i] = $this->pages[$j];
+			$this->pagedim[$i] = $this->pagedim[$j];
+			$this->pagelen[$i] = $this->pagelen[$j];
+			$this->intmrk[$i] = $this->intmrk[$j];
+			$this->bordermrk[$i] = $this->bordermrk[$j];
+			$this->cntmrk[$i] = $this->cntmrk[$j];
+			if (isset($this->footerpos[$j])) {
+				$this->footerpos[$i] = $this->footerpos[$j];
+			} elseif (isset($this->footerpos[$i])) {
+				unset($this->footerpos[$i]);
+			}
+			if (isset($this->footerlen[$j])) {
+				$this->footerlen[$i] = $this->footerlen[$j];
+			} elseif (isset($this->footerlen[$i])) {
+				unset($this->footerlen[$i]);
+			}
+			if (isset($this->transfmrk[$j])) {
+				$this->transfmrk[$i] = $this->transfmrk[$j];
+			} elseif (isset($this->transfmrk[$i])) {
+				unset($this->transfmrk[$i]);
+			}
+			if (isset($this->PageAnnots[$j])) {
+				$this->PageAnnots[$i] = $this->PageAnnots[$j];
+			} elseif (isset($this->PageAnnots[$i])) {
+				unset($this->PageAnnots[$i]);
+			}
+			if (isset($this->newpagegroup[$j])) {
+				$this->newpagegroup[$i] = $this->newpagegroup[$j];
+			} elseif (isset($this->newpagegroup[$i])) {
+				unset($this->newpagegroup[$i]);
+			}
+			if (isset($this->pageopen[$j])) {
+				$this->pageopen[$i] = $this->pageopen[$j];
+			} elseif (isset($this->pageopen[$i])) {
+				unset($this->pageopen[$i]);
+			}
+		}
+		// remove last page
+		unset($this->pages[$this->numpages]);
+		unset($this->pagedim[$this->numpages]);
+		unset($this->pagelen[$this->numpages]);
+		unset($this->intmrk[$this->numpages]);
+		unset($this->bordermrk[$this->numpages]);
+		unset($this->cntmrk[$this->numpages]);
+		if (isset($this->footerpos[$this->numpages])) {
+			unset($this->footerpos[$this->numpages]);
+		}
+		if (isset($this->footerlen[$this->numpages])) {
+			unset($this->footerlen[$this->numpages]);
+		}
+		if (isset($this->transfmrk[$this->numpages])) {
+			unset($this->transfmrk[$this->numpages]);
+		}
+		if (isset($this->PageAnnots[$this->numpages])) {
+			unset($this->PageAnnots[$this->numpages]);
+		}
+		if (isset($this->newpagegroup[$this->numpages])) {
+			unset($this->newpagegroup[$this->numpages]);
+		}
+		if (isset($this->pageopen[$this->numpages])) {
+			unset($this->pageopen[$this->numpages]);
+		}
+		--$this->numpages;
+		$this->page = $this->numpages;
+		// adjust outlines
+		$tmpoutlines = $this->outlines;
+		foreach ($tmpoutlines as $key => $outline) {
+			if ($outline['p'] > $page) {
+				$this->outlines[$key]['p'] = $outline['p'] - 1;
+			} elseif ($outline['p'] == $page) {
+				unset($this->outlines[$key]);
+			}
+		}
+		// adjust links
+		$tmplinks = $this->links;
+		foreach ($tmplinks as $key => $link) {
+			if ($link[0] > $page) {
+				$this->links[$key][0] = $link[0] - 1;
+			} elseif ($link[0] == $page) {
+				unset($this->links[$key]);
+			}
+		}
+		// adjust javascript
+		$tmpjavascript = $this->javascript;
+		global $jpage;
+		$jpage = $page;
+		$this->javascript = preg_replace_callback('/this\.addField\(\'([^\']*)\',\'([^\']*)\',([0-9]+)/',
+			create_function('$matches', 'global $jpage;
+			$pagenum = intval($matches[3]) + 1;
+			if ($pagenum >= $jpage) {
+				$newpage = ($pagenum - 1);
+			} elseif ($pagenum == $jpage) {
+				$newpage = 1;
+			} else {
+				$newpage = $pagenum;
+			}
+			--$newpage;
+			return "this.addField(\'".$matches[1]."\',\'".$matches[2]."\',".$newpage."";'), $tmpjavascript);
+		// return to last page
+		$this->lastPage(true);
+		return true;
+	}
+
+	/**
+	 * Clone the specified page to a new page.
+	 * @param $page (int) number of page to copy (0 = current page)
+	 * @return true in case of success, false in case of error.
+	 * @public
+	 * @since 4.9.015 (2010-04-20)
+	 */
+	public function copyPage($page=0) {
+		if ($page == 0) {
+			// default value
+			$page = $this->page;
+		}
+		if (($page < 1) OR ($page > $this->numpages)) {
+			return false;
+		}
+		if ($page == $this->page) {
+			// close the page before cloning it
+			$this->endPage();
+		}
+		// copy all page-related states
+		++$this->numpages;
+		$this->page = $this->numpages;
+		$this->pages[$this->page] = $this->pages[$page];
+		$this->pagedim[$this->page] = $this->pagedim[$page];
+		$this->pagelen[$this->page] = $this->pagelen[$page];
+		$this->intmrk[$this->page] = $this->intmrk[$page];
+		$this->bordermrk[$this->page] = $this->bordermrk[$page];
+		$this->cntmrk[$this->page] = $this->cntmrk[$page];
+		$this->pageopen[$this->page] = false;
+		if (isset($this->footerpos[$page])) {
+			$this->footerpos[$this->page] = $this->footerpos[$page];
+		}
+		if (isset($this->footerlen[$page])) {
+			$this->footerlen[$this->page] = $this->footerlen[$page];
+		}
+		if (isset($this->transfmrk[$page])) {
+			$this->transfmrk[$this->page] = $this->transfmrk[$page];
+		}
+		if (isset($this->PageAnnots[$page])) {
+			$this->PageAnnots[$this->page] = $this->PageAnnots[$page];
+		}
+		if (isset($this->newpagegroup[$page])) {
+			$this->newpagegroup[$this->page] = $this->newpagegroup[$page];
+		}
+		// copy outlines
+		$tmpoutlines = $this->outlines;
+		foreach ($tmpoutlines as $key => $outline) {
+			if ($outline['p'] == $page) {
+				$this->outlines[] = array('t' => $outline['t'], 'l' => $outline['l'], 'y' => $outline['y'], 'p' => $this->page);
+			}
+		}
+		// copy links
+		$tmplinks = $this->links;
+		foreach ($tmplinks as $key => $link) {
+			if ($link[0] == $page) {
+				$this->links[] = array($this->page, $link[1]);
+			}
+		}
+		// return to last page
+		$this->lastPage(true);
+		return true;
+	}
+
+	/**
+	 * Output a Table of Content Index (TOC).
+	 * Before calling this method you have to open the page using the addTOCPage() method.
+	 * After calling this method you have to call endTOCPage() to close the TOC page.
+	 * You can override this method to achieve different styles.
+	 * @param $page (int) page number where this TOC should be inserted (leave empty for current page).
+	 * @param $numbersfont (string) set the font for page numbers (please use monospaced font for better alignment).
+	 * @param $filler (string) string used to fill the space between text and page number.
+	 * @param $toc_name (string) name to use for TOC bookmark.
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 4.5.000 (2009-01-02)
+	 * @see addTOCPage(), endTOCPage(), addHTMLTOC()
+	 */
+	public function addTOC($page='', $numbersfont='', $filler='.', $toc_name='TOC') {
+		$fontsize = $this->FontSizePt;
+		$fontfamily = $this->FontFamily;
+		$fontstyle = $this->FontStyle;
+		$w = $this->w - $this->lMargin - $this->rMargin;
+		$spacer = $this->GetStringWidth(chr(32)) * 4;
+		$page_first = $this->getPage();
+		$lmargin = $this->lMargin;
+		$rmargin = $this->rMargin;
+		$x_start = $this->GetX();
+		$current_page = $this->page;
+		$current_column = $this->current_column;
+		if ($this->empty_string($numbersfont)) {
+			$numbersfont = $this->default_monospaced_font;
+		}
+		if ($this->empty_string($filler)) {
+			$filler = ' ';
+		}
+		if ($this->empty_string($page)) {
+			$gap = ' ';
+		} else {
+			$gap = '';
+			if ($page < 1) {
+				$page = 1;
+			}
+		}
+		foreach ($this->outlines as $key => $outline) {
+			if ($this->rtl) {
+				$aligntext = 'R';
+				$alignnum = 'L';
+			} else {
+				$aligntext = 'L';
+				$alignnum = 'R';
+			}
+			if ($outline['l'] == 0) {
+				$this->SetFont($fontfamily, $fontstyle.'B', $fontsize);
+			} else {
+				$this->SetFont($fontfamily, $fontstyle, $fontsize - $outline['l']);
+			}
+			// check for page break
+			$this->checkPageBreak(($this->FontSize * $this->cell_height_ratio));
+			// set margins and X position
+			if (($this->page == $current_page) AND ($this->current_column == $current_column)) {
+				$this->lMargin = $lmargin;
+				$this->rMargin = $rmargin;
+			} else {
+				if ($this->current_column != $current_column) {
 					if ($this->rtl) {
-						$this->rMargin -= $this->listindent;
+						$x_start = $this->w - $this->columns[$this->current_column]['x'];
 					} else {
-						$this->lMargin -= $this->listindent;
+						$x_start = $this->columns[$this->current_column]['x'];
 					}
-					--$this->listindentlevel;
-					$this->addHTMLVertSpace($hbz, $hb, $cell, $firstorlast);
-					break;
 				}
-				case 'p': {
-					$this->addHTMLVertSpace($hbz, $hb, $cell, $firstorlast);
-					break;
-				}
-				case 'pre': {
-					$this->addHTMLVertSpace($hbz, $hb, $cell, $firstorlast);
-					$this->premode = false;
-					break;
+				$lmargin = $this->lMargin;
+				$rmargin = $this->rMargin;
+				$current_page = $this->page;
+				$current_column = $this->current_column;
+			}
+			$this->SetX($x_start);
+			$indent = ($spacer * $outline['l']);
+			if ($this->rtl) {
+				$this->rMargin += $indent;
+				$this->x -= $indent;
+			} else {
+				$this->lMargin += $indent;
+				$this->x += $indent;
+			}
+			$link = $this->AddLink();
+			$this->SetLink($link, $outline['y'], $outline['p']);
+			// write the text
+			$this->Write(0, $outline['t'], $link, 0, $aligntext, false, 0, false, false, 0);
+			$this->SetFont($numbersfont, $fontstyle, $fontsize);
+			if ($this->empty_string($page)) {
+				$pagenum = $outline['p'];
+			} else {
+				// placemark to be replaced with the correct number
+				$pagenum = '{#'.($outline['p']).'}';
+				if ($this->isUnicodeFont()) {
+					$pagenum = '{'.$pagenum.'}';
 				}
-				case 'dl': {
-					--$this->listnum;
-					if ($this->listnum <= 0) {
-						$this->listnum = 0;
-						$this->addHTMLVertSpace($hbz, $hb, $cell, $firstorlast);
-					} else {
-						$this->addHTMLVertSpace(0, 0, $cell, $firstorlast);
+			}
+			$numwidth = $this->GetStringWidth($pagenum);
+			if ($this->rtl) {
+				$tw = $this->x - $this->lMargin;
+			} else {
+				$tw = $this->w - $this->rMargin - $this->x;
+			}
+			$fw = $tw - $numwidth - $this->GetStringWidth(chr(32));
+			$numfills = floor($fw / $this->GetStringWidth($filler));
+			if ($numfills > 0) {
+				$rowfill = str_repeat($filler, $numfills);
+			} else {
+				$rowfill = '';
+			}
+			if ($this->rtl) {
+				$pagenum = $pagenum.$gap.$rowfill.' ';
+			} else {
+				$pagenum = ' '.$rowfill.$gap.$pagenum;
+			}
+			// write the number
+			$this->Cell($tw, 0, $pagenum, 0, 1, $alignnum, 0, $link, 0);
+		}
+		$page_last = $this->getPage();
+		$numpages = $page_last - $page_first + 1;
+		if (!$this->empty_string($page)) {
+			for ($p = $page_first; $p <= $page_last; ++$p) {
+				// get page data
+				$temppage = $this->getPageBuffer($p);
+				for ($n = 1; $n <= $this->numpages; ++$n) {
+					// update page numbers
+					$k = '{#'.$n.'}';
+					$ku = '{'.$k.'}';
+					$alias_a = $this->_escape($k);
+					$alias_au = $this->_escape($ku);
+					if ($this->isunicode) {
+						$alias_b = $this->_escape($this->UTF8ToLatin1($k));
+						$alias_bu = $this->_escape($this->UTF8ToLatin1($ku));
+						$alias_c = $this->_escape($this->utf8StrRev($k, false, $this->tmprtl));
+						$alias_cu = $this->_escape($this->utf8StrRev($ku, false, $this->tmprtl));
 					}
-					$this->lasth = $this->FontSize * $this->cell_height_ratio;
-					break;
-				}
-				case 'dt': {
-					$this->lispacer = '';
-					$this->addHTMLVertSpace(0, 0, $cell, $firstorlast);
-					break;
-				}
-				case 'dd': {
-					$this->lispacer = '';
-					if ($this->rtl) {
-						$this->rMargin -= $this->listindent;
+					if ($n >= $page) {
+						$np = $n + $numpages;
 					} else {
-						$this->lMargin -= $this->listindent;
-					}
-					--$this->listindentlevel;
-					$this->addHTMLVertSpace(0, 0, $cell, $firstorlast);
-					break;
-				}
-				case 'ul':
-				case 'ol': {
-					--$this->listnum;
-					$this->lispacer = '';
+						$np = $n;
+					}
+					$ns = $this->formatTOCPageNumber($np);
+					$nu = $ns;
+					$sdiff = strlen($k) - strlen($ns) - 1;
+					$sdiffu = strlen($ku) - strlen($ns) - 1;
+					$sfill = str_repeat($filler, $sdiff);
+					$sfillu = str_repeat($filler, $sdiffu);
 					if ($this->rtl) {
-						$this->rMargin -= $this->listindent;
+						$ns = $ns.' '.$sfill;
+						$nu = $nu.' '.$sfillu;
 					} else {
-						$this->lMargin -= $this->listindent;
+						$ns = $sfill.' '.$ns;
+						$nu = $sfillu.' '.$nu;
 					}
-					--$this->listindentlevel;
-					if ($this->listnum <= 0) {
-						$this->listnum = 0;
-						$this->addHTMLVertSpace($hbz, $hb, $cell, $firstorlast);
-					} else {
-						$this->addHTMLVertSpace(0, 0, $cell, $firstorlast);
+					$nu = $this->UTF8ToUTF16BE($nu, false);
+					$temppage = str_replace($alias_au, $nu, $temppage);
+					if ($this->isunicode) {
+						$temppage = str_replace($alias_bu, $nu, $temppage);
+						$temppage = str_replace($alias_cu, $nu, $temppage);
+						$temppage = str_replace($alias_b, $ns, $temppage);
+						$temppage = str_replace($alias_c, $ns, $temppage);
 					}
-					$this->lasth = $this->FontSize * $this->cell_height_ratio;
-					break;
-				}
-				case 'li': {
-					$this->lispacer = '';
-					$this->addHTMLVertSpace(0, 0, $cell, $firstorlast);
-					break;
-				}
-				case 'h1':
-				case 'h2':
-				case 'h3':
-				case 'h4':
-				case 'h5':
-				case 'h6': {
-					$this->addHTMLVertSpace($hbz, $hb, $cell, $firstorlast);
-					break;
-				}
-				// Form fields (since 4.8.000 - 2009-09-07)
-				case 'form': {
-					$this->form_action = '';
-					$this->form_enctype = 'application/x-www-form-urlencoded';
-					break;
-				}
-				default : {
-					break;
+					$temppage = str_replace($alias_a, $ns, $temppage);
 				}
+				// save changes
+				$this->setPageBuffer($p, $temppage);
 			}
-			if (isset($dom[($dom[$key]['parent'])]['attribute']['pagebreakafter'])) {
-				$pba = $dom[($dom[$key]['parent'])]['attribute']['pagebreakafter'];
-				// check for pagebreak
-				if (($pba == 'true') OR ($pba == 'left') OR ($pba == 'right')) {
-					// add a page (or trig AcceptPageBreak() for multicolumn mode)
-					$this->checkPageBreak($this->PageBreakTrigger + 1);
-				}
-				if ((($pba == 'left') AND (((!$this->rtl) AND (($this->page % 2) == 0)) OR (($this->rtl) AND (($this->page % 2) != 0))))
-					OR (($pba == 'right') AND (((!$this->rtl) AND (($this->page % 2) != 0)) OR (($this->rtl) AND (($this->page % 2) == 0))))) {
-					// add a page (or trig AcceptPageBreak() for multicolumn mode)
-					$this->checkPageBreak($this->PageBreakTrigger + 1);
-				}
+			// move pages
+			$this->Bookmark($toc_name, 0, 0, $page_first);
+			for ($i = 0; $i < $numpages; ++$i) {
+				$this->movePage($page_last, $page);
 			}
-			$this->tmprtl = false;
 		}
+	}
 
-		/**
-		 * Add vertical spaces if needed.
-		 * @param string $hbz Distance between current y and line bottom.
-		 * @param string $hb The height of the break.
-		 * @param boolean $cell if true add the default cMargin space to each new line (default false).
-		 * @param boolean $firstorlast if true do not print additional empty lines.
-		 * @access protected
-		 */
-		protected function addHTMLVertSpace($hbz=0, $hb=0, $cell=false, $firstorlast=false) {
-			if ($firstorlast) {
-				$this->Ln(0, $cell);
-				$this->htmlvspace = 0;
-				return;
-			}
-			if ($hb < $this->htmlvspace) {
-				$hd = 0;
-			} else {
-				$hd = $hb - $this->htmlvspace;
-				$this->htmlvspace = $hb;
-			}
-			$this->Ln(($hbz + $hd), $cell);
-		}
-
-		/**
-		 * Set the default bullet to be used as LI bullet symbol
-		 * @param string $symbol character or string to be used (legal values are: '' = automatic, '!' = auto bullet, '#' = auto numbering, 'disc', 'disc', 'circle', 'square', '1', 'decimal', 'decimal-leading-zero', 'i', 'lower-roman', 'I', 'upper-roman', 'a', 'lower-alpha', 'lower-latin', 'A', 'upper-alpha', 'upper-latin', 'lower-greek')
-		 * @access public
-		 * @since 4.0.028 (2008-09-26)
-		 */
-		public function setLIsymbol($symbol='!') {
-			$symbol = strtolower($symbol);
-			switch ($symbol) {
-				case '!' :
-				case '#' :
-				case 'disc' :
-				case 'circle' :
-				case 'square' :
-				case '1':
-				case 'decimal':
-				case 'decimal-leading-zero':
-				case 'i':
-				case 'lower-roman':
-				case 'I':
-				case 'upper-roman':
-				case 'a':
-				case 'lower-alpha':
-				case 'lower-latin':
-				case 'A':
-				case 'upper-alpha':
-				case 'upper-latin':
-				case 'lower-greek': {
-					$this->lisymbol = $symbol;
-					break;
+	/**
+	 * Output a Table Of Content Index (TOC) using HTML templates.
+	 * Before calling this method you have to open the page using the addTOCPage() method.
+	 * After calling this method you have to call endTOCPage() to close the TOC page.
+	 * @param $page (int) page number where this TOC should be inserted (leave empty for current page).
+	 * @param $toc_name (string) name to use for TOC bookmark.
+	 * @param $templates (array) array of html templates. Use: "#TOC_DESCRIPTION#" for bookmark title, "#TOC_PAGE_NUMBER#" for page number.
+	 * @param $correct_align (boolean) if true correct the number alignment (numbers must be in monospaced font like courier and right aligned on LTR, or left aligned on RTL)
+	 * @public
+	 * @author Nicola Asuni
+	 * @since 5.0.001 (2010-05-06)
+	 * @see addTOCPage(), endTOCPage(), addTOC()
+	 */
+	public function addHTMLTOC($page='', $toc_name='TOC', $templates=array(), $correct_align=true) {
+		$prev_htmlLinkColorArray = $this->htmlLinkColorArray;
+		$prev_htmlLinkFontStyle = $this->htmlLinkFontStyle;
+		// set new style for link
+		$this->htmlLinkColorArray = array();
+		$this->htmlLinkFontStyle = '';
+		$page_first = $this->getPage();
+		// get the font type used for numbers in each template
+		$current_font = $this->FontFamily;
+		foreach ($templates as $level => $html) {
+			$dom = $this->getHtmlDomArray($html);
+			foreach ($dom as $key => $value) {
+				if ($value['value'] == '#TOC_PAGE_NUMBER#') {
+					$this->SetFont($dom[($key - 1)]['fontname']);
+					$templates['F'.$level] = $this->isUnicodeFont();
 				}
-				default : {
-					$this->lisymbol = '';
-				}
-			}
-		}
-
-		/**
-		 * Set the booklet mode for double-sided pages.
-		 * @param boolean $booklet true set the booklet mode on, false otherwise.
-		 * @param float $inner Inner page margin.
-		 * @param float $outer Outer page margin.
-		 * @access public
-		 * @since 4.2.000 (2008-10-29)
-		 */
-		public function SetBooklet($booklet=true, $inner=-1, $outer=-1) {
-			$this->booklet = $booklet;
-			if ($inner >= 0) {
-				$this->lMargin = $inner;
-			}
-			if ($outer >= 0) {
-				$this->rMargin = $outer;
-			}
-		}
-
-		/**
-		 * Swap the left and right margins.
-		 * @param boolean $reverse if true swap left and right margins.
-		 * @access protected
-		 * @since 4.2.000 (2008-10-29)
-		 */
-		protected function swapMargins($reverse=true) {
-			if ($reverse) {
-				// swap left and right margins
-				$mtemp = $this->original_lMargin;
-				$this->original_lMargin = $this->original_rMargin;
-				$this->original_rMargin = $mtemp;
-				$deltam = $this->original_lMargin - $this->original_rMargin;
-				$this->lMargin += $deltam;
-				$this->rMargin -= $deltam;
-			}
-		}
-
-		/**
-		 * Set the vertical spaces for HTML tags.
-		 * The array must have the following structure (example):
-		 * $tagvs = array('h1' => array(0 => array('h' => '', 'n' => 2), 1 => array('h' => 1.3, 'n' => 1)));
-		 * The first array level contains the tag names,
-		 * the second level contains 0 for opening tags or 1 for closing tags,
-		 * the third level contains the vertical space unit (h) and the number spaces to add (n).
-		 * If the h parameter is not specified, default values are used.
-		 * @param array $tagvs array of tags and relative vertical spaces.
-		 * @access public
-		 * @since 4.2.001 (2008-10-30)
-		 */
-		public function setHtmlVSpace($tagvs) {
-			$this->tagvspaces = $tagvs;
-		}
-
-		/**
-		 * Set custom width for list indentation.
-		 * @param float $width width of the indentation. Use negative value to disable it.
-		 * @access public
-		 * @since 4.2.007 (2008-11-12)
-		 */
-		public function setListIndentWidth($width) {
-			return $this->customlistindent = floatval($width);
-		}
-
-		/**
-		 * Set the top/bottom cell sides to be open or closed when the cell cross the page.
-		 * @param boolean $isopen if true keeps the top/bottom border open for the cell sides that cross the page.
-		 * @access public
-		 * @since 4.2.010 (2008-11-14)
-		 */
-		public function setOpenCell($isopen) {
-			$this->opencell = $isopen;
-		}
-
-		/**
-		 * Set the color and font style for HTML links.
-		 * @param array $color RGB array of colors
-		 * @param string $fontstyle additional font styles to add
-		 * @access public
-		 * @since 4.4.003 (2008-12-09)
-		 */
-		public function setHtmlLinksStyle($color=array(0,0,255), $fontstyle='U') {
-			$this->htmlLinkColorArray = $color;
-			$this->htmlLinkFontStyle = $fontstyle;
-		}
-
-		/**
-		 * Convert HTML string containing value and unit of measure to user's units or points.
-		 * @param string $htmlval string containing values and unit
-		 * @param string $refsize reference value in points
-		 * @param string $defaultunit default unit (can be one of the following: %, em, ex, px, in, mm, pc, pt).
-		 * @param boolean $point if true returns points, otherwise returns value in user's units
-		 * @return float value in user's unit or point if $points=true
-		 * @access public
-		 * @since 4.4.004 (2008-12-10)
-		 */
-		public function getHTMLUnitToUnits($htmlval, $refsize=1, $defaultunit='px', $points=false) {
-			$supportedunits = array('%', 'em', 'ex', 'px', 'in', 'cm', 'mm', 'pc', 'pt');
-			$retval = 0;
-			$value = 0;
-			$unit = 'px';
-			$k = $this->k;
-			if ($points) {
-				$k = 1;
 			}
-			if (in_array($defaultunit, $supportedunits)) {
-				$unit = $defaultunit;
-			}
-			if (is_numeric($htmlval)) {
-				$value = floatval($htmlval);
-			} elseif (preg_match('/([0-9\.\-\+]+)/', $htmlval, $mnum)) {
-				$value = floatval($mnum[1]);
-				if (preg_match('/([a-z%]+)/', $htmlval, $munit)) {
-					if (in_array($munit[1], $supportedunits)) {
-						$unit = $munit[1];
+		}
+		$this->SetFont($current_font);
+		foreach ($this->outlines as $key => $outline) {
+			// get HTML template
+			$row = $templates[$outline['l']];
+			if ($this->empty_string($page)) {
+				$pagenum = $outline['p'];
+			} else {
+				// placemark to be replaced with the correct number
+				$pagenum = '{#'.($outline['p']).'}';
+				if ($templates['F'.$outline['l']]) {
+					$pagenum = '{'.$pagenum.'}';
+				}
+			}
+			// replace templates with current values
+			$row = str_replace('#TOC_DESCRIPTION#', $outline['t'], $row);
+			$row = str_replace('#TOC_PAGE_NUMBER#', $pagenum, $row);
+			// add link to page
+			$row = '<a href="#'.$outline['p'].','.$outline['y'].'">'.$row.'</a>';
+			// write bookmark entry
+			$this->writeHTML($row, false, false, true, false, '');
+		}
+		// restore link styles
+		$this->htmlLinkColorArray = $prev_htmlLinkColorArray;
+		$this->htmlLinkFontStyle = $prev_htmlLinkFontStyle;
+		// move TOC page and replace numbers
+		$page_last = $this->getPage();
+		$numpages = $page_last - $page_first + 1;
+		if (!$this->empty_string($page)) {
+			for ($p = $page_first; $p <= $page_last; ++$p) {
+				// get page data
+				$temppage = $this->getPageBuffer($p);
+				for ($n = 1; $n <= $this->numpages; ++$n) {
+					// update page numbers
+					$k = '{#'.$n.'}';
+					$ku = '{'.$k.'}';
+					$alias_a = $this->_escape($k);
+					$alias_au = $this->_escape('{'.$k.'}');
+					if ($this->isunicode) {
+						$alias_b = $this->_escape($this->UTF8ToLatin1($k));
+						$alias_bu = $this->_escape($this->UTF8ToLatin1($ku));
+						$alias_c = $this->_escape($this->utf8StrRev($k, false, $this->tmprtl));
+						$alias_cu = $this->_escape($this->utf8StrRev($ku, false, $this->tmprtl));
 					}
-				}
-			}
-			switch ($unit) {
-				// percentage
-				case '%': {
-					$retval = (($value * $refsize) / 100);
-					break;
-				}
-				// relative-size
-				case 'em': {
-					$retval = ($value * $refsize);
-					break;
-				}
-				// height of lower case 'x' (about half the font-size)
-				case 'ex': {
-					$retval = $value * ($refsize / 2);
-					break;
-				}
-				// absolute-size
-				case 'in': {
-					$retval = ($value * $this->dpi) / $k;
-					break;
-				}
-				// centimeters
-				case 'cm': {
-					$retval = ($value / 2.54 * $this->dpi) / $k;
-					break;
-				}
-				// millimeters
-				case 'mm': {
-					$retval = ($value / 25.4 * $this->dpi) / $k;
-					break;
-				}
-				// one pica is 12 points
-				case 'pc': {
-					$retval = ($value * 12) / $k;
-					break;
-				}
-				// points
-				case 'pt': {
-					$retval = $value / $k;
-					break;
-				}
-				// pixels
-				case 'px': {
-					$retval = $this->pixelsToUnits($value);
-					break;
-				}
-			}
-			return $retval;
-		}
-
-		/**
-		 * Returns the Roman representation of an integer number
-		 * @param int number to convert
-		 * @return string roman representation of the specified number
-		 * @access public
-		 * @since 4.4.004 (2008-12-10)
-		 */
-		public function intToRoman($number) {
-			$roman = '';
-			while ($number >= 1000) {
-				$roman .= 'M';
-				$number -= 1000;
-			}
-			while ($number >= 900) {
-				$roman .= 'CM';
-				$number -= 900;
-			}
-			while ($number >= 500) {
-				$roman .= 'D';
-				$number -= 500;
-			}
-			while ($number >= 400) {
-				$roman .= 'CD';
-				$number -= 400;
-			}
-			while ($number >= 100) {
-				$roman .= 'C';
-				$number -= 100;
-			}
-			while ($number >= 90) {
-				$roman .= 'XC';
-				$number -= 90;
-			}
-			while ($number >= 50) {
-				$roman .= 'L';
-				$number -= 50;
-			}
-			while ($number >= 40) {
-				$roman .= 'XL';
-				$number -= 40;
-			}
-			while ($number >= 10) {
-				$roman .= 'X';
-				$number -= 10;
-			}
-			while ($number >= 9) {
-				$roman .= 'IX';
-				$number -= 9;
-			}
-			while ($number >= 5) {
-				$roman .= 'V';
-				$number -= 5;
-			}
-			while ($number >= 4) {
-				$roman .= 'IV';
-				$number -= 4;
-			}
-			while ($number >= 1) {
-				$roman .= 'I';
-				--$number;
-			}
-			return $roman;
-		}
-
-		/**
-		 * Output an HTML list bullet or ordered item symbol
-		 * @param int $listdepth list nesting level
-		 * @param string $listtype type of list
-		 * @param float $size current font size
-		 * @access protected
-		 * @since 4.4.004 (2008-12-10)
-		 */
-		protected function putHtmlListBullet($listdepth, $listtype='', $size=10) {
-			$size /= $this->k;
-			$fill = '';
-			$color = $this->fgcolor;
-			$width = 0;
-			$textitem = '';
-			$tmpx = $this->x;
-			$lspace = $this->GetStringWidth('  ');
-			if ($listtype == '^') {
-				// special symbol used for avoid justification of rect bullet
-				$this->lispacer = '';
-				return;
-			} elseif ($listtype == '!') {
-				// set default list type for unordered list
-				$deftypes = array('disc', 'circle', 'square');
-				$listtype = $deftypes[($listdepth - 1) % 3];
-			} elseif ($listtype == '#') {
-				// set default list type for ordered list
-				$listtype = 'decimal';
-			}
-			switch ($listtype) {
-				// unordered types
-				case 'none': {
-					break;
-				}
-				case 'disc': {
-					$fill = 'F';
-				}
-				case 'circle': {
-					$fill .= 'D';
-					$r = $size / 6;
-					$lspace += (2 * $r);
-					if ($this->rtl) {
-						$this->x += $lspace;
+					if ($n >= $page) {
+						$np = $n + $numpages;
 					} else {
-						$this->x -= $lspace;
+						$np = $n;
+					}
+					$ns = $this->formatTOCPageNumber($np);
+					$nu = $ns;
+					if ($correct_align) {
+						$sdiff = strlen($k) - strlen($ns);
+						$sdiffu = strlen($ku) - strlen($ns);
+						$sfill = str_repeat(' ', $sdiff);
+						$sfillu = str_repeat(' ', $sdiffu);
+						if ($this->rtl) {
+							$ns = $ns.$sfill;
+							$nu = $nu.$sfillu;
+						} else {
+							$ns = $sfill.$ns;
+							$nu = $sfillu.$nu;
+						}
 					}
-					$this->Circle(($this->x + $r), ($this->y + ($this->lasth / 2)), $r, 0, 360, $fill, array('color'=>$color), $color, 8);
-					break;
-				}
-				case 'square': {
-					$l = $size / 3;
-					$lspace += $l;
-					if ($this->rtl) {;
-						$this->x += $lspace;
-					} else {
-						$this->x -= $lspace;
+					$nu = $this->UTF8ToUTF16BE($nu, false);
+					$temppage = str_replace($alias_au, $nu, $temppage);
+					if ($this->isunicode) {
+						$temppage = str_replace($alias_bu, $nu, $temppage);
+						$temppage = str_replace($alias_cu, $nu, $temppage);
+						$temppage = str_replace($alias_b, $ns, $temppage);
+						$temppage = str_replace($alias_c, $ns, $temppage);
 					}
-					$this->Rect($this->x, ($this->y + (($this->lasth - $l)/ 2)), $l, $l, 'F', array(), $color);
-					break;
-				}
-				// ordered types
-				// $this->listcount[$this->listnum];
-				// $textitem
-				case '1':
-				case 'decimal': {
-					$textitem = $this->listcount[$this->listnum];
-					break;
-				}
-				case 'decimal-leading-zero': {
-					$textitem = sprintf('%02d', $this->listcount[$this->listnum]);
-					break;
-				}
-				case 'i':
-				case 'lower-roman': {
-					$textitem = strtolower($this->intToRoman($this->listcount[$this->listnum]));
-					break;
-				}
-				case 'I':
-				case 'upper-roman': {
-					$textitem = $this->intToRoman($this->listcount[$this->listnum]);
-					break;
-				}
-				case 'a':
-				case 'lower-alpha':
-				case 'lower-latin': {
-					$textitem = chr(97 + $this->listcount[$this->listnum] - 1);
-					break;
-				}
-				case 'A':
-				case 'upper-alpha':
-				case 'upper-latin': {
-					$textitem = chr(65 + $this->listcount[$this->listnum] - 1);
-					break;
-				}
-				case 'lower-greek': {
-					$textitem = $this->unichr(945 + $this->listcount[$this->listnum] - 1);
-					break;
-				}
-				/*
-				// Types to be implemented (special handling)
-				case 'hebrew': {
-					break;
-				}
-				case 'armenian': {
-					break;
-				}
-				case 'georgian': {
-					break;
-				}
-				case 'cjk-ideographic': {
-					break;
-				}
-				case 'hiragana': {
-					break;
-				}
-				case 'katakana': {
-					break;
-				}
-				case 'hiragana-iroha': {
-					break;
-				}
-				case 'katakana-iroha': {
-					break;
-				}
-				*/
-				default: {
-					$textitem = $this->listcount[$this->listnum];
+					$temppage = str_replace($alias_a, $ns, $temppage);
 				}
+				// save changes
+				$this->setPageBuffer($p, $temppage);
 			}
-			if (!$this->empty_string($textitem)) {
-				// print ordered item
-				if ($this->rtl) {
-					$textitem = '.'.$textitem;
-				} else {
-					$textitem = $textitem.'.';
-				}
-				$lspace += $this->GetStringWidth($textitem);
-				if ($this->rtl) {
-					$this->x += $lspace;
-				} else {
-					$this->x -= $lspace;
-				}
-				$this->Write($this->lasth, $textitem, '', false, '', false, 0, false);
-			}
-			$this->x = $tmpx;
-			$this->lispacer = '^';
-		}
-
-		/**
-		 * Returns current graphic variables as array.
-		 * @return array graphic variables
-		 * @access protected
-		 * @since 4.2.010 (2008-11-14)
-		 */
-		protected function getGraphicVars() {
-			$grapvars = array(
-				'FontFamily' => $this->FontFamily,
-				'FontStyle' => $this->FontStyle,
-				'FontSizePt' => $this->FontSizePt,
-				'rMargin' => $this->rMargin,
-				'lMargin' => $this->lMargin,
-				'cMargin' => $this->cMargin,
-				'LineWidth' => $this->LineWidth,
-				'linestyleWidth' => $this->linestyleWidth,
-				'linestyleCap' => $this->linestyleCap,
-				'linestyleJoin' => $this->linestyleJoin,
-				'linestyleDash' => $this->linestyleDash,
-				'textrendermode' => $this->textrendermode,
-				'textstrokewidth' => $this->textstrokewidth,
-				'DrawColor' => $this->DrawColor,
-				'FillColor' => $this->FillColor,
-				'TextColor' => $this->TextColor,
-				'ColorFlag' => $this->ColorFlag,
-				'bgcolor' => $this->bgcolor,
-				'fgcolor' => $this->fgcolor,
-				'htmlvspace' => $this->htmlvspace,
-				'listindent' => $this->listindent,
-				'listindentlevel' => $this->listindentlevel,
-				'listnum' => $this->listnum,
-				'listordered' => $this->listordered,
-				'listcount' => $this->listcount,
-				'lispacer' => $this->lispacer,
-				'lasth' => $this->lasth
-				);
-			return $grapvars;
-		}
-
-		/**
-		 * Set graphic variables.
-		 * @param $gvars array graphic variables
-		 * @access protected
-		 * @since 4.2.010 (2008-11-14)
-		 */
-		protected function setGraphicVars($gvars) {
-			$this->FontFamily = $gvars['FontFamily'];
-			$this->FontStyle = $gvars['FontStyle'];
-			$this->FontSizePt = $gvars['FontSizePt'];
-			$this->rMargin = $gvars['rMargin'];
-			$this->lMargin = $gvars['lMargin'];
-			$this->cMargin = $gvars['cMargin'];
-			$this->LineWidth = $gvars['LineWidth'];
-			$this->linestyleWidth = $gvars['linestyleWidth'];
-			$this->linestyleCap = $gvars['linestyleCap'];
-			$this->linestyleJoin = $gvars['linestyleJoin'];
-			$this->linestyleDash = $gvars['linestyleDash'];
-			$this->textrendermode = $gvars['textrendermode'];
-			$this->textstrokewidth = $gvars['textstrokewidth'];
-			$this->DrawColor = $gvars['DrawColor'];
-			$this->FillColor = $gvars['FillColor'];
-			$this->TextColor = $gvars['TextColor'];
-			$this->ColorFlag = $gvars['ColorFlag'];
-			$this->bgcolor = $gvars['bgcolor'];
-			$this->fgcolor = $gvars['fgcolor'];
-			$this->htmlvspace = $gvars['htmlvspace'];
-			$this->listindent = $gvars['listindent'];
-			$this->listindentlevel = $gvars['listindentlevel'];
-			$this->listnum = $gvars['listnum'];
-			$this->listordered = $gvars['listordered'];
-			$this->listcount = $gvars['listcount'];
-			$this->lispacer = $gvars['lispacer'];
-			//$this->lasth = $gvars['lasth'];
-			$this->_out(''.$this->linestyleWidth.' '.$this->linestyleCap.' '.$this->linestyleJoin.' '.$this->linestyleDash.' '.$this->DrawColor.' '.$this->FillColor.'');
-			if (!$this->empty_string($this->FontFamily)) {
-				$this->SetFont($this->FontFamily, $this->FontStyle, $this->FontSizePt);
-			}
-		}
-
-		/**
-		 * Returns a temporary filename for caching object on filesystem.
-		 * @param string $prefix prefix to add to filename
-		 * return string filename.
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected function getObjFilename($name) {
-			return tempnam(K_PATH_CACHE, $name.'_');
-		}
-
-		/**
-		 * Writes data to a temporary file on filesystem.
-		 * @param string $file file name
-		 * @param mixed $data data to write on file
-		 * @param boolean $append if true append data, false replace.
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected function writeDiskCache($filename, $data, $append=false) {
-			if ($append) {
-				$fmode = 'ab+';
-			} else {
-				$fmode = 'wb+';
-			}
-			$f = @fopen($filename, $fmode);
-			if (!$f) {
-				$this->Error('Unable to write cache file: '.$filename);
-			} else {
-				fwrite($f, $data);
-				fclose($f);
-			}
-			// update file length (needed for transactions)
-			if (!isset($this->cache_file_length['_'.$filename])) {
-				$this->cache_file_length['_'.$filename] = strlen($data);
-			} else {
-				$this->cache_file_length['_'.$filename] += strlen($data);
+			// move pages
+			$this->Bookmark($toc_name, 0, 0, $page_first);
+			for ($i = 0; $i < $numpages; ++$i) {
+				$this->movePage($page_last, $page);
 			}
 		}
+	}
+
+	/**
+	 * Stores a copy of the current TCPDF object used for undo operation.
+	 * @public
+	 * @since 4.5.029 (2009-03-19)
+	 */
+	public function startTransaction() {
+		if (isset($this->objcopy)) {
+			// remove previous copy
+			$this->commitTransaction();
+		}
+		// record current page number and Y position
+		$this->start_transaction_page = $this->page;
+		$this->start_transaction_y = $this->y;
+		// clone current object
+		$this->objcopy = $this->objclone($this);
+	}
 
-		/**
-		 * Read data from a temporary file on filesystem.
-		 * @param string $file file name
-		 * @return mixed retrieved data
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected function readDiskCache($filename) {
-			return file_get_contents($filename);
+	/**
+	 * Delete the copy of the current TCPDF object used for undo operation.
+	 * @public
+	 * @since 4.5.029 (2009-03-19)
+	 */
+	public function commitTransaction() {
+		if (isset($this->objcopy)) {
+			$this->objcopy->_destroy(true, true);
+			unset($this->objcopy);
 		}
+	}
 
-		/**
-		 * Set buffer content (always append data).
-		 * @param string $data data
-		 * @access protected
-		 * @since 4.5.000 (2009-01-02)
-		 */
-		protected function setBuffer($data) {
-			$this->bufferlen += strlen($data);
-			if ($this->diskcache) {
-				if (!isset($this->buffer) OR $this->empty_string($this->buffer)) {
-					$this->buffer = $this->getObjFilename('buffer');
+	/**
+	 * This method allows to undo the latest transaction by returning the latest saved TCPDF object with startTransaction().
+	 * @param $self (boolean) if true restores current class object to previous state without the need of reassignment via the returned value.
+	 * @return TCPDF object.
+	 * @public
+	 * @since 4.5.029 (2009-03-19)
+	 */
+	public function rollbackTransaction($self=false) {
+		if (isset($this->objcopy)) {
+			if (isset($this->objcopy->diskcache) AND $this->objcopy->diskcache) {
+				// truncate files to previous values
+				foreach ($this->objcopy->cache_file_length as $file => $length) {
+					$file = substr($file, 1);
+					$handle = fopen($file, 'r+');
+					ftruncate($handle, $length);
+				}
+			}
+			$this->_destroy(true, true);
+			if ($self) {
+				$objvars = get_object_vars($this->objcopy);
+				foreach ($objvars as $key => $value) {
+					$this->$key = $value;
 				}
-				$this->writeDiskCache($this->buffer, $data, true);
-			} else {
-				$this->buffer .= $data;
 			}
+			return $this->objcopy;
 		}
+		return $this;
+	}
 
-		/**
-		 * Replace the buffer content
-		 * @param string $data data
-		 * @access protected
-		 * @since 5.5.000 (2010-06-22)
-		 */
-		protected function replaceBuffer($data) {
-			$this->bufferlen = strlen($data);
-			if ($this->diskcache) {
-				if (!isset($this->buffer) OR $this->empty_string($this->buffer)) {
-					$this->buffer = $this->getObjFilename('buffer');
+	/**
+	 * Creates a copy of a class object
+	 * @param $object (object) class object to be cloned
+	 * @return cloned object
+	 * @public
+	 * @since 4.5.029 (2009-03-19)
+	 */
+	public function objclone($object) {
+		return @clone($object);
+	}
+
+	/**
+	 * Determine whether a string is empty.
+	 * @param $str (string) string to be checked
+	 * @return boolean true if string is empty
+	 * @public
+	 * @since 4.5.044 (2009-04-16)
+	 */
+	public function empty_string($str) {
+		return (is_null($str) OR (is_string($str) AND (strlen($str) == 0)));
+	}
+
+	/**
+	 * Find position of last occurrence of a substring in a string
+	 * @param $haystack (string) The string to search in.
+	 * @param $needle (string) substring to search.
+	 * @param $offset (int) May be specified to begin searching an arbitrary number of characters into the string.
+	 * @return Returns the position where the needle exists. Returns FALSE if the needle was not found.
+	 * @public
+	 * @since 4.8.038 (2010-03-13)
+	 */
+	public function revstrpos($haystack, $needle, $offset = 0) {
+		$length = strlen($haystack);
+		$offset = ($offset > 0)?($length - $offset):abs($offset);
+		$pos = strpos(strrev($haystack), strrev($needle), $offset);
+		return ($pos === false)?false:($length - $pos - strlen($needle));
+	}
+
+	// --- MULTI COLUMNS METHODS -----------------------
+
+	/**
+	 * Set multiple columns of the same size
+	 * @param $numcols (int) number of columns (set to zero to disable columns mode)
+	 * @param $width (int) column width
+	 * @param $y (int) column starting Y position (leave empty for current Y position)
+	 * @public
+	 * @since 4.9.001 (2010-03-28)
+	 */
+	public function setEqualColumns($numcols=0, $width=0, $y='') {
+		$this->columns = array();
+		if ($numcols < 2) {
+			$numcols = 0;
+			$this->columns = array();
+		} else {
+			// maximum column width
+			$maxwidth = ($this->w - $this->original_lMargin - $this->original_rMargin) / $numcols;
+			if (($width == 0) OR ($width > $maxwidth)) {
+				$width = $maxwidth;
+			}
+			if ($this->empty_string($y)) {
+				$y = $this->y;
+			}
+			// space between columns
+			$space = (($this->w - $this->original_lMargin - $this->original_rMargin - ($numcols * $width)) / ($numcols - 1));
+			// fill the columns array (with, space, starting Y position)
+			for ($i = 0; $i < $numcols; ++$i) {
+				$this->columns[$i] = array('w' => $width, 's' => $space, 'y' => $y);
+			}
+		}
+		$this->num_columns = $numcols;
+		$this->current_column = 0;
+		$this->column_start_page = $this->page;
+	}
+
+	/**
+	 * Set columns array.
+	 * Each column is represented by an array of arrays with the following keys: (w = width, s = space between columns, y = column top position).
+	 * @param $columns (array)
+	 * @public
+	 * @since 4.9.001 (2010-03-28)
+	 */
+	public function setColumnsArray($columns) {
+		$this->columns = $columns;
+		$this->num_columns = count($columns);
+		$this->current_column = 0;
+		$this->column_start_page = $this->page;
+	}
+
+	/**
+	 * Set position at a given column
+	 * @param $col (int) column number (from 0 to getNumberOfColumns()-1); empty string = current column.
+	 * @public
+	 * @since 4.9.001 (2010-03-28)
+	 */
+	public function selectColumn($col='') {
+		if (is_string($col)) {
+			$col = $this->current_column;
+		} elseif($col >= $this->num_columns) {
+			$col = 0;
+		}
+		$xshift = 0;
+		$enable_thead = false;
+		if ($this->num_columns > 1) {
+			if ($col != $this->current_column) {
+				// move Y pointer at the top of the column
+				if ($this->column_start_page == $this->page) {
+					$this->y = $this->columns[$col]['y'];
+				} else {
+					$this->y = $this->tMargin;
+				}
+				// Avoid to write table headers more than once
+				if (($this->page > $this->maxselcol['page']) OR (($this->page == $this->maxselcol['page']) AND ($col > $this->maxselcol['column']))) {
+					$enable_thead = true;
+					$this->maxselcol['page'] = $this->page;
+					$this->maxselcol['column'] = $col;
 				}
-				$this->writeDiskCache($this->buffer, $data, false);
+			}
+			$xshift = $this->colxshift;
+			// set X position of the current column by case
+			$listindent = ($this->listindentlevel * $this->listindent);
+			$colpos = ($col * ($this->columns[$col]['w'] + $this->columns[$col]['s']));
+			if ($this->rtl) {
+				$x = $this->w - $this->original_rMargin - $colpos;
+				$this->rMargin = ($this->w - $x + $listindent);
+				$this->lMargin = ($x - $this->columns[$col]['w']);
+				$this->x = $x - $listindent;
 			} else {
-				$this->buffer = $data;
+				$x = $this->original_lMargin + $colpos;
+				$this->lMargin = ($x + $listindent);
+				$this->rMargin = ($this->w - $x - $this->columns[$col]['w']);
+				$this->x = $x + $listindent;
+			}
+			$this->columns[$col]['x'] = $x;
+		}
+		$this->current_column = $col;
+		// fix for HTML mode
+		$this->newline = true;
+		// print HTML table header (if any)
+		if ((!$this->empty_string($this->thead)) AND (!$this->inthead)) {
+			if ($enable_thead) {
+				// print table header
+				$this->writeHTML($this->thead, false, false, false, false, '');
+				$this->y += $xshift['s']['V'];
+				// store end of header position
+				if (!isset($this->columns[$col]['th'])) {
+					$this->columns[$col]['th'] = array();
+				}
+				$this->columns[$col]['th']['\''.$this->page.'\''] = $this->y;
+				$this->lasth = 0;
+			} elseif (isset($this->columns[$col]['th']['\''.$this->page.'\''])) {
+				$this->y = $this->columns[$col]['th']['\''.$this->page.'\''];
 			}
 		}
-
-		/**
-		 * Get buffer content.
-		 * @return string buffer content
-		 * @access protected
-		 * @since 4.5.000 (2009-01-02)
-		 */
-		protected function getBuffer() {
-			if ($this->diskcache) {
-				return $this->readDiskCache($this->buffer);
-			} else {
-				return $this->buffer;
-			}
+		// account for an html table cell over multiple columns
+		if ($this->rtl) {
+			$this->rMargin += $xshift['x'];
+			$this->x -= ($xshift['x'] + $xshift['p']['R']);
+		} else {
+			$this->lMargin += $xshift['x'];
+			$this->x += $xshift['x'] + $xshift['p']['L'];
 		}
+	}
 
-		/**
-		 * Set page buffer content.
-		 * @param int $page page number
-		 * @param string $data page data
-		 * @param boolean $append if true append data, false replace.
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected function setPageBuffer($page, $data, $append=false) {
-			if ($this->diskcache) {
-				if (!isset($this->pages[$page])) {
-					$this->pages[$page] = $this->getObjFilename('page'.$page);
+	/**
+	 * Return the current column number
+	 * @return int current column number
+	 * @public
+	 * @since 5.5.011 (2010-07-08)
+	 */
+	public function getColumn() {
+		return $this->current_column;
+	}
+
+	/**
+	 * Return the current number of columns.
+	 * @return int number of columns
+	 * @public
+	 * @since 5.8.018 (2010-08-25)
+	 */
+	public function getNumberOfColumns() {
+		return $this->num_columns;
+	}
+
+	/**
+	 * Serialize an array of parameters to be used with TCPDF tag in HTML code.
+	 * @param $pararray (array) parameters array
+	 * @return sting containing serialized data
+	 * @public
+	 * @since 4.9.006 (2010-04-02)
+	 */
+	public function serializeTCPDFtagParameters($pararray) {
+		return urlencode(serialize($pararray));
+	}
+
+	/**
+	 * Set Text rendering mode.
+	 * @param $stroke (int) outline size in user units (0 = disable).
+	 * @param $fill (boolean) if true fills the text (default).
+	 * @param $clip (boolean) if true activate clipping mode
+	 * @public
+	 * @since 4.9.008 (2009-04-02)
+	 */
+	public function setTextRenderingMode($stroke=0, $fill=true, $clip=false) {
+		// Ref.: PDF 32000-1:2008 - 9.3.6 Text Rendering Mode
+		// convert text rendering parameters
+		if ($stroke < 0) {
+			$stroke = 0;
+		}
+		if ($fill === true) {
+			if ($stroke > 0) {
+				if ($clip === true) {
+					// Fill, then stroke text and add to path for clipping
+					$textrendermode = 6;
+				} else {
+					// Fill, then stroke text
+					$textrendermode = 2;
 				}
-				$this->writeDiskCache($this->pages[$page], $data, $append);
+				$textstrokewidth = $stroke;
 			} else {
-				if ($append) {
-					$this->pages[$page] .= $data;
+				if ($clip === true) {
+					// Fill text and add to path for clipping
+					$textrendermode = 4;
 				} else {
-					$this->pages[$page] = $data;
+					// Fill text
+					$textrendermode = 0;
 				}
 			}
-			if ($append AND isset($this->pagelen[$page])) {
-				$this->pagelen[$page] += strlen($data);
+		} else {
+			if ($stroke > 0) {
+				if ($clip === true) {
+					// Stroke text and add to path for clipping
+					$textrendermode = 5;
+				} else {
+					// Stroke text
+					$textrendermode = 1;
+				}
+				$textstrokewidth = $stroke;
 			} else {
-				$this->pagelen[$page] = strlen($data);
+				if ($clip === true) {
+					// Add text to path for clipping
+					$textrendermode = 7;
+				} else {
+					// Neither fill nor stroke text (invisible)
+					$textrendermode = 3;
+				}
 			}
 		}
+		$this->textrendermode = $textrendermode;
+		$this->textstrokewidth = $stroke * $this->k;
+	}
 
-		/**
-		 * Get page buffer content.
-		 * @param int $page page number
-		 * @return string page buffer content or false in case of error
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected function getPageBuffer($page) {
-			if ($this->diskcache) {
-				return $this->readDiskCache($this->pages[$page]);
-			} elseif (isset($this->pages[$page])) {
-				return $this->pages[$page];
-			}
-			return false;
+	/**
+	 * Returns an array of chars containing soft hyphens.
+	 * @param $word (array) array of chars
+	 * @param $patterns (array) Array of hypenation patterns.
+	 * @param $dictionary (array) Array of words to be returned without applying the hyphenation algoritm.
+	 * @param $leftmin (int) Minimum number of character to leave on the left of the word without applying the hyphens.
+	 * @param $rightmin (int) Minimum number of character to leave on the right of the word without applying the hyphens.
+	 * @param $charmin (int) Minimum word lenght to apply the hyphenation algoritm.
+	 * @param $charmax (int) Maximum lenght of broken piece of word.
+	 * @return array text with soft hyphens
+	 * @author Nicola Asuni
+	 * @since 4.9.012 (2010-04-12)
+	 * @protected
+	 */
+	protected function hyphenateWord($word, $patterns, $dictionary=array(), $leftmin=1, $rightmin=2, $charmin=1, $charmax=8) {
+		$hyphenword = array(); // hyphens positions
+		$numchars = count($word);
+		if ($numchars <= $charmin) {
+			return $word;
 		}
-
-		/**
-		 * Set image buffer content.
-		 * @param string $image image key
-		 * @param array $data image data
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected function setImageBuffer($image, $data) {
-			if ($this->diskcache) {
-				if (!isset($this->images[$image])) {
-					$this->images[$image] = $this->getObjFilename('image'.$image);
+		$word_string = $this->UTF8ArrSubString($word);
+		// some words will be returned as-is
+		$pattern = '/^([a-zA-Z0-9_\.\-]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/';
+		if (preg_match($pattern, $word_string) > 0) {
+			// email
+			return $word;
+		}
+		$pattern = '/(([a-zA-Z0-9\-]+\.)?)((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/';
+		if (preg_match($pattern, $word_string) > 0) {
+			// URL
+			return $word;
+		}
+		if (isset($dictionary[$word_string])) {
+			return $this->UTF8StringToArray($dictionary[$word_string]);
+		}
+		// suround word with '_' characters
+		$tmpword = array_merge(array(95), $word, array(95));
+		$tmpnumchars = $numchars + 2;
+		$maxpos = $tmpnumchars - $charmin;
+		for ($pos = 0; $pos < $maxpos; ++$pos) {
+			$imax = min(($tmpnumchars - $pos), $charmax);
+			for ($i = $charmin; $i <= $imax; ++$i) {
+				$subword = strtolower($this->UTF8ArrSubString($tmpword, $pos, $pos + $i));
+				if (isset($patterns[$subword])) {
+					$pattern = $this->UTF8StringToArray($patterns[$subword]);
+					$pattern_length = count($pattern);
+					$digits = 1;
+					for ($j = 0; $j < $pattern_length; ++$j) {
+						// check if $pattern[$j] is a number
+						if (($pattern[$j] >= 48) AND ($pattern[$j] <= 57)) {
+							if ($j == 0) {
+								$zero = $pos - 1;
+							} else {
+								$zero = $pos + $j - $digits;
+							}
+							if (!isset($hyphenword[$zero]) OR ($hyphenword[$zero] != $pattern[$j])) {
+								$hyphenword[$zero] = $this->unichr($pattern[$j]);
+							}
+							++$digits;
+						}
+					}
 				}
-				$this->writeDiskCache($this->images[$image], serialize($data));
-			} else {
-				$this->images[$image] = $data;
 			}
-			if (!in_array($image, $this->imagekeys)) {
-				$this->imagekeys[] = $image;
-				++$this->numimages;
+		}
+		$inserted = 0;
+		$maxpos = $numchars - $rightmin;
+		for($i = $leftmin; $i <= $maxpos; ++$i) {
+			if(isset($hyphenword[$i]) AND (($hyphenword[$i] % 2) != 0)) {
+				// 173 = soft hyphen character
+				array_splice($word, $i + $inserted, 0, 173);
+				++$inserted;
 			}
 		}
+		return $word;
+	}
 
-		/**
-		 * Set image buffer content for a specified sub-key.
-		 * @param string $image image key
-		 * @param string $key image sub-key
-		 * @param array $data image data
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected function setImageSubBuffer($image, $key, $data) {
-			if (!isset($this->images[$image])) {
-				$this->setImageBuffer($image, array());
-			}
-			if ($this->diskcache) {
-				$tmpimg = $this->getImageBuffer($image);
-				$tmpimg[$key] = $data;
-				$this->writeDiskCache($this->images[$image], serialize($tmpimg));
+	/**
+	 * Returns an array of hyphenation patterns.
+	 * @param $file (string) TEX file containing hypenation patterns. TEX pattrns can be downloaded from http://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
+	 * @return array of hyphenation patterns
+	 * @author Nicola Asuni
+	 * @since 4.9.012 (2010-04-12)
+	 * @public
+	 */
+	public function getHyphenPatternsFromTEX($file) {
+		// TEX patterns are available at:
+		// http://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
+		$data = file_get_contents($file);
+		$patterns = array();
+		// remove comments
+		$data = preg_replace('/\%[^\n]*/', '', $data);
+		// extract the patterns part
+		preg_match('/\\\\patterns\{([^\}]*)\}/i', $data, $matches);
+		$data = trim(substr($matches[0], 10, -1));
+		// extract each pattern
+		$patterns_array = preg_split('/[\s]+/', $data);
+		// create new language array of patterns
+		$patterns = array();
+		foreach($patterns_array as $val) {
+			if (!$this->empty_string($val)) {
+				$val = trim($val);
+				$val = str_replace('\'', '\\\'', $val);
+				$key = preg_replace('/[0-9]+/', '', $val);
+				$patterns[$key] = $val;
+			}
+		}
+		return $patterns;
+	}
+
+	/**
+	 * Returns text with soft hyphens.
+	 * @param $text (string) text to process
+	 * @param $patterns (mixed) Array of hypenation patterns or a TEX file containing hypenation patterns. TEX patterns can be downloaded from http://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
+	 * @param $dictionary (array) Array of words to be returned without applying the hyphenation algoritm.
+	 * @param $leftmin (int) Minimum number of character to leave on the left of the word without applying the hyphens.
+	 * @param $rightmin (int) Minimum number of character to leave on the right of the word without applying the hyphens.
+	 * @param $charmin (int) Minimum word lenght to apply the hyphenation algoritm.
+	 * @param $charmax (int) Maximum lenght of broken piece of word.
+	 * @return array text with soft hyphens
+	 * @author Nicola Asuni
+	 * @since 4.9.012 (2010-04-12)
+	 * @public
+	 */
+	public function hyphenateText($text, $patterns, $dictionary=array(), $leftmin=1, $rightmin=2, $charmin=1, $charmax=8) {
+		$text = $this->unhtmlentities($text);
+		$word = array(); // last word
+		$txtarr = array(); // text to be returned
+		$intag = false; // true if we are inside an HTML tag
+		if (!is_array($patterns)) {
+			$patterns = $this->getHyphenPatternsFromTEX($patterns);
+		}
+		// get array of characters
+		$unichars = $this->UTF8StringToArray($text);
+		// for each char
+		foreach ($unichars as $char) {
+			if ((!$intag) AND $this->unicode->uni_type[$char] == 'L') {
+				// letter character
+				$word[] = $char;
 			} else {
-				$this->images[$image][$key] = $data;
+				// other type of character
+				if (!$this->empty_string($word)) {
+					// hypenate the word
+					$txtarr = array_merge($txtarr, $this->hyphenateWord($word, $patterns, $dictionary, $leftmin, $rightmin, $charmin, $charmax));
+					$word = array();
+				}
+				$txtarr[] = $char;
+				if (chr($char) == '<') {
+					// we are inside an HTML tag
+					$intag = true;
+				} elseif ($intag AND (chr($char) == '>')) {
+					// end of HTML tag
+					$intag = false;
+				}
 			}
 		}
-
-		/**
-		 * Get image buffer content.
-		 * @param string $image image key
-		 * @return string image buffer content or false in case of error
-		 * @access protected
-		 * @since 4.5.000 (2008-12-31)
-		 */
-		protected function getImageBuffer($image) {
-			if ($this->diskcache AND isset($this->images[$image])) {
-				return unserialize($this->readDiskCache($this->images[$image]));
-			} elseif (isset($this->images[$image])) {
-				return $this->images[$image];
-			}
-			return false;
+		if (!$this->empty_string($word)) {
+			// hypenate the word
+			$txtarr = array_merge($txtarr, $this->hyphenateWord($word, $patterns, $dictionary, $leftmin, $rightmin, $charmin, $charmax));
 		}
+		// convert char array to string and return
+		return $this->UTF8ArrSubString($txtarr);
+	}
 
-		/**
-		 * Set font buffer content.
-		 * @param string $font font key
-		 * @param array $data font data
-		 * @access protected
-		 * @since 4.5.000 (2009-01-02)
-		 */
-		protected function setFontBuffer($font, $data) {
-			if ($this->diskcache) {
-				if (!isset($this->fonts[$font])) {
-					$this->fonts[$font] = $this->getObjFilename('font');
+	/**
+	 * Enable/disable rasterization of vector images using ImageMagick library.
+	 * @param $mode (boolean) if true enable rasterization, false otherwise.
+	 * @public
+	 * @since 5.0.000 (2010-04-27)
+	 */
+	public function setRasterizeVectorImages($mode) {
+		$this->rasterize_vector_images = $mode;
+	}
+
+	/**
+	 * Get the Path-Painting Operators.
+	 * @param $style (string) Style of rendering. Possible values are:
+	 * <ul>
+	 *   <li>S or D: Stroke the path.</li>
+	 *   <li>s or d: Close and stroke the path.</li>
+	 *   <li>f or F: Fill the path, using the nonzero winding number rule to determine the region to fill.</li>
+	 *   <li>f* or F*: Fill the path, using the even-odd rule to determine the region to fill.</li>
+	 *   <li>B or FD or DF: Fill and then stroke the path, using the nonzero winding number rule to determine the region to fill.</li>
+	 *   <li>B* or F*D or DF*: Fill and then stroke the path, using the even-odd rule to determine the region to fill.</li>
+	 *   <li>b or fd or df: Close, fill, and then stroke the path, using the nonzero winding number rule to determine the region to fill.</li>
+	 *   <li>b or f*d or df*: Close, fill, and then stroke the path, using the even-odd rule to determine the region to fill.</li>
+	 *   <li>CNZ: Clipping mode using the even-odd rule to determine which regions lie inside the clipping path.</li>
+	 *   <li>CEO: Clipping mode using the nonzero winding number rule to determine which regions lie inside the clipping path</li>
+	 *   <li>n: End the path object without filling or stroking it.</li>
+	 * </ul>
+	 * @param $default (string) default style
+	 * @author Nicola Asuni
+	 * @since 5.0.000 (2010-04-30)
+	 * @protected
+	 */
+	protected function getPathPaintOperator($style, $default='S') {
+		$op = '';
+		switch($style) {
+			case 'S':
+			case 'D': {
+				$op = 'S';
+				break;
+			}
+			case 's':
+			case 'd': {
+				$op = 's';
+				break;
+			}
+			case 'f':
+			case 'F': {
+				$op = 'f';
+				break;
+			}
+			case 'f*':
+			case 'F*': {
+				$op = 'f*';
+				break;
+			}
+			case 'B':
+			case 'FD':
+			case 'DF': {
+				$op = 'B';
+				break;
+			}
+			case 'B*':
+			case 'F*D':
+			case 'DF*': {
+				$op = 'B*';
+				break;
+			}
+			case 'b':
+			case 'fd':
+			case 'df': {
+				$op = 'b';
+				break;
+			}
+			case 'b*':
+			case 'f*d':
+			case 'df*': {
+				$op = 'b*';
+				break;
+			}
+			case 'CNZ': {
+				$op = 'W n';
+				break;
+			}
+			case 'CEO': {
+				$op = 'W* n';
+				break;
+			}
+			case 'n': {
+				$op = 'n';
+				break;
+			}
+			default: {
+				if (!empty($default)) {
+					$op = $this->getPathPaintOperator($default, '');
+				} else {
+					$op = '';
 				}
-				$this->writeDiskCache($this->fonts[$font], serialize($data));
-			} else {
-				$this->fonts[$font] = $data;
-			}
-			if (!in_array($font, $this->fontkeys)) {
-				$this->fontkeys[] = $font;
 			}
 		}
+		return $op;
+	}
 
-		/**
-		 * Set font buffer content.
-		 * @param string $font font key
-		 * @param string $key font sub-key
-		 * @param array $data font data
-		 * @access protected
-		 * @since 4.5.000 (2009-01-02)
-		 */
-		protected function setFontSubBuffer($font, $key, $data) {
-			if (!isset($this->fonts[$font])) {
-				$this->setFontBuffer($font, array());
-			}
-			if ($this->diskcache) {
-				$tmpfont = $this->getFontBuffer($font);
-				$tmpfont[$key] = $data;
-				$this->writeDiskCache($this->fonts[$font], serialize($tmpfont));
-			} else {
-				$this->fonts[$font][$key] = $data;
+	/**
+	 * Enable or disable default option for font subsetting.
+	 * @param $enable (boolean) if true enable font subsetting by default.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.3.002 (2010-06-07)
+	 */
+	public function setFontSubsetting($enable=true) {
+		$this->font_subsetting = $enable ? true : false;
+	}
+
+	/**
+	 * Return the default option for font subsetting.
+	 * @return boolean default font subsetting state.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.3.002 (2010-06-07)
+	 */
+	public function getFontSubsetting() {
+		return $this->font_subsetting;
+	}
+
+	/**
+	 * Left trim the input string
+	 * @param $str (string) string to trim
+	 * @param $replace (string) string that replace spaces.
+	 * @return left trimmed string
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.8.000 (2010-08-11)
+	 */
+	public function stringLeftTrim($str, $replace='') {
+		return preg_replace('/^'.$this->re_space['p'].'+/'.$this->re_space['m'], $replace, $str);
+	}
+
+	/**
+	 * Right trim the input string
+	 * @param $str (string) string to trim
+	 * @param $replace (string) string that replace spaces.
+	 * @return right trimmed string
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.8.000 (2010-08-11)
+	 */
+	public function stringRightTrim($str, $replace='') {
+		return preg_replace('/'.$this->re_space['p'].'+$/'.$this->re_space['m'], $replace, $str);
+	}
+
+	/**
+	 * Trim the input string
+	 * @param $str (string) string to trim
+	 * @param $replace (string) string that replace spaces.
+	 * @return trimmed string
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.8.000 (2010-08-11)
+	 */
+	public function stringTrim($str, $replace='') {
+		$str = $this->stringLeftTrim($str, $replace);
+		$str = $this->stringRightTrim($str, $replace);
+		return $str;
+	}
+
+	/**
+	 * Return true if the current font is unicode type.
+	 * @return true for unicode font, false otherwise.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.8.002 (2010-08-14)
+	 */
+	public function isUnicodeFont() {
+		return (($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0'));
+	}
+
+	/**
+	 * Return normalized font name
+	 * @param $fontfamily (string) property string containing font family names
+	 * @return string normalized font name
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.8.004 (2010-08-17)
+	 */
+	public function getFontFamilyName($fontfamily) {
+		// remove spaces and symbols
+		$fontfamily = preg_replace('/[^a-z0-9\,]/', '', strtolower($fontfamily));
+		// extract all font names
+		$fontslist = preg_split('/[,]/', $fontfamily);
+		// find first valid font name
+		foreach ($fontslist as $font) {
+			// replace font variations
+			$font = preg_replace('/italic$/', 'I', $font);
+			$font = preg_replace('/oblique$/', 'I', $font);
+			$font = preg_replace('/bold([I]?)$/', 'B\\1', $font);
+			// replace common family names and core fonts
+			$pattern = array();
+			$replacement = array();
+			$pattern[] = '/^serif|^cursive|^fantasy|^timesnewroman/';
+			$replacement[] = 'times';
+			$pattern[] = '/^sansserif/';
+			$replacement[] = 'helvetica';
+			$pattern[] = '/^monospace/';
+			$replacement[] = 'courier';
+			$font = preg_replace($pattern, $replacement, $font);
+			if (in_array(strtolower($font), $this->fontlist) OR in_array($font, $this->fontkeys)) {
+				return $font;
 			}
 		}
+		// return current font as default
+		return $this->CurrentFont['fontkey'];
+	}
 
-		/**
-		 * Get font buffer content.
-		 * @param string $font font key
-		 * @return string font buffer content or false in case of error
-		 * @access protected
-		 * @since 4.5.000 (2009-01-02)
-		 */
-		protected function getFontBuffer($font) {
-			if ($this->diskcache AND isset($this->fonts[$font])) {
-				return unserialize($this->readDiskCache($this->fonts[$font]));
-			} elseif (isset($this->fonts[$font])) {
-				return $this->fonts[$font];
-			}
+	/**
+	 * Start a new XObject Template.
+	 * An XObject Template is a PDF block that is a self-contained description of any sequence of graphics objects (including path objects, text objects, and sampled images).
+	 * An XObject Template may be painted multiple times, either on several pages or at several locations on the same page and produces the same results each time, subject only to the graphics state at the time it is invoked.
+	 * Note: X,Y coordinates will be reset to 0,0.
+	 * @param $w (int) Template width in user units (empty string or zero = page width less margins)
+	 * @param $h (int) Template height in user units (empty string or zero = page height less margins)
+	 * @return int the XObject Template ID in case of success or false in case of error.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.8.017 (2010-08-24)
+	 * @see endTemplate(), printTemplate()
+	 */
+	public function startTemplate($w=0, $h=0) {
+		if ($this->inxobj) {
+			// we are already inside an XObject template
 			return false;
 		}
+		$this->inxobj = true;
+		++$this->n;
+		// XObject ID
+		$this->xobjid = 'XT'.$this->n;
+		// object ID
+		$this->xobjects[$this->xobjid] = array('n' => $this->n);
+		// store current graphic state
+		$this->xobjects[$this->xobjid]['gvars'] = $this->getGraphicVars();
+		// initialize data
+		$this->xobjects[$this->xobjid]['intmrk'] = 0;
+		$this->xobjects[$this->xobjid]['transfmrk'] = array();
+		$this->xobjects[$this->xobjid]['outdata'] = '';
+		$this->xobjects[$this->xobjid]['xobjects'] = array();
+		$this->xobjects[$this->xobjid]['images'] = array();
+		$this->xobjects[$this->xobjid]['fonts'] = array();
+		$this->xobjects[$this->xobjid]['annotations'] = array();
+		// set new environment
+		$this->num_columns = 1;
+		$this->current_column = 0;
+		$this->SetAutoPageBreak(false);
+		if (($w === '') OR ($w <= 0)) {
+			$w = $this->w - $this->lMargin - $this->rMargin;
+		}
+		if (($h === '') OR ($h <= 0)) {
+			$h = $this->h - $this->tMargin - $this->bMargin;
+		}
+		$this->xobjects[$this->xobjid]['x'] = 0;
+		$this->xobjects[$this->xobjid]['y'] = 0;
+		$this->xobjects[$this->xobjid]['w'] = $w;
+		$this->xobjects[$this->xobjid]['h'] = $h;
+		$this->w = $w;
+		$this->h = $h;
+		$this->wPt = $this->w * $this->k;
+		$this->hPt = $this->h * $this->k;
+		$this->fwPt = $this->wPt;
+		$this->fhPt = $this->hPt;
+		$this->x = 0;
+		$this->y = 0;
+		$this->lMargin = 0;
+		$this->rMargin = 0;
+		$this->tMargin = 0;
+		$this->bMargin = 0;
+		return $this->xobjid;
+	}
 
-		/**
-		 * Move a page to a previous position.
-		 * @param int $frompage number of the source page
-		 * @param int $topage number of the destination page (must be less than $frompage)
-		 * @return true in case of success, false in case of error.
-		 * @access public
-		 * @since 4.5.000 (2009-01-02)
-		 */
-		public function movePage($frompage, $topage) {
-			if (($frompage > $this->numpages) OR ($frompage <= $topage)) {
-				return false;
-			}
-			if ($frompage == $this->page) {
-				// close the page before moving it
-				$this->endPage();
-			}
-			// move all page-related states
-			$tmppage = $this->pages[$frompage];
-			$tmppagedim = $this->pagedim[$frompage];
-			$tmppagelen = $this->pagelen[$frompage];
-			$tmpintmrk = $this->intmrk[$frompage];
-			if (isset($this->footerpos[$frompage])) {
-				$tmpfooterpos = $this->footerpos[$frompage];
-			}
-			if (isset($this->footerlen[$frompage])) {
-				$tmpfooterlen = $this->footerlen[$frompage];
-			}
-			if (isset($this->transfmrk[$frompage])) {
-				$tmptransfmrk = $this->transfmrk[$frompage];
-			}
-			if (isset($this->PageAnnots[$frompage])) {
-				$tmpannots = $this->PageAnnots[$frompage];
-			}
-			if (isset($this->newpagegroup[$frompage])) {
-				$tmpnewpagegroup = $this->newpagegroup[$frompage];
-			}
-			for ($i = $frompage; $i > $topage; --$i) {
-				$j = $i - 1;
-				// shift pages down
-				$this->pages[$i] = $this->pages[$j];
-				$this->pagedim[$i] = $this->pagedim[$j];
-				$this->pagelen[$i] = $this->pagelen[$j];
-				$this->intmrk[$i] = $this->intmrk[$j];
-				if (isset($this->footerpos[$j])) {
-					$this->footerpos[$i] = $this->footerpos[$j];
-				} elseif (isset($this->footerpos[$i])) {
-					unset($this->footerpos[$i]);
-				}
-				if (isset($this->footerlen[$j])) {
-					$this->footerlen[$i] = $this->footerlen[$j];
-				} elseif (isset($this->footerlen[$i])) {
-					unset($this->footerlen[$i]);
-				}
-				if (isset($this->transfmrk[$j])) {
-					$this->transfmrk[$i] = $this->transfmrk[$j];
-				} elseif (isset($this->transfmrk[$i])) {
-					unset($this->transfmrk[$i]);
-				}
-				if (isset($this->PageAnnots[$j])) {
-					$this->PageAnnots[$i] = $this->PageAnnots[$j];
-				} elseif (isset($this->PageAnnots[$i])) {
-					unset($this->PageAnnots[$i]);
-				}
-				if (isset($this->newpagegroup[$j])) {
-					$this->newpagegroup[$i] = $this->newpagegroup[$j];
-				} elseif (isset($this->newpagegroup[$i])) {
-					unset($this->newpagegroup[$i]);
-				}
-			}
-			$this->pages[$topage] = $tmppage;
-			$this->pagedim[$topage] = $tmppagedim;
-			$this->pagelen[$topage] = $tmppagelen;
-			$this->intmrk[$topage] = $tmpintmrk;
-			if (isset($tmpfooterpos)) {
-				$this->footerpos[$topage] = $tmpfooterpos;
-			} elseif (isset($this->footerpos[$topage])) {
-				unset($this->footerpos[$topage]);
-			}
-			if (isset($tmpfooterlen)) {
-				$this->footerlen[$topage] = $tmpfooterlen;
-			} elseif (isset($this->footerlen[$topage])) {
-				unset($this->footerlen[$topage]);
-			}
-			if (isset($tmptransfmrk)) {
-				$this->transfmrk[$topage] = $tmptransfmrk;
-			} elseif (isset($this->transfmrk[$topage])) {
-				unset($this->transfmrk[$topage]);
-			}
-			if (isset($tmpannots)) {
-				$this->PageAnnots[$topage] = $tmpannots;
-			} elseif (isset($this->PageAnnots[$topage])) {
-				unset($this->PageAnnots[$topage]);
-			}
-			if (isset($tmpnewpagegroup)) {
-				$this->newpagegroup[$topage] = $tmpnewpagegroup;
-			} elseif (isset($this->newpagegroup[$topage])) {
-				unset($this->newpagegroup[$topage]);
-			}
-			// adjust outlines
-			$tmpoutlines = $this->outlines;
-			foreach ($tmpoutlines as $key => $outline) {
-				if (($outline['p'] >= $topage) AND ($outline['p'] < $frompage)) {
-					$this->outlines[$key]['p'] = $outline['p'] + 1;
-				} elseif ($outline['p'] == $frompage) {
-					$this->outlines[$key]['p'] = $topage;
-				}
-			}
-			// adjust links
-			$tmplinks = $this->links;
-			foreach ($tmplinks as $key => $link) {
-				if (($link[0] >= $topage) AND ($link[0] < $frompage)) {
-					$this->links[$key][0] = $link[0] + 1;
-				} elseif ($link[0] == $frompage) {
-					$this->links[$key][0] = $topage;
-				}
-			}
-			// adjust javascript
-			$tmpjavascript = $this->javascript;
-			global $jfrompage, $jtopage;
-			$jfrompage = $frompage;
-			$jtopage = $topage;
-			$this->javascript = preg_replace_callback('/this\.addField\(\'([^\']*)\',\'([^\']*)\',([0-9]+)/',
-				create_function('$matches', 'global $jfrompage, $jtopage;
-				$pagenum = intval($matches[3]) + 1;
-				if (($pagenum >= $jtopage) AND ($pagenum < $jfrompage)) {
-					$newpage = ($pagenum + 1);
-				} elseif ($pagenum == $jfrompage) {
-					$newpage = $jtopage;
-				} else {
-					$newpage = $pagenum;
-				}
-				--$newpage;
-				return "this.addField(\'".$matches[1]."\',\'".$matches[2]."\',".$newpage."";'), $tmpjavascript);
-			// return to last page
-			$this->lastPage(true);
-			return true;
+	/**
+	 * End the current XObject Template started with startTemplate() and restore the previous graphic state.
+	 * An XObject Template is a PDF block that is a self-contained description of any sequence of graphics objects (including path objects, text objects, and sampled images).
+	 * An XObject Template may be painted multiple times, either on several pages or at several locations on the same page and produces the same results each time, subject only to the graphics state at the time it is invoked.
+	 * @return int the XObject Template ID in case of success or false in case of error.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.8.017 (2010-08-24)
+	 * @see startTemplate(), printTemplate()
+	 */
+	public function endTemplate() {
+		if (!$this->inxobj) {
+			// we are not inside a template
+			return false;
 		}
+		$this->inxobj = false;
+		// restore previous graphic state
+		$this->setGraphicVars($this->xobjects[$this->xobjid]['gvars'], true);
+		return $this->xobjid;
+	}
 
-		/**
-		 * Remove the specified page.
-		 * @param int $page page to remove
-		 * @return true in case of success, false in case of error.
-		 * @access public
-		 * @since 4.6.004 (2009-04-23)
-		 */
-		public function deletePage($page) {
-			if ($page > $this->numpages) {
-				return false;
-			}
-			// delete current page
-			unset($this->pages[$page]);
-			unset($this->pagedim[$page]);
-			unset($this->pagelen[$page]);
-			unset($this->intmrk[$page]);
-			if (isset($this->footerpos[$page])) {
-				unset($this->footerpos[$page]);
+	/**
+	 * Print an XObject Template.
+	 * You can print an XObject Template inside the currently opened Template.
+	 * An XObject Template is a PDF block that is a self-contained description of any sequence of graphics objects (including path objects, text objects, and sampled images).
+	 * An XObject Template may be painted multiple times, either on several pages or at several locations on the same page and produces the same results each time, subject only to the graphics state at the time it is invoked.
+	 * @param $id (string) The ID of XObject Template to print.
+	 * @param $x (int) X position in user units (empty string = current x position)
+	 * @param $y (int) Y position in user units (empty string = current y position)
+	 * @param $w (int) Width in user units (zero = remaining page width)
+	 * @param $h (int) Height in user units (zero = remaining page height)
+	 * @param $align (string) Indicates the alignment of the pointer next to template insertion relative to template height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul>
+	 * @param $palign (string) Allows to center or align the template on the current line. Possible values are:<ul><li>L : left align</li><li>C : center</li><li>R : right align</li><li>'' : empty string : left for LTR or right for RTL</li></ul>
+	 * @param $fitonpage (boolean) if true the template is resized to not exceed page dimensions.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.8.017 (2010-08-24)
+	 * @see startTemplate(), endTemplate()
+	 */
+	public function printTemplate($id, $x='', $y='', $w=0, $h=0, $align='', $palign='', $fitonpage=false) {
+		if (!isset($this->xobjects[$id])) {
+			$this->Error('The XObject Template \''.$id.'\' doesn\'t exist!');
+		}
+		if ($this->inxobj) {
+			if ($id == $this->xobjid) {
+				// close current template
+				$this->endTemplate();
+			} else {
+				// use the template as resource for the template currently opened
+				$this->xobjects[$this->xobjid]['xobjects'][$id] = $this->xobjects[$id];
 			}
-			if (isset($this->footerlen[$page])) {
-				unset($this->footerlen[$page]);
+		}
+		// set default values
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($h, $x, $y);
+		$ow = $this->xobjects[$id]['w'];
+		$oh = $this->xobjects[$id]['h'];
+		// calculate template width and height on document
+		if (($w <= 0) AND ($h <= 0)) {
+			$w = $ow;
+			$h = $oh;
+		} elseif ($w <= 0) {
+			$w = $h * $ow / $oh;
+		} elseif ($h <= 0) {
+			$h = $w * $oh / $ow;
+		}
+		// fit the template on available space
+		$this->fitBlock($w, $h, $x, $y, $fitonpage);
+		// set page alignment
+		$rb_y = $y + $h;
+		// set alignment
+		if ($this->rtl) {
+			if ($palign == 'L') {
+				$xt = $this->lMargin;
+			} elseif ($palign == 'C') {
+				$xt = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
+			} elseif ($palign == 'R') {
+				$xt = $this->w - $this->rMargin - $w;
+			} else {
+				$xt = $x - $w;
+			}
+			$rb_x = $xt;
+		} else {
+			if ($palign == 'L') {
+				$xt = $this->lMargin;
+			} elseif ($palign == 'C') {
+				$xt = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
+			} elseif ($palign == 'R') {
+				$xt = $this->w - $this->rMargin - $w;
+			} else {
+				$xt = $x;
+			}
+			$rb_x = $xt + $w;
+		}
+		// print XObject Template + Transformation matrix
+		$this->StartTransform();
+		// translate and scale
+		$sx = ($w / $this->xobjects[$id]['w']);
+		$sy = ($h / $this->xobjects[$id]['h']);
+		$tm = array();
+		$tm[0] = $sx;
+		$tm[1] = 0;
+		$tm[2] = 0;
+		$tm[3] = $sy;
+		$tm[4] = $xt * $this->k;
+		$tm[5] = ($this->h - $h - $y) * $this->k;
+		$this->Transform($tm);
+		// set object
+		$this->_out('/'.$id.' Do');
+		$this->StopTransform();
+		// add annotations
+		if (!empty($this->xobjects[$id]['annotations'])) {
+			foreach ($this->xobjects[$id]['annotations'] as $annot) {
+				// transform original coordinates
+				$coordlt = $this->getTransformationMatrixProduct($tm, array(1, 0, 0, 1, ($annot['x'] * $this->k), (-$annot['y'] * $this->k)));
+				$ax = ($coordlt[4] / $this->k);
+				$ay = ($this->h - $h - ($coordlt[5] / $this->k));
+				$coordrb = $this->getTransformationMatrixProduct($tm, array(1, 0, 0, 1, (($annot['x'] + $annot['w']) * $this->k), ((-$annot['y'] - $annot['h']) * $this->k)));
+				$aw = ($coordrb[4] / $this->k) - $ax;
+				$ah = ($this->h - $h - ($coordrb[5] / $this->k)) - $ay;
+				$this->Annotation($ax, $ay, $aw, $ah, $annot['text'], $annot['opt'], $annot['spaces']);
+			}
+		}
+		// set pointer to align the next text/objects
+		switch($align) {
+			case 'T': {
+				$this->y = $y;
+				$this->x = $rb_x;
+				break;
 			}
-			if (isset($this->transfmrk[$page])) {
-				unset($this->transfmrk[$page]);
+			case 'M': {
+				$this->y = $y + round($h/2);
+				$this->x = $rb_x;
+				break;
 			}
-			if (isset($this->PageAnnots[$page])) {
-				unset($this->PageAnnots[$page]);
+			case 'B': {
+				$this->y = $rb_y;
+				$this->x = $rb_x;
+				break;
 			}
-			if (isset($this->newpagegroup[$page])) {
-				unset($this->newpagegroup[$page]);
+			case 'N': {
+				$this->SetY($rb_y);
+				break;
 			}
-			if (isset($this->pageopen[$page])) {
-				unset($this->pageopen[$page]);
+			default:{
+				break;
 			}
-			// update remaining pages
-			for ($i = $page; $i < $this->numpages; ++$i) {
-				$j = $i + 1;
-				// shift pages
-				$this->pages[$i] = $this->pages[$j];
-				$this->pagedim[$i] = $this->pagedim[$j];
-				$this->pagelen[$i] = $this->pagelen[$j];
-				$this->intmrk[$i] = $this->intmrk[$j];
-				if (isset($this->footerpos[$j])) {
-					$this->footerpos[$i] = $this->footerpos[$j];
-				} elseif (isset($this->footerpos[$i])) {
-					unset($this->footerpos[$i]);
-				}
-				if (isset($this->footerlen[$j])) {
-					$this->footerlen[$i] = $this->footerlen[$j];
-				} elseif (isset($this->footerlen[$i])) {
-					unset($this->footerlen[$i]);
-				}
-				if (isset($this->transfmrk[$j])) {
-					$this->transfmrk[$i] = $this->transfmrk[$j];
-				} elseif (isset($this->transfmrk[$i])) {
-					unset($this->transfmrk[$i]);
-				}
-				if (isset($this->PageAnnots[$j])) {
-					$this->PageAnnots[$i] = $this->PageAnnots[$j];
-				} elseif (isset($this->PageAnnots[$i])) {
-					unset($this->PageAnnots[$i]);
-				}
-				if (isset($this->newpagegroup[$j])) {
-					$this->newpagegroup[$i] = $this->newpagegroup[$j];
-				} elseif (isset($this->newpagegroup[$i])) {
-					unset($this->newpagegroup[$i]);
-				}
-				if (isset($this->pageopen[$j])) {
-					$this->pageopen[$i] = $this->pageopen[$j];
-				} elseif (isset($this->pageopen[$i])) {
-					unset($this->pageopen[$i]);
-				}
-			}
-			// remove last page
-			unset($this->pages[$this->numpages]);
-			unset($this->pagedim[$this->numpages]);
-			unset($this->pagelen[$this->numpages]);
-			unset($this->intmrk[$this->numpages]);
-			if (isset($this->footerpos[$this->numpages])) {
-				unset($this->footerpos[$this->numpages]);
-			}
-			if (isset($this->footerlen[$this->numpages])) {
-				unset($this->footerlen[$this->numpages]);
-			}
-			if (isset($this->transfmrk[$this->numpages])) {
-				unset($this->transfmrk[$this->numpages]);
-			}
-			if (isset($this->PageAnnots[$this->numpages])) {
-				unset($this->PageAnnots[$this->numpages]);
-			}
-			if (isset($this->newpagegroup[$this->numpages])) {
-				unset($this->newpagegroup[$this->numpages]);
-			}
-			if (isset($this->pageopen[$this->numpages])) {
-				unset($this->pageopen[$this->numpages]);
-			}
-			--$this->numpages;
-			$this->page = $this->numpages;
-			// adjust outlines
-			$tmpoutlines = $this->outlines;
-			foreach ($tmpoutlines as $key => $outline) {
-				if ($outline['p'] > $page) {
-					$this->outlines[$key]['p'] = $outline['p'] - 1;
-				} elseif ($outline['p'] == $page) {
-					unset($this->outlines[$key]);
-				}
-			}
-			// adjust links
-			$tmplinks = $this->links;
-			foreach ($tmplinks as $key => $link) {
-				if ($link[0] > $page) {
-					$this->links[$key][0] = $link[0] - 1;
-				} elseif ($link[0] == $page) {
-					unset($this->links[$key]);
-				}
-			}
-			// adjust javascript
-			$tmpjavascript = $this->javascript;
-			global $jpage;
-			$jpage = $page;
-			$this->javascript = preg_replace_callback('/this\.addField\(\'([^\']*)\',\'([^\']*)\',([0-9]+)/',
-				create_function('$matches', 'global $jpage;
-				$pagenum = intval($matches[3]) + 1;
-				if ($pagenum >= $jpage) {
-					$newpage = ($pagenum - 1);
-				} elseif ($pagenum == $jpage) {
-					$newpage = 1;
-				} else {
-					$newpage = $pagenum;
-				}
-				--$newpage;
-				return "this.addField(\'".$matches[1]."\',\'".$matches[2]."\',".$newpage."";'), $tmpjavascript);
-			// return to last page
-			$this->lastPage(true);
-			return true;
 		}
+	}
 
-		/**
-		 * Clone the specified page to a new page.
-		 * @param int $page number of page to copy (0 = current page)
-		 * @return true in case of success, false in case of error.
-		 * @access public
-		 * @since 4.9.015 (2010-04-20)
-		 */
-		public function copyPage($page=0) {
-			if ($page == 0) {
-				// default value
-				$page = $this->page;
-			}
-			if ($page > $this->numpages) {
-				return false;
-			}
-			if ($page == $this->page) {
-				// close the page before cloning it
-				$this->endPage();
-			}
-			// copy all page-related states
-			++$this->numpages;
-			$this->page = $this->numpages;
-			$this->pages[$this->page] = $this->pages[$page];
-			$this->pagedim[$this->page] = $this->pagedim[$page];
-			$this->pagelen[$this->page] = $this->pagelen[$page];
-			$this->intmrk[$this->page] = $this->intmrk[$page];
-			$this->pageopen[$this->page] = false;
-			if (isset($this->footerpos[$page])) {
-				$this->footerpos[$this->page] = $this->footerpos[$page];
-			}
-			if (isset($this->footerlen[$page])) {
-				$this->footerlen[$this->page] = $this->footerlen[$page];
-			}
-			if (isset($this->transfmrk[$page])) {
-				$this->transfmrk[$this->page] = $this->transfmrk[$page];
-			}
-			if (isset($this->PageAnnots[$page])) {
-				$this->PageAnnots[$this->page] = $this->PageAnnots[$page];
-			}
-			if (isset($this->newpagegroup[$page])) {
-				$this->newpagegroup[$this->page] = $this->newpagegroup[$page];
-			}
-			// copy outlines
-			$tmpoutlines = $this->outlines;
-			foreach ($tmpoutlines as $key => $outline) {
-				if ($outline['p'] == $page) {
-					$this->outlines[] = array('t' => $outline['t'], 'l' => $outline['l'], 'y' => $outline['y'], 'p' => $this->page);
-				}
-			}
-			// copy links
-			$tmplinks = $this->links;
-			foreach ($tmplinks as $key => $link) {
-				if ($link[0] == $page) {
-					$this->links[] = array($this->page, $link[1]);
-				}
-			}
-			// return to last page
-			$this->lastPage(true);
-			return true;
+	/**
+	 * Set the percentage of character stretching.
+	 * @param $perc (int) percentage of stretching (100 = no stretching)
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.9.000 (2010-09-29)
+	 */
+	public function setFontStretching($perc=100) {
+		$this->font_stretching = $perc;
+	}
+
+	/**
+	 * Get the percentage of character stretching.
+	 * @return float stretching value
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.9.000 (2010-09-29)
+	 */
+	public function getFontStretching() {
+		return $this->font_stretching;
+	}
+
+	/**
+	 * Set the amount to increase or decrease the space between characters in a text.
+	 * @param $spacing (float) amount to increase or decrease the space between characters in a text (0 = default spacing)
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.9.000 (2010-09-29)
+	 */
+	public function setFontSpacing($spacing=0) {
+		$this->font_spacing = $spacing;
+	}
+
+	/**
+	 * Get the amount to increase or decrease the space between characters in a text.
+	 * @return int font spacing (tracking/kerning) value
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.9.000 (2010-09-29)
+	 */
+	public function getFontSpacing() {
+		return $this->font_spacing;
+	}
+
+	/**
+	 * Return an array of no-write page regions
+	 * @return array of no-write page regions
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.9.003 (2010-10-13)
+	 * @see setPageRegions(), addPageRegion()
+	 */
+	public function getPageRegions() {
+		return $this->page_regions;
+	}
+
+	/**
+	 * Set no-write regions on page.
+	 * A no-write region is a portion of the page with a rectangular or trapezium shape that will not be covered when writing text or html code.
+	 * A region is always aligned on the left or right side of the page ad is defined using a vertical segment.
+	 * You can set multiple regions for the same page.
+	 * @param $regions (array) array of no-write regions. For each region you can define an array as follow: ('page' => page number or empy for current page, 'xt' => X top, 'yt' => Y top, 'xb' => X bottom, 'yb' => Y bottom, 'side' => page side 'L' = left or 'R' = right). Omit this parameter to remove all regions.
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.9.003 (2010-10-13)
+	 * @see addPageRegion(), getPageRegions()
+	 */
+	public function setPageRegions($regions=array()) {
+		// empty current regions array
+		$this->page_regions = array();
+		// add regions
+		foreach ($regions as $data) {
+			$this->addPageRegion($data);
 		}
+	}
 
-		/**
-		 * Output a Table of Content Index (TOC).
-		 * Before calling this method you have to open the page using the addTOCPage() method.
-		 * After calling this method you have to call endTOCPage() to close the TOC page.
-		 * You can override this method to achieve different styles.
-		 * @param int $page page number where this TOC should be inserted (leave empty for current page).
-		 * @param string $numbersfont set the font for page numbers (please use monospaced font for better alignment).
-		 * @param string $filler string used to fill the space between text and page number.
-		 * @param string $toc_name name to use for TOC bookmark.
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 4.5.000 (2009-01-02)
-		 * @see addTOCPage(), endTOCPage(), addHTMLTOC()
-		 */
-		public function addTOC($page='', $numbersfont='', $filler='.', $toc_name='TOC') {
-			$fontsize = $this->FontSizePt;
-			$fontfamily = $this->FontFamily;
-			$fontstyle = $this->FontStyle;
-			$w = $this->w - $this->lMargin - $this->rMargin;
-			$spacer = $this->GetStringWidth(chr(32)) * 4;
-			$page_first = $this->getPage();
-			$lmargin = $this->lMargin;
-			$rmargin = $this->rMargin;
-			$x_start = $this->GetX();
-			if ($this->empty_string($numbersfont)) {
-				$numbersfont = $this->default_monospaced_font;
-			}
-			if ($this->empty_string($filler)) {
-				$filler = ' ';
-			}
-			if ($this->empty_string($page)) {
-				$gap = ' ';
-			} else {
-				$gap = '';
-			}
-			foreach ($this->outlines as $key => $outline) {
-				if ($this->rtl) {
-					$aligntext = 'R';
-					$alignnum = 'L';
-				} else {
-					$aligntext = 'L';
-					$alignnum = 'R';
-				}
-				if ($outline['l'] == 0) {
-					$this->SetFont($fontfamily, $fontstyle.'B', $fontsize);
-				} else {
-					$this->SetFont($fontfamily, $fontstyle, $fontsize - $outline['l']);
-				}
-				$indent = ($spacer * $outline['l']);
-				if ($this->rtl) {
-					$this->rMargin += $indent;
-					$this->x -= $indent;
-				} else {
-					$this->lMargin += $indent;
-					$this->x += $indent;
-				}
-				$link = $this->AddLink();
-				$this->SetLink($link, 0, $outline['p']);
-				// write the text
-				$this->Write(0, $outline['t'], $link, 0, $aligntext, false, 0, false, false, 0);
-				$this->SetFont($numbersfont, $fontstyle, $fontsize);
-				if ($this->empty_string($page)) {
-					$pagenum = $outline['p'];
-				} else {
-					// placemark to be replaced with the correct number
-					$pagenum = '{#'.($outline['p']).'}';
-					if (($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) {
-						$pagenum = '{'.$pagenum.'}';
-					}
-				}
-				$numwidth = $this->GetStringWidth($pagenum);
-				if ($this->rtl) {
-					$tw = $this->x - $this->lMargin;
-				} else {
-					$tw = $this->w - $this->rMargin - $this->x;
-				}
-				$fw = $tw - $numwidth - $this->GetStringWidth(chr(32));
-				$numfills = floor($fw / $this->GetStringWidth($filler));
-				if ($numfills > 0) {
-					$rowfill = str_repeat($filler, $numfills);
-				} else {
-					$rowfill = '';
-				}
-				if ($this->rtl) {
-					$pagenum = $pagenum.$gap.$rowfill.' ';
-				} else {
-					$pagenum = ' '.$rowfill.$gap.$pagenum;
-				}
-				// write the number
-				$this->Cell($tw, 0, $pagenum, 0, 1, $alignnum, 0, $link, 0);
-				$this->SetX($x_start);
-				$this->lMargin = $lmargin;
-				$this->rMargin = $rmargin;
-			}
-			$page_last = $this->getPage();
-			$numpages = $page_last - $page_first + 1;
-			if (!$this->empty_string($page)) {
-				for ($p = $page_first; $p <= $page_last; ++$p) {
-					// get page data
-					$temppage = $this->getPageBuffer($p);
-					for ($n = 1; $n <= $this->numpages; ++$n) {
-						// update page numbers
-						$k = '{#'.$n.'}';
-						$ku = '{'.$k.'}';
-						$alias_a = $this->_escape($k);
-						$alias_au = $this->_escape('{'.$k.'}');
-						if ($this->isunicode) {
-							$alias_b = $this->_escape($this->UTF8ToLatin1($k));
-							$alias_bu = $this->_escape($this->UTF8ToLatin1($ku));
-							$alias_c = $this->_escape($this->utf8StrRev($k, false, $this->tmprtl));
-							$alias_cu = $this->_escape($this->utf8StrRev($ku, false, $this->tmprtl));
-						}
-						if ($n >= $page) {
-							$np = $n + $numpages;
-						} else {
-							$np = $n;
-						}
-						$ns = $this->formatTOCPageNumber($np);
-						$nu = $ns;
-						$sdiff = strlen($k) - strlen($ns) - 1;
-						$sdiffu = strlen($ku) - strlen($ns) - 1;
-						$sfill = str_repeat($filler, $sdiff);
-						$sfillu = str_repeat($filler, $sdiffu);
-						if ($this->rtl) {
-							$ns = $ns.' '.$sfill;
-							$nu = $nu.' '.$sfillu;
-						} else {
-							$ns = $sfill.' '.$ns;
-							$nu = $sfillu.' '.$nu;
-						}
-						$nu = $this->UTF8ToUTF16BE($nu, false);
-						$temppage = str_replace($alias_au, $nu, $temppage);
-						if ($this->isunicode) {
-							$temppage = str_replace($alias_bu, $nu, $temppage);
-							$temppage = str_replace($alias_cu, $nu, $temppage);
-							$temppage = str_replace($alias_b, $ns, $temppage);
-							$temppage = str_replace($alias_c, $ns, $temppage);
-						}
-						$temppage = str_replace($alias_a, $ns, $temppage);
-					}
-					// save changes
-					$this->setPageBuffer($p, $temppage);
-				}
-				// move pages
-				$this->Bookmark($toc_name, 0, 0, $page_first);
-				for ($i = 0; $i < $numpages; ++$i) {
-					$this->movePage($page_last, $page);
-				}
-			}
-		}
-
-		/**
-		 * Output a Table Of Content Index (TOC) using HTML templates.
-		 * Before calling this method you have to open the page using the addTOCPage() method.
-		 * After calling this method you have to call endTOCPage() to close the TOC page.
-		 * @param int $page page number where this TOC should be inserted (leave empty for current page).
-		 * @param string $toc_name name to use for TOC bookmark.
-		 * @param array $templates array of html templates. Use: #TOC_DESCRIPTION# for bookmark title, #TOC_PAGE_NUMBER# for page number.
-		 * @param boolean $correct_align if true correct the number alignment (numbers must be in monospaced font like courier and right aligned on LTR, or left aligned on RTL)
-		 * @access public
-		 * @author Nicola Asuni
-		 * @since 5.0.001 (2010-05-06)
-		 * @see addTOCPage(), endTOCPage(), addTOC()
-		 */
-		public function addHTMLTOC($page='', $toc_name='TOC', $templates=array(), $correct_align=true) {
-			$prev_htmlLinkColorArray = $this->htmlLinkColorArray;
-			$prev_htmlLinkFontStyle = $this->htmlLinkFontStyle;
-			// set new style for link
-			$this->htmlLinkColorArray = array();
-			$this->htmlLinkFontStyle = '';
-			$page_first = $this->getPage();
-			foreach ($this->outlines as $key => $outline) {
-				if ($this->empty_string($page)) {
-					$pagenum = $outline['p'];
-				} else {
-					// placemark to be replaced with the correct number
-					$pagenum = '{#'.($outline['p']).'}';
-					if (($this->CurrentFont['type'] == 'TrueTypeUnicode') OR ($this->CurrentFont['type'] == 'cidfont0')) {
-						$pagenum = '{'.$pagenum.'}';
-					}
-				}
-				// get HTML template
-				$row = $templates[$outline['l']];
-				// replace templates with current values
-				$row = str_replace('#TOC_DESCRIPTION#', $outline['t'], $row);
-				$row = str_replace('#TOC_PAGE_NUMBER#', $pagenum, $row);
-				// add link to page
-				$row = '<a href="#'.$outline['p'].'">'.$row.'</a>';
-				// write bookmark entry
-				$this->writeHTML($row, false, false, true, false, '');
-			}
-			// restore link styles
-			$this->htmlLinkColorArray = $prev_htmlLinkColorArray;
-			$this->htmlLinkFontStyle = $prev_htmlLinkFontStyle;
-			// move TOC page and replace numbers
-			$page_last = $this->getPage();
-			$numpages = $page_last - $page_first + 1;
-			if (!$this->empty_string($page)) {
-				for ($p = $page_first; $p <= $page_last; ++$p) {
-					// get page data
-					$temppage = $this->getPageBuffer($p);
-					for ($n = 1; $n <= $this->numpages; ++$n) {
-						// update page numbers
-						$k = '{#'.$n.'}';
-						$ku = '{'.$k.'}';
-						$alias_a = $this->_escape($k);
-						$alias_au = $this->_escape('{'.$k.'}');
-						if ($this->isunicode) {
-							$alias_b = $this->_escape($this->UTF8ToLatin1($k));
-							$alias_bu = $this->_escape($this->UTF8ToLatin1($ku));
-							$alias_c = $this->_escape($this->utf8StrRev($k, false, $this->tmprtl));
-							$alias_cu = $this->_escape($this->utf8StrRev($ku, false, $this->tmprtl));
-						}
-						if ($n >= $page) {
-							$np = $n + $numpages;
-						} else {
-							$np = $n;
-						}
-						$ns = $this->formatTOCPageNumber($np);
-						$nu = $ns;
-						if ($correct_align) {
-							$sdiff = strlen($k) - strlen($ns);
-							$sdiffu = strlen($ku) - strlen($ns);
-							$sfill = str_repeat(' ', $sdiff);
-							$sfillu = str_repeat(' ', $sdiffu);
+	/**
+	 * Add a single no-write region on selected page.
+	 * A no-write region is a portion of the page with a rectangular or trapezium shape that will not be covered when writing text or html code.
+	 * A region is always aligned on the left or right side of the page ad is defined using a vertical segment.
+	 * You can set multiple regions for the same page.
+	 * @param $region (array) array of a single no-write region array: ('page' => page number or empy for current page, 'xt' => X top, 'yt' => Y top, 'xb' => X bottom, 'yb' => Y bottom, 'side' => page side 'L' = left or 'R' = right).
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.9.003 (2010-10-13)
+	 * @see setPageRegions(), getPageRegions()
+	 */
+	public function addPageRegion($region) {
+		if (!isset($region['page']) OR empty($region['page'])) {
+			$region['page'] = $this->page;
+		}
+		if (isset($region['xt']) AND isset($region['xb']) AND ($region['xt'] > 0) AND ($region['xb'] > 0)
+			AND isset($region['yt'])  AND isset($region['yb']) AND ($region['yt'] >= 0) AND ($region['yt'] < $region['yb'])
+			AND isset($region['side']) AND (($region['side'] == 'L') OR ($region['side'] == 'R'))) {
+			$this->page_regions[] = $region;
+		}
+	}
+
+	/**
+	 * Remove a single no-write region.
+	 * @param $key (int) region key
+	 * @author Nicola Asuni
+	 * @public
+	 * @since 5.9.003 (2010-10-13)
+	 * @see setPageRegions(), getPageRegions()
+	 */
+	public function removePageRegion($key) {
+		if (isset($this->page_regions[$key])) {
+			unset($this->page_regions[$key]);
+		}
+	}
+
+	/**
+	 * Check page for no-write regions and adapt current coordinates and page margins if necessary.
+	 * A no-write region is a portion of the page with a rectangular or trapezium shape that will not be covered when writing text or html code.
+	 * A region is always aligned on the left or right side of the page ad is defined using a vertical segment.
+	 * @param $h (float) height of the text/image/object to print in user units
+	 * @param $x (float) current X coordinate in user units
+	 * @param $y (float) current Y coordinate in user units
+	 * @author Nicola Asuni
+	 * @protected
+	 * @since 5.9.003 (2010-10-13)
+	 */
+	protected function checkPageRegions($h, &$x, &$y) {
+		// set default values
+		if ($x === '') {
+			$x = &$this->x;
+		}
+		if ($y === '') {
+			$y = &$this->y;
+		}
+		if (empty($this->page_regions)) {
+			// no page regions defined
+			return;
+		}
+		if (empty($h)) {
+			$h = ($this->FontSize * $this->cell_height_ratio) + $this->cell_padding['T'] + $this->cell_padding['B'];
+		}
+		if ($this->rtl) {
+			$this->lMargin = $this->original_lMargin;
+		} else {
+			$this->rMargin = $this->original_rMargin;
+		}
+		if ($this->AutoPageBreak AND !$this->InFooter AND (($y + $h) > $this->PageBreakTrigger)) {
+			// the content will be printed on a new page
+			return;
+		}
+		// adjust coordinates and page margins
+		foreach ($this->page_regions as $regid => $regdata) {
+			if ($regdata['page'] == $this->page) {
+				// check region boundaries
+				if (($y > ($regdata['yt'] - $h)) AND ($y <= $regdata['yb'])) {
+					// Y is inside the region
+					$minv = ($regdata['xb'] - $regdata['xt']) / ($regdata['yb'] - $regdata['yt']); // inverse of angular coefficient
+					$yt = max($y, $regdata['yt']);
+					$yb = min(($yt + $h), $regdata['yb']);
+					$xt = (($yt - $regdata['yt']) * $minv) + $regdata['xt'];
+					$xb = (($yb - $regdata['yt']) * $minv) + $regdata['xt'];
+					if ($regdata['side'] == 'L') { // left side
+						$new_margin = max($xt, $xb);
+						if ($this->lMargin < $new_margin) {
 							if ($this->rtl) {
-								$ns = $ns.$sfill;
-								$nu = $nu.$sfillu;
-							} else {
-								$ns = $sfill.$ns;
-								$nu = $sfillu.$nu;
+								// adjust left page margin
+								$this->lMargin = $new_margin;
+							}
+							if ($x < $new_margin) {
+								// adjust x position
+								$x = $new_margin;
 							}
 						}
-						$nu = $this->UTF8ToUTF16BE($nu, false);
-						$temppage = str_replace($alias_au, $nu, $temppage);
-						if ($this->isunicode) {
-							$temppage = str_replace($alias_bu, $nu, $temppage);
-							$temppage = str_replace($alias_cu, $nu, $temppage);
-							$temppage = str_replace($alias_b, $ns, $temppage);
-							$temppage = str_replace($alias_c, $ns, $temppage);
-						}
-						$temppage = str_replace($alias_a, $ns, $temppage);
-					}
-					// save changes
-					$this->setPageBuffer($p, $temppage);
-				}
-				// move pages
-				$this->Bookmark($toc_name, 0, 0, $page_first);
-				for ($i = 0; $i < $numpages; ++$i) {
-					$this->movePage($page_last, $page);
-				}
-			}
-		}
-
-		/**
-		 * Stores a copy of the current TCPDF object used for undo operation.
-		 * @access public
-		 * @since 4.5.029 (2009-03-19)
-		 */
-		public function startTransaction() {
-			if (isset($this->objcopy)) {
-				// remove previous copy
-				$this->commitTransaction();
-			}
-			// record current page number and Y position
-			$this->start_transaction_page = $this->page;
-			$this->start_transaction_y = $this->y;
-			// clone current object
-			$this->objcopy = $this->objclone($this);
-		}
-
-		/**
-		 * Delete the copy of the current TCPDF object used for undo operation.
-		 * @access public
-		 * @since 4.5.029 (2009-03-19)
-		 */
-		public function commitTransaction() {
-			if (isset($this->objcopy)) {
-				$this->objcopy->_destroy(true, true);
-				unset($this->objcopy);
-			}
-		}
-
-		/**
-		 * This method allows to undo the latest transaction by returning the latest saved TCPDF object with startTransaction().
-		 * @param boolean $self if true restores current class object to previous state without the need of reassignment via the returned value.
-		 * @return TCPDF object.
-		 * @access public
-		 * @since 4.5.029 (2009-03-19)
-		 */
-		public function rollbackTransaction($self=false) {
-			if (isset($this->objcopy)) {
-				if (isset($this->objcopy->diskcache) AND $this->objcopy->diskcache) {
-					// truncate files to previous values
-					foreach ($this->objcopy->cache_file_length as $file => $length) {
-						$file = substr($file, 1);
-						$handle = fopen($file, 'r+');
-						ftruncate($handle, $length);
-					}
-				}
-				$this->_destroy(true, true);
-				if ($self) {
-					$objvars = get_object_vars($this->objcopy);
-					foreach ($objvars as $key => $value) {
-						$this->$key = $value;
-					}
-				}
-				return $this->objcopy;
-			}
-			return $this;
-		}
-
-		/**
-		 * Creates a copy of a class object
-		 * @param object $object class object to be cloned
-		 * @return cloned object
-		 * @access public
-		 * @since 4.5.029 (2009-03-19)
-		 */
-		public function objclone($object) {
-			return @clone($object);
-		}
-
-		/**
-		 * Determine whether a string is empty.
-		 * @param string $str string to be checked
-		 * @return boolean true if string is empty
-		 * @access public
-		 * @since 4.5.044 (2009-04-16)
-		 */
-		public function empty_string($str) {
-			return (is_null($str) OR (is_string($str) AND (strlen($str) == 0)));
-		}
-
-		/**
-		 * Find position of last occurrence of a substring in a string
-		 * @param string $haystack The string to search in.
-		 * @param string $needle substring to search.
-		 * @param int $offset May be specified to begin searching an arbitrary number of characters into the string.
-		 * @return Returns the position where the needle exists. Returns FALSE if the needle was not found.
-		 * @access public
-		 * @since 4.8.038 (2010-03-13)
-		 */
-		public function revstrpos($haystack, $needle, $offset = 0) {
-			$length = strlen($haystack);
-			$offset = ($offset > 0)?($length - $offset):abs($offset);
-			$pos = strpos(strrev($haystack), strrev($needle), $offset);
-			return ($pos === false)?false:($length - $pos - strlen($needle));
-		}
-
-		// --- MULTI COLUMNS METHODS -----------------------
-
-		/**
-		 * Set multiple columns of the same size
-		 * @param int $numcols number of columns (set to zero to disable columns mode)
-		 * @param int $width column width
-		 * @param int $y column starting Y position (leave empty for current Y position)
-		 * @access public
-	 	 * @since 4.9.001 (2010-03-28)
-		 */
-		public function setEqualColumns($numcols=0, $width=0, $y='') {
-			$this->columns = array();
-			if ($numcols < 2) {
-				$numcols = 0;
-				$this->columns = array();
-			} else {
-				// maximum column width
-				$maxwidth = ($this->w - $this->original_lMargin - $this->original_rMargin) / $numcols;
-				if ($width > $maxwidth) {
-					$width = $maxwidth;
-				}
-				if ($this->empty_string($y)) {
-					$y = $this->y;
-				}
-				// space between columns
-				$space = (($this->w - $this->original_lMargin - $this->original_rMargin - ($numcols * $width)) / ($numcols - 1));
-				// fill the columns array (with, space, starting Y position)
-				for ($i = 0; $i < $numcols; ++$i) {
-					$this->columns[$i] = array('w' => $width, 's' => $space, 'y' => $y);
-				}
-			}
-			$this->num_columns = $numcols;
-			$this->current_column = 0;
-			$this->column_start_page = $this->page;
-		}
-
-		/**
-		 * Set columns array.
-		 * Each column is represented by and array with the following keys: (w = width, s = space between columns, y = column top position).
-		 * @param array $columns
-		 * @access public
-	 	 * @since 4.9.001 (2010-03-28)
-		 */
-		public function setColumnsArray($columns) {
-			$this->columns = $columns;
-			$this->num_columns = count($columns);
-			$this->current_column = 0;
-			$this->column_start_page = $this->page;
-		}
-
-		/**
-		 * Set position at a given column
-		 * @param int $col column number (from 0 to getNumberOfColumns()-1); empty string = current column.
-		 * @access public
-	 	 * @since 4.9.001 (2010-03-28)
-		 */
-		public function selectColumn($col='') {
-			if (is_string($col)) {
-				$col = $this->current_column;
-			} elseif($col >= $this->num_columns) {
-				$col = 0;
-			}
-			if ($this->num_columns > 1) {
-				if ($col != $this->current_column) {
-					// move pointer at column top on the first page
-					if ($this->column_start_page == $this->page) {
-						$this->y = $this->columns[$col]['y'];
-					} else {
-						$this->y = $this->tMargin;
-					}
-				}
-				// set X position of the current column by case
-				$listindent = ($this->listindentlevel * $this->listindent);
-				if ($this->rtl) {
-					$x = $this->w - $this->original_rMargin - ($col * ($this->columns[$col]['w'] + $this->columns[$col]['s']));
-					$this->SetRightMargin($this->w - $x + $listindent);
-					$this->SetLeftMargin($x - $this->columns[$col]['w']);
-					$this->x = $x - $listindent;
-				} else {
-					$x = $this->original_lMargin + ($col * ($this->columns[$col]['w'] + $this->columns[$col]['s']));
-					$this->SetLeftMargin($x + $listindent);
-					$this->SetRightMargin($this->w - $x - $this->columns[$col]['w']);
-					$this->x = $x + $listindent;
-				}
-				$this->columns[$col]['x'] = $x;
-			} else {
-				// restore original margins
-				$this->lMargin = $this->original_lMargin;
-				$this->rMargin = $this->original_rMargin;
-			}
-			$this->current_column = $col;
-			// fix for HTML mode
-			$this->newline = true;
-			// print HTML table header (if any)
-			if (!$this->empty_string($this->thead) AND (!$this->inthead)) {
-				// print table header
-				$this->writeHTML($this->thead, false, false, false, false, '');
-			}
-		}
-
-		/**
-		 * Serialize an array of parameters to be used with TCPDF tag in HTML code.
-		 * @param array $pararray parameters array
-		 * @return sting containing serialized data
-		 * @access public
-	 	 * @since 4.9.006 (2010-04-02)
-		 */
-		public function serializeTCPDFtagParameters($pararray) {
-			return urlencode(serialize($pararray));
-		}
-
-		/**
-		 * Set Text rendering mode.
-		 * @param int $stroke outline size in user units (0 = disable).
-		 * @param boolean $fill if true fills the text (default).
-		 * @param boolean $clip if true activate clipping mode
-		 * @access public
-		 * @since 4.9.008 (2009-04-02)
-		 */
-		public function setTextRenderingMode($stroke=0, $fill=true, $clip=false) {
-			// Ref.: PDF 32000-1:2008 - 9.3.6 Text Rendering Mode
-			// convert text rendering parameters
-			if ($stroke < 0) {
-				$stroke = 0;
-			}
-			if ($fill === true) {
-				if ($stroke > 0) {
-					if ($clip === true) {
-						// Fill, then stroke text and add to path for clipping
-						$textrendermode = 6;
-					} else {
-						// Fill, then stroke text
-						$textrendermode = 2;
-					}
-					$textstrokewidth = $stroke;
-				} else {
-					if ($clip === true) {
-						// Fill text and add to path for clipping
-						$textrendermode = 4;
-					} else {
-						// Fill text
-						$textrendermode = 0;
-					}
-				}
-			} else {
-				if ($stroke > 0) {
-					if ($clip === true) {
-						// Stroke text and add to path for clipping
-						$textrendermode = 5;
-					} else {
-						// Stroke text
-						$textrendermode = 1;
-					}
-					$textstrokewidth = $stroke;
-				} else {
-					if ($clip === true) {
-						// Add text to path for clipping
-						$textrendermode = 7;
-					} else {
-						// Neither fill nor stroke text (invisible)
-						$textrendermode = 3;
-					}
-				}
-			}
-			$this->textrendermode = $textrendermode;
-			$this->textstrokewidth = $stroke * $this->k;
-		}
-
-		/**
-		 * Returns an array of chars containing soft hyphens.
-		 * @param array $word array of chars
-		 * @param array $patterns Array of hypenation patterns.
-		 * @param array $dictionary Array of words to be returned without applying the hyphenation algoritm.
-		 * @param int $leftmin Minimum number of character to leave on the left of the word without applying the hyphens.
-		 * @param int $rightmin Minimum number of character to leave on the right of the word without applying the hyphens.
-		 * @param int $charmin Minimum word lenght to apply the hyphenation algoritm.
-		 * @param int $charmax Maximum lenght of broken piece of word.
-		 * @return array text with soft hyphens
-		 * @author Nicola Asuni
-		 * @since 4.9.012 (2010-04-12)
-		 * @access protected
-		 */
-		protected function hyphenateWord($word, $patterns, $dictionary=array(), $leftmin=1, $rightmin=2, $charmin=1, $charmax=8) {
-			$hyphenword = array(); // hyphens positions
-			$numchars = count($word);
-			if ($numchars <= $charmin) {
-				return $word;
-			}
-			$word_string = $this->UTF8ArrSubString($word);
-			// some words will be returned as-is
-			$pattern = '/^([a-zA-Z0-9_\.\-]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/';
-			if (preg_match($pattern, $word_string) > 0) {
-				// email
-				return $word;
-			}
-			$pattern = '/(([a-zA-Z0-9\-]+\.)?)((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/';
-			if (preg_match($pattern, $word_string) > 0) {
-				// URL
-				return $word;
-			}
-			if (isset($dictionary[$word_string])) {
-				return $this->UTF8StringToArray($dictionary[$word_string]);
-			}
-			// suround word with '_' characters
-			$tmpword = array_merge(array(95), $word, array(95));
-			$tmpnumchars = $numchars + 2;
-			$maxpos = $tmpnumchars - $charmin;
-			for ($pos = 0; $pos < $maxpos; ++$pos) {
-				$imax = min(($tmpnumchars - $pos), $charmax);
-				for ($i = $charmin; $i <= $imax; ++$i) {
-					$subword = strtolower($this->UTF8ArrSubString($tmpword, $pos, $pos + $i));
-					if (isset($patterns[$subword])) {
-						$pattern = $this->UTF8StringToArray($patterns[$subword]);
-						$pattern_length = count($pattern);
-						$digits = 1;
-						for ($j = 0; $j < $pattern_length; ++$j) {
-							// check if $pattern[$j] is a number
-							if (($pattern[$j] >= 48) AND ($pattern[$j] <= 57)) {
-								if ($j == 0) {
-									$zero = $pos - 1;
-								} else {
-									$zero = $pos + $j - $digits;
-								}
-								if (!isset($hyphenword[$zero]) OR ($hyphenword[$zero] != $pattern[$j])) {
-									$hyphenword[$zero] = $this->unichr($pattern[$j]);
-								}
-								++$digits;
+					} elseif ($regdata['side'] == 'R') { // right side
+						$new_margin = min($xt, $xb);
+						if (($this->w - $this->rMargin) > $new_margin) {
+							if (!$this->rtl) {
+								// adjust right page margin
+								$this->rMargin = ($this->w - $new_margin);
+							}
+							if ($x > $new_margin) {
+								// adjust x position
+								$x = $new_margin;
 							}
 						}
 					}
 				}
 			}
-			$inserted = 0;
-			$maxpos = $numchars - $rightmin;
-			for($i = $leftmin; $i <= $maxpos; ++$i) {
-				if(isset($hyphenword[$i]) AND (($hyphenword[$i] % 2) != 0)) {
-					// 173 = soft hyphen character
-					array_splice($word, $i + $inserted, 0, 173);
-					++$inserted;
-				}
-			}
-			return $word;
 		}
+	}
 
-		/**
-		 * Returns an array of hyphenation patterns.
-		 * @param string $file TEX file containing hypenation patterns. TEX pattrns can be downloaded from http://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
-		 * @return array of hyphenation patterns
-		 * @author Nicola Asuni
-		 * @since 4.9.012 (2010-04-12)
-		 * @access public
-		 */
-		public function getHyphenPatternsFromTEX($file) {
-			// TEX patterns are available at:
-			// http://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
-			$data = file_get_contents($file);
-			$patterns = array();
-			// remove comments
-			$data = preg_replace('/\%[^\n]*/', '', $data);
-			// extract the patterns part
-			preg_match('/\\\\patterns\{([^\}]*)\}/i', $data, $matches);
-			$data = trim(substr($matches[0], 10, -1));
-			// extract each pattern
-			$patterns_array = preg_split('/[\s]+/', $data);
-			// create new language array of patterns
-			$patterns = array();
-			foreach($patterns_array as $val) {
-				if (!$this->empty_string($val)) {
-					$val = trim($val);
-					$val = str_replace('\'', '\\\'', $val);
-					$key = preg_replace('/[0-9]+/', '', $val);
-					$patterns[$key] = $val;
-				}
-			}
-			return $patterns;
-		}
-
-		/**
-		 * Returns text with soft hyphens.
-		 * @param string $text text to process
-		 * @param mixed $patterns Array of hypenation patterns or a TEX file containing hypenation patterns. TEX patterns can be downloaded from http://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
-		 * @param array $dictionary Array of words to be returned without applying the hyphenation algoritm.
-		 * @param int $leftmin Minimum number of character to leave on the left of the word without applying the hyphens.
-		 * @param int $rightmin Minimum number of character to leave on the right of the word without applying the hyphens.
-		 * @param int $charmin Minimum word lenght to apply the hyphenation algoritm.
-		 * @param int $charmax Maximum lenght of broken piece of word.
-		 * @return array text with soft hyphens
-		 * @author Nicola Asuni
-		 * @since 4.9.012 (2010-04-12)
-		 * @access public
-		 */
-		public function hyphenateText($text, $patterns, $dictionary=array(), $leftmin=1, $rightmin=2, $charmin=1, $charmax=8) {
-			global $unicode;
-			$text = $this->unhtmlentities($text);
-			$word = array(); // last word
-			$txtarr = array(); // text to be returned
-			$intag = false; // true if we are inside an HTML tag
-			if (!is_array($patterns)) {
-				$patterns = $this->getHyphenPatternsFromTEX($patterns);
-			}
-			// get array of characters
-			$unichars = $this->UTF8StringToArray($text);
-			// for each char
-			foreach ($unichars as $char) {
-				if ((!$intag) AND $unicode[$char] == 'L') {
-					// letter character
-					$word[] = $char;
-				} else {
-					// other type of character
-					if (!$this->empty_string($word)) {
-						// hypenate the word
-						$txtarr = array_merge($txtarr, $this->hyphenateWord($word, $patterns, $dictionary, $leftmin, $rightmin, $charmin, $charmax));
-						$word = array();
-					}
-					$txtarr[] = $char;
-					if (chr($char) == '<') {
-						// we are inside an HTML tag
-						$intag = true;
-					} elseif ($intag AND (chr($char) == '>')) {
-						// end of HTML tag
-						$intag = false;
-					}
-				}
-			}
-			if (!$this->empty_string($word)) {
-				// hypenate the word
-				$txtarr = array_merge($txtarr, $this->hyphenateWord($word, $patterns, $dictionary, $leftmin, $rightmin, $charmin, $charmax));
-			}
-			// convert char array to string and return
-			return $this->UTF8ArrSubString($txtarr);
-		}
-
-		/**
-		 * Enable/disable rasterization of SVG images using ImageMagick library.
-		 * @param boolean $mode if true enable rasterization, false otherwise.
-		 * @access public
-		 * @since 5.0.000 (2010-04-27)
-		 */
-		public function setRasterizeVectorImages($mode) {
-			$this->rasterize_vector_images = $mode;
-		}
-
-		/**
-		 * Get the Path-Painting Operators.
-		 * @param string $style Style of rendering. Possible values are:
-		 * <ul>
-		 *   <li>S or D: Stroke the path.</li>
-		 *   <li>s or d: Close and stroke the path.</li>
-		 *   <li>f or F: Fill the path, using the nonzero winding number rule to determine the region to fill.</li>
-		 *   <li>f* or F*: Fill the path, using the even-odd rule to determine the region to fill.</li>
-		 *   <li>B or FD or DF: Fill and then stroke the path, using the nonzero winding number rule to determine the region to fill.</li>
-		 *   <li>B* or F*D or DF*: Fill and then stroke the path, using the even-odd rule to determine the region to fill.</li>
-		 *   <li>b or fd or df: Close, fill, and then stroke the path, using the nonzero winding number rule to determine the region to fill.</li>
-		 *   <li>b or f*d or df*: Close, fill, and then stroke the path, using the even-odd rule to determine the region to fill.</li>
-		 *   <li>CNZ: Clipping mode using the even-odd rule to determine which regions lie inside the clipping path.</li>
-		 *   <li>CEO: Clipping mode using the nonzero winding number rule to determine which regions lie inside the clipping path</li>
-		 *   <li>n: End the path object without filling or stroking it.</li>
-		 * </ul>
-		 * @param string $default default style
-		 * @param boolean $mode if true enable rasterization, false otherwise.
-		 * @author Nicola Asuni
-		 * @access protected
-		 * @since 5.0.000 (2010-04-30)
-		 */
-		protected function getPathPaintOperator($style, $default='S') {
-			$op = '';
-			switch($style) {
-				case 'S':
-				case 'D': {
-					$op = 'S';
-					break;
-				}
-				case 's':
-				case 'd': {
-					$op = 's';
-					break;
-				}
-				case 'f':
-				case 'F': {
-					$op = 'f';
-					break;
-				}
-				case 'f*':
-				case 'F*': {
-					$op = 'f*';
-					break;
-				}
-				case 'B':
-				case 'FD':
-				case 'DF': {
-					$op = 'B';
-					break;
+	// -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
+	// SVG METHODS
+	// -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
+
+	/**
+	 * Embedd a Scalable Vector Graphics (SVG) image.
+	 * NOTE: SVG standard is not yet fully implemented, use the setRasterizeVectorImages() method to enable/disable rasterization of vector images using ImageMagick library.
+	 * @param $file (string) Name of the SVG file or a '@' character followed by the SVG data string.
+	 * @param $x (float) Abscissa of the upper-left corner.
+	 * @param $y (float) Ordinate of the upper-left corner.
+	 * @param $w (float) Width of the image in the page. If not specified or equal to zero, it is automatically calculated.
+	 * @param $h (float) Height of the image in the page. If not specified or equal to zero, it is automatically calculated.
+	 * @param $link (mixed) URL or identifier returned by AddLink().
+	 * @param $align (string) Indicates the alignment of the pointer next to image insertion relative to image height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul> If the alignment is an empty string, then the pointer will be restored on the starting SVG position.
+	 * @param $palign (string) Allows to center or align the image on the current line. Possible values are:<ul><li>L : left align</li><li>C : center</li><li>R : right align</li><li>'' : empty string : left for LTR or right for RTL</li></ul>
+	 * @param $border (mixed) Indicates if borders must be drawn around the cell. The value can be a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul> or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul> or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+	 * @param $fitonpage (boolean) if true the image is resized to not exceed page dimensions.
+	 * @author Nicola Asuni
+	 * @since 5.0.000 (2010-05-02)
+	 * @public
+	 */
+	public function ImageSVG($file, $x='', $y='', $w=0, $h=0, $link='', $align='', $palign='', $border=0, $fitonpage=false) {
+		if ($this->rasterize_vector_images AND ($w > 0) AND ($h > 0)) {
+			// convert SVG to raster image using GD or ImageMagick libraries
+			return $this->Image($file, $x, $y, $w, $h, 'SVG', $link, $align, true, 300, $palign, false, false, $border, false, false, false);
+		}
+		if ($file{0} === '@') { // image from string
+			$this->svgdir = '';
+			$svgdata = substr($file, 1);
+		} else { // SVG file
+			$this->svgdir = dirname($file);
+			$svgdata = file_get_contents($file);
+		}
+		if ($svgdata === false) {
+			$this->Error('SVG file not found: '.$file);
+		}
+		if ($x === '') {
+			$x = $this->x;
+		}
+		if ($y === '') {
+			$y = $this->y;
+		}
+		// check page for no-write regions and adapt page margins if necessary
+		$this->checkPageRegions($h, $x, $y);
+		$k = $this->k;
+		$ox = 0;
+		$oy = 0;
+		$ow = $w;
+		$oh = $h;
+		$aspect_ratio_align = 'xMidYMid';
+		$aspect_ratio_ms = 'meet';
+		$regs = array();
+		// get original image width and height
+		preg_match('/<svg([^\>]*)>/si', $svgdata, $regs);
+		if (isset($regs[1]) AND !empty($regs[1])) {
+			$tmp = array();
+			if (preg_match('/[\s]+x[\s]*=[\s]*"([^"]*)"/si', $regs[1], $tmp)) {
+				$ox = $this->getHTMLUnitToUnits($tmp[1], 0, $this->svgunit, false);
+			}
+			$tmp = array();
+			if (preg_match('/[\s]+y[\s]*=[\s]*"([^"]*)"/si', $regs[1], $tmp)) {
+				$oy = $this->getHTMLUnitToUnits($tmp[1], 0, $this->svgunit, false);
+			}
+			$tmp = array();
+			if (preg_match('/[\s]+width[\s]*=[\s]*"([^"]*)"/si', $regs[1], $tmp)) {
+				$ow = $this->getHTMLUnitToUnits($tmp[1], 1, $this->svgunit, false);
+			}
+			$tmp = array();
+			if (preg_match('/[\s]+height[\s]*=[\s]*"([^"]*)"/si', $regs[1], $tmp)) {
+				$oh = $this->getHTMLUnitToUnits($tmp[1], 1, $this->svgunit, false);
+			}
+			$tmp = array();
+			$view_box = array();
+			if (preg_match('/[\s]+viewBox[\s]*=[\s]*"[\s]*([0-9\.\-]+)[\s]+([0-9\.\-]+)[\s]+([0-9\.]+)[\s]+([0-9\.]+)[\s]*"/si', $regs[1], $tmp)) {
+				if (count($tmp) == 5) {
+					array_shift($tmp);
+					foreach ($tmp as $key => $val) {
+						$view_box[$key] = $this->getHTMLUnitToUnits($val, 0, $this->svgunit, false);
+					}
+					$ox = $view_box[0];
+					$oy = $view_box[1];
+				}
+				// get aspect ratio
+				$tmp = array();
+				if (preg_match('/[\s]+preserveAspectRatio[\s]*=[\s]*"([^"]*)"/si', $regs[1], $tmp)) {
+					$aspect_ratio = preg_split('/[\s]+/si', $tmp[1]);
+					switch (count($aspect_ratio)) {
+						case 3: {
+							$aspect_ratio_align = $aspect_ratio[1];
+							$aspect_ratio_ms = $aspect_ratio[2];
+							break;
+						}
+						case 2: {
+							$aspect_ratio_align = $aspect_ratio[0];
+							$aspect_ratio_ms = $aspect_ratio[1];
+							break;
+						}
+						case 1: {
+							$aspect_ratio_align = $aspect_ratio[0];
+							$aspect_ratio_ms = 'meet';
+							break;
+						}
+					}
 				}
-				case 'B*':
-				case 'F*D':
-				case 'DF*': {
-					$op = 'B*';
+			}
+		}
+		// calculate image width and height on document
+		if (($w <= 0) AND ($h <= 0)) {
+			// convert image size to document unit
+			$w = $ow;
+			$h = $oh;
+		} elseif ($w <= 0) {
+			$w = $h * $ow / $oh;
+		} elseif ($h <= 0) {
+			$h = $w * $oh / $ow;
+		}
+		// fit the image on available space
+		$this->fitBlock($w, $h, $x, $y, $fitonpage);
+		if ($this->rasterize_vector_images) {
+			// convert SVG to raster image using GD or ImageMagick libraries
+			return $this->Image($file, $x, $y, $w, $h, 'SVG', $link, $align, true, 300, $palign, false, false, $border, false, false, false);
+		}
+		// set alignment
+		$this->img_rb_y = $y + $h;
+		// set alignment
+		if ($this->rtl) {
+			if ($palign == 'L') {
+				$ximg = $this->lMargin;
+			} elseif ($palign == 'C') {
+				$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
+			} elseif ($palign == 'R') {
+				$ximg = $this->w - $this->rMargin - $w;
+			} else {
+				$ximg = $x - $w;
+			}
+			$this->img_rb_x = $ximg;
+		} else {
+			if ($palign == 'L') {
+				$ximg = $this->lMargin;
+			} elseif ($palign == 'C') {
+				$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
+			} elseif ($palign == 'R') {
+				$ximg = $this->w - $this->rMargin - $w;
+			} else {
+				$ximg = $x;
+			}
+			$this->img_rb_x = $ximg + $w;
+		}
+		// store current graphic vars
+		$gvars = $this->getGraphicVars();
+		// store SVG position and scale factors
+		$svgoffset_x = ($ximg - $ox) * $this->k;
+		$svgoffset_y = -($y - $oy) * $this->k;
+		if (isset($view_box[2]) AND ($view_box[2] > 0) AND ($view_box[3] > 0)) {
+			$ow = $view_box[2];
+			$oh = $view_box[3];
+		} else {
+			if ($ow <= 0) {
+				$ow = $w;
+			}
+			if ($oh <= 0) {
+				$oh = $h;
+			}
+		}
+		$svgscale_x = $w / $ow;
+		$svgscale_y = $h / $oh;
+		// scaling and alignment
+		if ($aspect_ratio_align != 'none') {
+			// store current scaling values
+			$svgscale_old_x = $svgscale_x;
+			$svgscale_old_y = $svgscale_y;
+			// force uniform scaling
+			if ($aspect_ratio_ms == 'slice') {
+				// the entire viewport is covered by the viewBox
+				if ($svgscale_x > $svgscale_y) {
+					$svgscale_y = $svgscale_x;
+				} elseif ($svgscale_x < $svgscale_y) {
+					$svgscale_x = $svgscale_y;
+				}
+			} else { // meet
+				// the entire viewBox is visible within the viewport
+				if ($svgscale_x < $svgscale_y) {
+					$svgscale_y = $svgscale_x;
+				} elseif ($svgscale_x > $svgscale_y) {
+					$svgscale_x = $svgscale_y;
+				}
+			}
+			// correct X alignment
+			switch (substr($aspect_ratio_align, 1, 3)) {
+				case 'Min': {
+					// do nothing
 					break;
 				}
-				case 'b':
-				case 'fd':
-				case 'df': {
-					$op = 'b';
+				case 'Max': {
+					$svgoffset_x += (($w * $this->k) - ($ow * $this->k * $svgscale_x));
 					break;
 				}
-				case 'b*':
-				case 'f*d':
-				case 'df*': {
-					$op = 'b*';
+				default:
+				case 'Mid': {
+					$svgoffset_x += ((($w * $this->k) - ($ow * $this->k * $svgscale_x)) / 2);
 					break;
 				}
-				case 'CNZ': {
-					$op = 'W n';
+			}
+			// correct Y alignment
+			switch (substr($aspect_ratio_align, 5)) {
+				case 'Min': {
+					// do nothing
 					break;
 				}
-				case 'CEO': {
-					$op = 'W* n';
+				case 'Max': {
+					$svgoffset_y -= (($h * $this->k) - ($oh * $this->k * $svgscale_y));
 					break;
 				}
-				case 'n': {
-					$op = 'n';
+				default:
+				case 'Mid': {
+					$svgoffset_y -= ((($h * $this->k) - ($oh * $this->k * $svgscale_y)) / 2);
 					break;
 				}
-				default: {
-					if (!empty($default)) {
-						$op = $this->getPathPaintOperator($default, '');
-					} else {
-						$op = '';
-					}
-				}
-			}
-			return $op;
-		}
-
-		/**
-		 * Enable or disable default option for font subsetting.
-		 * @param boolean $enable if true enable font subsetting by default.
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 5.3.002 (2010-06-07)
-		 */
-		public function setFontSubsetting($enable=true) {
-			$this->font_subsetting = $enable ? true : false;
-		}
-
-		/**
-		 * Return the default option for font subsetting.
-		 * @return boolean default font subsetting state.
-		 * @author Nicola Asuni
-		 * @access public
-		 * @since 5.3.002 (2010-06-07)
-		 */
-		public function getFontSubsetting() {
-			return $this->font_subsetting;
-		}
-
-		// -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
-		// SVG METHODS
-		// -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
-
-		/**
-		 * Embedd a Scalable Vector Graphics (SVG) image.
-		 * NOTE: SVG standard is not yet fully implemented, use the setRasterizeVectorImages() method to enable/disable rasterization of SVG images using ImageMagick library.
-		 * @param string $file Name of the SVG file.
-		 * @param float $x Abscissa of the upper-left corner.
-		 * @param float $y Ordinate of the upper-left corner.
-		 * @param float $w Width of the image in the page. If not specified or equal to zero, it is automatically calculated.
-		 * @param float $h Height of the image in the page. If not specified or equal to zero, it is automatically calculated.
-		 * @param mixed $link URL or identifier returned by AddLink().
-		 * @param string $align Indicates the alignment of the pointer next to image insertion relative to image height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul>
-		 * @param string $palign Allows to center or align the image on the current line. Possible values are:<ul><li>L : left align</li><li>C : center</li><li>R : right align</li><li>'' : empty string : left for LTR or right for RTL</li></ul>
-		 * @param mixed $border Indicates if borders must be drawn around the image. The value can be either a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul>or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul>
-		 * @param boolean $fitonpage if true the image is resized to not exceed page dimensions.
-		 * @author Nicola Asuni
-		 * @since 5.0.000 (2010-05-02)
-		 * @access public
-		 */
-		public function ImageSVG($file, $x='', $y='', $w=0, $h=0, $link='', $align='', $palign='', $border=0, $fitonpage=false) {
-			if ($this->rasterize_vector_images AND ($w > 0) AND ($h > 0)) {
-				// convert SVG to raster image using GD or ImageMagick libraries
-				return $this->Image($file, $x, $y, $w, $h, 'SVG', $link, $align, true, 300, $palign, false, false, $border, false, false, false);
-			}
-			$this->svgdir = dirname($file);
-			$svgdata = file_get_contents($file);
-			if ($svgdata === false) {
-				$this->Error('SVG file not found: '.$file);
 			}
-			if ($x === '') {
-				$x = $this->x;
-			}
-			if ($y === '') {
-				$y = $this->y;
+		}
+		// store current page break mode
+		$page_break_mode = $this->AutoPageBreak;
+		$page_break_margin = $this->getBreakMargin();
+		$cell_padding = $this->cell_padding;
+		$this->SetCellPadding(0);
+		$this->SetAutoPageBreak(false);
+		// save the current graphic state
+		$this->_out('q'.$this->epsmarker);
+		// set initial clipping mask
+		$this->Rect($x, $y, $w, $h, 'CNZ', array(), array());
+		// scale and translate
+		$e = $ox * $this->k * (1 - $svgscale_x);
+		$f = ($this->h - $oy) * $this->k * (1 - $svgscale_y);
+		$this->_out(sprintf('%.3F %.3F %.3F %.3F %.3F %.3F cm', $svgscale_x, 0, 0, $svgscale_y, $e + $svgoffset_x, $f + $svgoffset_y));
+		// creates a new XML parser to be used by the other XML functions
+		$this->parser = xml_parser_create('UTF-8');
+		// the following function allows to use parser inside object
+		xml_set_object($this->parser, $this);
+		// disable case-folding for this XML parser
+		xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, 0);
+		// sets the element handler functions for the XML parser
+		xml_set_element_handler($this->parser, 'startSVGElementHandler', 'endSVGElementHandler');
+		// sets the character data handler function for the XML parser
+		xml_set_character_data_handler($this->parser, 'segSVGContentHandler');
+		// start parsing an XML document
+		if(!xml_parse($this->parser, $svgdata)) {
+			$error_message = sprintf("SVG Error: %s at line %d", xml_error_string(xml_get_error_code($this->parser)), xml_get_current_line_number($this->parser));
+			$this->Error($error_message);
+		}
+		// free this XML parser
+		xml_parser_free($this->parser);
+		// restore previous graphic state
+		$this->_out($this->epsmarker.'Q');
+		// restore graphic vars
+		$this->setGraphicVars($gvars);
+		$this->lasth = $gvars['lasth'];
+		if (!empty($border)) {
+			$bx = $this->x;
+			$by = $this->y;
+			$this->x = $ximg;
+			if ($this->rtl) {
+				$this->x += $w;
 			}
-			$k = $this->k;
-			$ox = 0;
-			$oy = 0;
-			$ow = $w;
-			$oh = $h;
-			$aspect_ratio_align = 'xMidYMid';
-			$aspect_ratio_ms = 'meet';
-			$regs = array();
-			// get original image width and height
-			preg_match('/<svg([^\>]*)>/si', $svgdata, $regs);
-			if (isset($regs[1]) AND !empty($regs[1])) {
-				$tmp = array();
-				if (preg_match('/[\s]+x[\s]*=[\s]*"([^"]*)"/si', $regs[1], $tmp)) {
-					$ox = $this->getHTMLUnitToUnits($tmp[1], 0, $this->svgunit, false);
-				}
-				$tmp = array();
-				if (preg_match('/[\s]+y[\s]*=[\s]*"([^"]*)"/si', $regs[1], $tmp)) {
-					$oy = $this->getHTMLUnitToUnits($tmp[1], 0, $this->svgunit, false);
-				}
-				$tmp = array();
-				if (preg_match('/[\s]+width[\s]*=[\s]*"([^"]*)"/si', $regs[1], $tmp)) {
-					$ow = $this->getHTMLUnitToUnits($tmp[1], 1, $this->svgunit, false);
-				}
-				$tmp = array();
-				if (preg_match('/[\s]+height[\s]*=[\s]*"([^"]*)"/si', $regs[1], $tmp)) {
-					$oh = $this->getHTMLUnitToUnits($tmp[1], 1, $this->svgunit, false);
-				}
-				$tmp = array();
-				$view_box = array();
-				if (preg_match('/[\s]+viewBox[\s]*=[\s]*"[\s]*([0-9\.\-]+)[\s]+([0-9\.\-]+)[\s]+([0-9\.]+)[\s]+([0-9\.]+)[\s]*"/si', $regs[1], $tmp)) {
-					if (count($tmp) == 5) {
-						array_shift($tmp);
-						foreach ($tmp as $key => $val) {
-							$view_box[$key] = $this->getHTMLUnitToUnits($val, 0, $this->svgunit, false);
-						}
-						$ox = $view_box[0];
-						$oy = $view_box[1];
-					}
-					// get aspect ratio
-					$tmp = array();
-					if (preg_match('/[\s]+preserveAspectRatio[\s]*=[\s]*"([^"]*)"/si', $regs[1], $tmp)) {
-						$aspect_ratio = preg_split("/[\s]+/si", $tmp[1]);
-						switch (count($aspect_ratio)) {
-							case 3: {
-								$aspect_ratio_align = $aspect_ratio[1];
-								$aspect_ratio_ms = $aspect_ratio[2];
-								break;
+			$this->y = $y;
+			$this->Cell($w, $h, '', $border, 0, '', 0, '', 0, true);
+			$this->x = $bx;
+			$this->y = $by;
+		}
+		if ($link) {
+			$this->Link($ximg, $y, $w, $h, $link, 0);
+		}
+		// set pointer to align the next text/objects
+		switch($align) {
+			case 'T':{
+				$this->y = $y;
+				$this->x = $this->img_rb_x;
+				break;
+			}
+			case 'M':{
+				$this->y = $y + round($h/2);
+				$this->x = $this->img_rb_x;
+				break;
+			}
+			case 'B':{
+				$this->y = $this->img_rb_y;
+				$this->x = $this->img_rb_x;
+				break;
+			}
+			case 'N':{
+				$this->SetY($this->img_rb_y);
+				break;
+			}
+			default:{
+				// restore pointer to starting position
+				$this->x = $gvars['x'];
+				$this->y = $gvars['y'];
+				$this->page = $gvars['page'];
+				$this->current_column = $gvars['current_column'];
+				$this->tMargin = $gvars['tMargin'];
+				$this->bMargin = $gvars['bMargin'];
+				$this->w = $gvars['w'];
+				$this->h = $gvars['h'];
+				$this->wPt = $gvars['wPt'];
+				$this->hPt = $gvars['hPt'];
+				$this->fwPt = $gvars['fwPt'];
+				$this->fhPt = $gvars['fhPt'];
+				break;
+			}
+		}
+		$this->endlinex = $this->img_rb_x;
+		// restore page break
+		$this->SetAutoPageBreak($page_break_mode, $page_break_margin);
+		$this->cell_padding = $cell_padding;
+	}
+
+	/**
+	 * Get the tranformation matrix from SVG transform attribute
+	 * @param $attribute (string) transformation
+	 * @return array of transformations
+	 * @author Nicola Asuni
+	 * @since 5.0.000 (2010-05-02)
+	 * @protected
+	 */
+	protected function getSVGTransformMatrix($attribute) {
+		// identity matrix
+		$tm = array(1, 0, 0, 1, 0, 0);
+		$transform = array();
+		if (preg_match_all('/(matrix|translate|scale|rotate|skewX|skewY)[\s]*\(([^\)]+)\)/si', $attribute, $transform, PREG_SET_ORDER) > 0) {
+			foreach ($transform as $key => $data) {
+				if (!empty($data[2])) {
+					$a = 1;
+					$b = 0;
+					$c = 0;
+					$d = 1;
+					$e = 0;
+					$f = 0;
+					$regs = array();
+					switch ($data[1]) {
+						case 'matrix': {
+							if (preg_match('/([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)/si', $data[2], $regs)) {
+								$a = $regs[1];
+								$b = $regs[2];
+								$c = $regs[3];
+								$d = $regs[4];
+								$e = $regs[5];
+								$f = $regs[6];
 							}
-							case 2: {
-								$aspect_ratio_align = $aspect_ratio[0];
-								$aspect_ratio_ms = $aspect_ratio[1];
-								break;
+							break;
+						}
+						case 'translate': {
+							if (preg_match('/([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)/si', $data[2], $regs)) {
+								$e = $regs[1];
+								$f = $regs[2];
+							} elseif (preg_match('/([a-z0-9\-\.]+)/si', $data[2], $regs)) {
+								$e = $regs[1];
 							}
-							case 1: {
-								$aspect_ratio_align = $aspect_ratio[0];
-								$aspect_ratio_ms = 'meet';
-								break;
+							break;
+						}
+						case 'scale': {
+							if (preg_match('/([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)/si', $data[2], $regs)) {
+								$a = $regs[1];
+								$d = $regs[2];
+							} elseif (preg_match('/([a-z0-9\-\.]+)/si', $data[2], $regs)) {
+								$a = $regs[1];
+								$d = $a;
+							}
+							break;
+						}
+						case 'rotate': {
+							if (preg_match('/([0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)/si', $data[2], $regs)) {
+								$ang = deg2rad($regs[1]);
+								$x = $regs[2];
+								$y = $regs[3];
+								$a = cos($ang);
+								$b = sin($ang);
+								$c = -$b;
+								$d = $a;
+								$e = ($x * (1 - $a)) - ($y * $c);
+								$f = ($y * (1 - $d)) - ($x * $b);
+							} elseif (preg_match('/([0-9\-\.]+)/si', $data[2], $regs)) {
+								$ang = deg2rad($regs[1]);
+								$a = cos($ang);
+								$b = sin($ang);
+								$c = -$b;
+								$d = $a;
+								$e = 0;
+								$f = 0;
+							}
+							break;
+						}
+						case 'skewX': {
+							if (preg_match('/([0-9\-\.]+)/si', $data[2], $regs)) {
+								$c = tan(deg2rad($regs[1]));
+							}
+							break;
+						}
+						case 'skewY': {
+							if (preg_match('/([0-9\-\.]+)/si', $data[2], $regs)) {
+								$b = tan(deg2rad($regs[1]));
 							}
+							break;
 						}
 					}
+					$tm = $this->getTransformationMatrixProduct($tm, array($a, $b, $c, $d, $e, $f));
 				}
 			}
-			// calculate image width and height on document
-			if (($w <= 0) AND ($h <= 0)) {
-				// convert image size to document unit
-				$w = $ow;
-				$h = $oh;
-			} elseif ($w <= 0) {
-				$w = $h * $ow / $oh;
-			} elseif ($h <= 0) {
-				$h = $w * $oh / $ow;
-			}
-			// fit the image on available space
-			$this->fitBlock($w, $h, $x, $y, $fitonpage);
-			if ($this->rasterize_vector_images) {
-				// convert SVG to raster image using GD or ImageMagick libraries
-				return $this->Image($file, $x, $y, $w, $h, 'SVG', $link, $align, true, 300, $palign, false, false, $border, false, false, false);
-			}
-			// set alignment
-			$this->img_rb_y = $y + $h;
-			// set alignment
-			if ($this->rtl) {
-				if ($palign == 'L') {
-					$ximg = $this->lMargin;
-				} elseif ($palign == 'C') {
-					$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
-				} elseif ($palign == 'R') {
-					$ximg = $this->w - $this->rMargin - $w;
-				} else {
-					$ximg = $x - $w;
-				}
-				$this->img_rb_x = $ximg;
+		}
+		return $tm;
+	}
+
+	/**
+	 * Get the product of two SVG tranformation matrices
+	 * @param $ta (array) first SVG tranformation matrix
+	 * @param $tb (array) second SVG tranformation matrix
+	 * @return transformation array
+	 * @author Nicola Asuni
+	 * @since 5.0.000 (2010-05-02)
+	 * @protected
+	 */
+	protected function getTransformationMatrixProduct($ta, $tb) {
+		$tm = array();
+		$tm[0] = ($ta[0] * $tb[0]) + ($ta[2] * $tb[1]);
+		$tm[1] = ($ta[1] * $tb[0]) + ($ta[3] * $tb[1]);
+		$tm[2] = ($ta[0] * $tb[2]) + ($ta[2] * $tb[3]);
+		$tm[3] = ($ta[1] * $tb[2]) + ($ta[3] * $tb[3]);
+		$tm[4] = ($ta[0] * $tb[4]) + ($ta[2] * $tb[5]) + $ta[4];
+		$tm[5] = ($ta[1] * $tb[4]) + ($ta[3] * $tb[5]) + $ta[5];
+		return $tm;
+	}
+
+	/**
+	 * Convert SVG transformation matrix to PDF.
+	 * @param $tm (array) original SVG transformation matrix
+	 * @return array transformation matrix
+	 * @protected
+	 * @since 5.0.000 (2010-05-02)
+	 */
+	protected function convertSVGtMatrix($tm) {
+		$a = $tm[0];
+		$b = -$tm[1];
+		$c = -$tm[2];
+		$d = $tm[3];
+		$e = $this->getHTMLUnitToUnits($tm[4], 1, $this->svgunit, false) * $this->k;
+		$f = -$this->getHTMLUnitToUnits($tm[5], 1, $this->svgunit, false) * $this->k;
+		$x = 0;
+		$y = $this->h * $this->k;
+		$e = ($x * (1 - $a)) - ($y * $c) + $e;
+		$f = ($y * (1 - $d)) - ($x * $b) + $f;
+		return array($a, $b, $c, $d, $e, $f);
+	}
+
+	/**
+	 * Apply SVG graphic transformation matrix.
+	 * @param $tm (array) original SVG transformation matrix
+	 * @protected
+	 * @since 5.0.000 (2010-05-02)
+	 */
+	protected function SVGTransform($tm) {
+		$this->Transform($this->convertSVGtMatrix($tm));
+	}
+
+	/**
+	 * Apply the requested SVG styles (*** TO BE COMPLETED ***)
+	 * @param $svgstyle (array) array of SVG styles to apply
+	 * @param $prevsvgstyle (array) array of previous SVG style
+	 * @param $x (int) X origin of the bounding box
+	 * @param $y (int) Y origin of the bounding box
+	 * @param $w (int) width of the bounding box
+	 * @param $h (int) height of the bounding box
+	 * @param $clip_function (string) clip function
+	 * @param $clip_params (array) array of parameters for clipping function
+	 * @return object style
+	 * @author Nicola Asuni
+	 * @since 5.0.000 (2010-05-02)
+	 * @protected
+	 */
+	protected function setSVGStyles($svgstyle, $prevsvgstyle, $x=0, $y=0, $w=1, $h=1, $clip_function='', $clip_params=array()) {
+		$objstyle = '';
+		if(!isset($svgstyle['opacity'])) {
+			return $objstyle;
+		}
+		// clip-path
+		$regs = array();
+		if (preg_match('/url\([\s]*\#([^\)]*)\)/si', $svgstyle['clip-path'], $regs)) {
+			$clip_path = $this->svgclippaths[$regs[1]];
+			foreach ($clip_path as $cp) {
+				$this->startSVGElementHandler('clip-path', $cp['name'], $cp['attribs'], $cp['tm']);
+			}
+		}
+		// opacity
+		if ($svgstyle['opacity'] != 1) {
+			$this->SetAlpha($svgstyle['opacity']);
+		}
+		// color
+		$fill_color = $this->convertHTMLColorToDec($svgstyle['color']);
+		$this->SetFillColorArray($fill_color);
+		// text color
+		$text_color = $this->convertHTMLColorToDec($svgstyle['text-color']);
+		$this->SetTextColorArray($text_color);
+		// clip
+		if (preg_match('/rect\(([a-z0-9\-\.]*)[\s]*([a-z0-9\-\.]*)[\s]*([a-z0-9\-\.]*)[\s]*([a-z0-9\-\.]*)\)/si', $svgstyle['clip'], $regs)) {
+			$top = (isset($regs[1])?$this->getHTMLUnitToUnits($regs[1], 0, $this->svgunit, false):0);
+			$right = (isset($regs[2])?$this->getHTMLUnitToUnits($regs[2], 0, $this->svgunit, false):0);
+			$bottom = (isset($regs[3])?$this->getHTMLUnitToUnits($regs[3], 0, $this->svgunit, false):0);
+			$left = (isset($regs[4])?$this->getHTMLUnitToUnits($regs[4], 0, $this->svgunit, false):0);
+			$cx = $x + $left;
+			$cy = $y + $top;
+			$cw = $w - $left - $right;
+			$ch = $h - $top - $bottom;
+			if ($svgstyle['clip-rule'] == 'evenodd') {
+				$clip_rule = 'CNZ';
 			} else {
-				if ($palign == 'L') {
-					$ximg = $this->lMargin;
-				} elseif ($palign == 'C') {
-					$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
-				} elseif ($palign == 'R') {
-					$ximg = $this->w - $this->rMargin - $w;
-				} else {
-					$ximg = $x;
-				}
-				$this->img_rb_x = $ximg + $w;
-			}
-			// store current graphic vars
-			$gvars = $this->getGraphicVars();
-			// store SVG position and scale factors
-			$svgoffset_x = ($ximg - $ox) * $this->k;
-			$svgoffset_y = -($y - $oy) * $this->k;
-			if (isset($view_box[2]) AND ($view_box[2] > 0) AND ($view_box[3] > 0)) {
-				$ow = $view_box[2];
-				$oh = $view_box[3];
-			}
-			$svgscale_x = $w / $ow;
-			$svgscale_y = $h / $oh;
-			// scaling and alignment
-			if ($aspect_ratio_align != 'none') {
-				// store current scaling values
-				$svgscale_old_x = $svgscale_x;
-				$svgscale_old_y = $svgscale_y;
-				// force uniform scaling
-				if ($aspect_ratio_ms == 'slice') {
-					// the entire viewport is covered by the viewBox
-					if ($svgscale_x > $svgscale_y) {
-						$svgscale_y = $svgscale_x;
-					} elseif ($svgscale_x < $svgscale_y) {
-						$svgscale_x = $svgscale_y;
-					}
-				} else { // meet
-					// the entire viewBox is visible within the viewport
-					if ($svgscale_x < $svgscale_y) {
-						$svgscale_y = $svgscale_x;
-					} elseif ($svgscale_x > $svgscale_y) {
-						$svgscale_x = $svgscale_y;
-					}
-				}
-				// correct X alignment
-				switch (substr($aspect_ratio_align, 1, 3)) {
-					case 'Min': {
-						// do nothing
-						break;
-					}
-					case 'Max': {
-						$svgoffset_x += (($w * $this->k) - ($ow * $this->k * $svgscale_x));
-						break;
-					}
-					default:
-					case 'Mid': {
-						$svgoffset_x += ((($w * $this->k) - ($ow * $this->k * $svgscale_x)) / 2);
-						break;
-					}
-				}
-				// correct Y alignment
-				switch (substr($aspect_ratio_align, 5)) {
-					case 'Min': {
-						// do nothing
-						break;
-					}
-					case 'Max': {
-						$svgoffset_y -= (($h * $this->k) - ($oh * $this->k * $svgscale_y));
-						break;
-					}
-					default:
-					case 'Mid': {
-						$svgoffset_y -= ((($h * $this->k) - ($oh * $this->k * $svgscale_y)) / 2);
-						break;
-					}
-				}
+				$clip_rule = 'CEO';
+			}
+			$this->Rect($cx, $cy, $cw, $ch, $clip_rule, array(), array());
+		}
+		// fill
+		$regs = array();
+		if (preg_match('/url\([\s]*\#([^\)]*)\)/si', $svgstyle['fill'], $regs)) {
+			// gradient
+			$gradient = $this->svggradients[$regs[1]];
+			if (isset($gradient['xref'])) {
+				// reference to another gradient definition
+				$newgradient = $this->svggradients[$gradient['xref']];
+				$newgradient['coords'] = $gradient['coords'];
+				$newgradient['mode'] = $gradient['mode'];
+				$newgradient['gradientUnits'] = $gradient['gradientUnits'];
+				if (isset($gradient['gradientTransform'])) {
+					$newgradient['gradientTransform'] = $gradient['gradientTransform'];
+				}
+				$gradient = $newgradient;
 			}
-			// store current page break mode
-			$page_break_mode = $this->AutoPageBreak;
-			$page_break_margin = $this->getBreakMargin();
-			$this->SetAutoPageBreak(false);
-			// save the current graphic state
-			$this->_out('q'.$this->epsmarker);
-			// set initial clipping mask
-			$this->Rect($x, $y, $w, $h, 'CNZ', array(), array());
-			// scale and translate
-			$e = $ox * $this->k * (1 - $svgscale_x);
-			$f = ($this->h - $oy) * $this->k * (1 - $svgscale_y);
-			$this->_out(sprintf('%.3F %.3F %.3F %.3F %.3F %.3F cm', $svgscale_x, 0, 0, $svgscale_y, $e + $svgoffset_x, $f + $svgoffset_y));
-			// creates a new XML parser to be used by the other XML functions
-			$this->parser = xml_parser_create('UTF-8');
-			// the following function allows to use parser inside object
-			xml_set_object($this->parser, $this);
-			// disable case-folding for this XML parser
-			xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, 0);
-			// sets the element handler functions for the XML parser
-			xml_set_element_handler($this->parser, 'startSVGElementHandler', 'endSVGElementHandler');
-			// sets the character data handler function for the XML parser
-			xml_set_character_data_handler($this->parser, 'segSVGContentHandler');
-			// start parsing an XML document
-			if(!xml_parse($this->parser, $svgdata)) {
-				$error_message = sprintf("SVG Error: %s at line %d", xml_error_string(xml_get_error_code($this->parser)), xml_get_current_line_number($this->parser));
-				$this->Error($error_message);
-			}
-			// free this XML parser
-			xml_parser_free($this->parser);
-			// restore previous graphic state
-			$this->_out($this->epsmarker.'Q');
-			// restore  graphic vars
-			$this->setGraphicVars($gvars);
-			if (!empty($border)) {
-				$bx = $x;
-				$by = $y;
-				$this->x = $ximg;
-				if ($this->rtl) {
-					$this->x += $w;
-				}
-				$this->y = $y;
-				$this->Cell($w, $h, '', $border, 0, '', 0, '', 0, true);
-				$this->x = $bx;
-				$this->y = $by;
+			//save current Graphic State
+			$this->_out('q');
+			//set clipping area
+			if (!empty($clip_function) AND method_exists($this, $clip_function)) {
+				$bbox = call_user_func_array(array($this, $clip_function), $clip_params);
+				if (is_array($bbox) AND (count($bbox) == 4)) {
+					list($x, $y, $w, $h) = $bbox;
+				}
+			}
+			if ($gradient['mode'] == 'measure') {
+				if (isset($gradient['gradientTransform']) AND !empty($gradient['gradientTransform'])) {
+					$gtm = $gradient['gradientTransform'];
+					// apply transformation matrix
+					$xa = ($gtm[0] * $gradient['coords'][0]) + ($gtm[2] * $gradient['coords'][1]) + $gtm[4];
+					$ya = ($gtm[1] * $gradient['coords'][0]) + ($gtm[3] * $gradient['coords'][1]) + $gtm[5];
+					$xb = ($gtm[0] * $gradient['coords'][2]) + ($gtm[2] * $gradient['coords'][3]) + $gtm[4];
+					$yb = ($gtm[1] * $gradient['coords'][2]) + ($gtm[3] * $gradient['coords'][3]) + $gtm[5];
+					if (isset($gradient['coords'][4])) {
+						$gradient['coords'][4] = sqrt(pow(($gtm[0] * $gradient['coords'][4]), 2) + pow(($gtm[1] * $gradient['coords'][4]), 2));
+					}
+					$gradient['coords'][0] = $xa;
+					$gradient['coords'][1] = $ya;
+					$gradient['coords'][2] = $xb;
+					$gradient['coords'][3] = $yb;
+				}
+				// convert SVG coordinates to user units
+				$gradient['coords'][0] = $this->getHTMLUnitToUnits($gradient['coords'][0], 0, $this->svgunit, false);
+				$gradient['coords'][1] = $this->getHTMLUnitToUnits($gradient['coords'][1], 0, $this->svgunit, false);
+				$gradient['coords'][2] = $this->getHTMLUnitToUnits($gradient['coords'][2], 0, $this->svgunit, false);
+				$gradient['coords'][3] = $this->getHTMLUnitToUnits($gradient['coords'][3], 0, $this->svgunit, false);
+				if (isset($gradient['coords'][4])) {
+					$gradient['coords'][4] = $this->getHTMLUnitToUnits($gradient['coords'][4], 0, $this->svgunit, false);
+				}
+				// shift units
+				if ($gradient['gradientUnits'] == 'objectBoundingBox') {
+					// convert to SVG coordinate system
+					$gradient['coords'][0] += $x;
+					$gradient['coords'][1] += $y;
+					$gradient['coords'][2] += $x;
+					$gradient['coords'][3] += $y;
+				}
+				if ($w <= 0) {
+					$w = 1;
+				}
+				if ($h <= 0) {
+					$h = 1;
+				}
+				// calculate percentages
+				$gradient['coords'][0] = ($gradient['coords'][0] - $x) / $w;
+				$gradient['coords'][1] = ($gradient['coords'][1] - $y) / $h;
+				$gradient['coords'][2] = ($gradient['coords'][2] - $x) / $w;
+				$gradient['coords'][3] = ($gradient['coords'][3] - $y) / $h;
+				if (isset($gradient['coords'][4])) {
+					$gradient['coords'][4] /= $w;
+				}
+			} elseif ($gradient['mode'] == 'percentage') {
+				foreach($gradient['coords'] as $key => $val) {
+					$gradient['coords'][$key] = (intval($val) / 100);
+				}
+			}
+			// fix values
+			foreach($gradient['coords'] as $key => $val) {
+				if ($val < 0) {
+					$gradient['coords'][$key] = 0;
+				} elseif ($val > 1) {
+					$gradient['coords'][$key] = 1;
+				}
+			}
+			if (($gradient['type'] == 2) AND ($gradient['coords'][0] == $gradient['coords'][2]) AND ($gradient['coords'][1] == $gradient['coords'][3])) {
+				// single color (no shading)
+				$gradient['coords'][0] = 1;
+				$gradient['coords'][1] = 0;
+				$gradient['coords'][2] = 0.999;
+				$gradient['coords'][3] = 0;
+			}
+			// swap Y coordinates
+			$tmp = $gradient['coords'][1];
+			$gradient['coords'][1] = $gradient['coords'][3];
+			$gradient['coords'][3] = $tmp;
+			// set transformation map for gradient
+			if ($gradient['type'] == 3) {
+				// gradient is always circular
+				$cy = $this->h - $y - ($gradient['coords'][1] * ($w + $h));
+				$this->_out(sprintf('%.3F 0 0 %.3F %.3F %.3F cm', $w*$this->k, $w*$this->k, $x*$this->k, $cy*$this->k));
+			} else {
+				$this->_out(sprintf('%.3F 0 0 %.3F %.3F %.3F cm', $w*$this->k, $h*$this->k, $x*$this->k, ($this->h-($y+$h))*$this->k));
 			}
-			if ($link) {
-				$this->Link($ximg, $y, $w, $h, $link, 0);
+			if (count($gradient['stops']) > 1) {
+				$this->Gradient($gradient['type'], $gradient['coords'], $gradient['stops'], array(), false);
 			}
-			// set pointer to align the successive text/objects
-			switch($align) {
-				case 'T':{
-					$this->y = $y;
-					$this->x = $this->img_rb_x;
-					break;
-				}
-				case 'M':{
-					$this->y = $y + round($h/2);
-					$this->x = $this->img_rb_x;
-					break;
-				}
-				case 'B':{
-					$this->y = $this->img_rb_y;
-					$this->x = $this->img_rb_x;
-					break;
-				}
-				case 'N':{
-					$this->SetY($this->img_rb_y);
-					break;
-				}
-				default:{
-					break;
-				}
+		} elseif ($svgstyle['fill'] != 'none') {
+			$fill_color = $this->convertHTMLColorToDec($svgstyle['fill']);
+			if ($svgstyle['fill-opacity'] != 1) {
+				$this->SetAlpha($svgstyle['fill-opacity']);
 			}
-			$this->endlinex = $this->img_rb_x;
-			// restore page break
-			$this->SetAutoPageBreak($page_break_mode, $page_break_margin);
-		}
-
-		/**
-		 * Get the tranformation matrix from SVG transform attribute
-		 * @param string transformation
-		 * @return array of transformations
-		 * @author Nicola Asuni
-		 * @since 5.0.000 (2010-05-02)
-		 * @access protected
-		 */
-		protected function getSVGTransformMatrix($attribute) {
-			// identity matrix
-			$tm = array(1, 0, 0, 1, 0, 0);
-			$continue = true;
-			while ($continue) {
-				$continue = false;
-				// matrix
-				$regs = array();
-				if (preg_match('/matrix\(([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)\)/si', $attribute, $regs)) {
-					$attribute = str_replace($regs[0], '', $attribute);
-					$continue = true;
-					$a = $regs[1];
-					$b = $regs[2];
-					$c = $regs[3];
-					$d = $regs[4];
-					$e = $regs[5];
-					$f = $regs[6];
-					$tm = $this->getTransformationMatrixProduct($tm, array($a, $b, $c, $d, $e, $f));
-				}
-				// translate x
-				$regs = array();
-				if (preg_match('/translate\(([a-z0-9\-\.]+)\)/si', $attribute, $regs)) {
-					$attribute = str_replace($regs[0], 'translate('.$regs[1].',0)', $attribute);
-					$continue = true;
-				}
-				// translate x,y
-				$regs = array();
-				if (preg_match('/translate\(([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)\)/si', $attribute, $regs)) {
-					$attribute = str_replace($regs[0], '', $attribute);
-					$continue = true;
-					$e = $regs[1];
-					$f = $regs[2];
-					$tm = $this->getTransformationMatrixProduct($tm, array(1, 0, 0, 1, $e, $f));
-				}
-				// scale x
-				$regs = array();
-				if (preg_match('/scale\(([a-z0-9\-\.]+)\)/si', $attribute, $regs)) {
-					$attribute = str_replace($regs[0], 'scale('.$regs[1].','.$regs[1].')', $attribute);
-					$continue = true;
-				}
-				// scale x,y
-				$regs = array();
-				if (preg_match('/scale\(([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)\)/si', $attribute, $regs)) {
-					$attribute = str_replace($regs[0], '', $attribute);
-					$continue = true;
-					$a = $regs[1];
-					if (isset($regs[2]) AND (strlen(trim($regs[2])) > 0)) {
-						$d = $regs[2];
-					} else {
-						$d = $a;
-					}
-					$tm = $this->getTransformationMatrixProduct($tm, array($a, 0, 0, $d, 0, 0));
-				}
-				// rotate ang
-				$regs = array();
-				if (preg_match('/rotate\(([a-z0-9\-\.]+)\)/si', $attribute, $regs)) {
-					$attribute = str_replace($regs[0], 'rotate('.$regs[1].',0,0)', $attribute);
-					$continue = true;
-				}
-				// rotate ang,x,y
-				$regs = array();
-				if (preg_match('/rotate\(([0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)[\,\s]+([a-z0-9\-\.]+)\)/si', $attribute, $regs)) {
-					$attribute = str_replace($regs[0], '', $attribute);
-					$continue = true;
-					$ang = deg2rad($regs[1]);
-					$a = cos($ang);
-					$b = sin($ang);
-					$c = -$b;
-					$d = $a;
-					$x = $regs[2];
-					$y = $regs[3];
-					$e = ($x * (1 - $a)) - ($y * $c);
-					$f = ($y * (1 - $d)) - ($x * $b);
-					$tm = $this->getTransformationMatrixProduct($tm, array($a, $b, $c, $d, $e, $f));
-				}
-				// skewX
-				$regs = array();
-				if (preg_match('/skewX\(([0-9\-\.]+)\)/si', $attribute, $regs)) {
-					$attribute = str_replace($regs[0], '', $attribute);
-					$continue = true;
-					$c = tan(deg2rad($regs[1]));
-					$tm = $this->getTransformationMatrixProduct($tm, array(1, 0, $c, 1, 0, 0));
-				}
-				// skewY
-				$regs = array();
-				if (preg_match('/skewY\(([0-9\-\.]+)\)/si', $attribute, $regs)) {
-					$attribute = str_replace($regs[0], '', $attribute);
-					$continue = true;
-					$b = tan(deg2rad($regs[1]));
-					$tm = $this->getTransformationMatrixProduct($tm, array(1, $b, 0, 1, 0, 0));
-				}
-			}
-			return $tm;
-		}
-
-		/**
-		 * Get the product of two SVG tranformation matrices
-		 * @param array $ta first SVG tranformation matrix
-		 * @param array $tb second SVG tranformation matrix
-		 * @return transformation array
-		 * @author Nicola Asuni
-		 * @since 5.0.000 (2010-05-02)
-		 * @access protected
-		 */
-		protected function getTransformationMatrixProduct($ta, $tb)  {
-			$tm = array();
-			$tm[0] = ($ta[0] * $tb[0]) + ($ta[2] * $tb[1]);
-			$tm[1] = ($ta[1] * $tb[0]) + ($ta[3] * $tb[1]);
-			$tm[2] = ($ta[0] * $tb[2]) + ($ta[2] * $tb[3]);
-			$tm[3] = ($ta[1] * $tb[2]) + ($ta[3] * $tb[3]);
-			$tm[4] = ($ta[0] * $tb[4]) + ($ta[2] * $tb[5]) + $ta[4];
-			$tm[5] = ($ta[1] * $tb[4]) + ($ta[3] * $tb[5]) + $ta[5];
-			return $tm;
-		}
-
-		/**
-		 * Convert SVG transformation matrix to PDF.
-		 * @param array $tm original SVG transformation matrix
-		 * @return array transformation matrix
-		 * @access protected
-		 * @since 5.0.000 (2010-05-02)
-		 */
-		protected function convertSVGtMatrix($tm) {
-			$a = $tm[0];
-			$b = -$tm[1];
-			$c = -$tm[2];
-			$d = $tm[3];
-			$e = $this->getHTMLUnitToUnits($tm[4], 1, $this->svgunit, false) * $this->k;
-			$f = -$this->getHTMLUnitToUnits($tm[5], 1, $this->svgunit, false) * $this->k;
-			$x = 0;
-			$y = $this->h * $this->k;
-			$e = ($x * (1 - $a)) - ($y * $c) + $e;
-			$f = ($y * (1 - $d)) - ($x * $b) + $f;
-			return array($a, $b, $c, $d, $e, $f);
-		}
-
-		/**
-		 * Apply SVG graphic transformation matrix.
-		 * @param array $tm original SVG transformation matrix
-		 * @access protected
-		 * @since 5.0.000 (2010-05-02)
-		 */
-		protected function SVGTransform($tm) {
-			$this->Transform($this->convertSVGtMatrix($tm));
-		}
-
-		/**
-		 * Apply the requested SVG styles (*** TO BE COMPLETED ***)
-		 * @param array $svgstyle array of SVG styles to apply
-		 * @param array $prevsvgstyle array of previous SVG style
-		 * @param int $x X origin of the bounding box
-		 * @param int $y Y origin of the bounding box
-		 * @param int $w width of the bounding box
-		 * @param int $h height of the bounding box
-		 * @param string $clip_function clip function
-		 * @param array $clip_params array of parameters for clipping function
-		 * @return object style
-		 * @author Nicola Asuni
-		 * @since 5.0.000 (2010-05-02)
-		 * @access protected
-		 */
-		protected function setSVGStyles($svgstyle, $prevsvgstyle, $x=0, $y=0, $w=1, $h=1, $clip_function='', $clip_params=array())  {
-			$objstyle = '';
-			if(!isset($svgstyle['opacity'])) {
-				return $objstyle;
-			}
-			// clip-path
-			$regs = array();
-			if (preg_match('/url\([\s]*\#([^\)]*)\)/si', $svgstyle['clip-path'], $regs)) {
-				$clip_path = $this->svgclippaths[$regs[1]];
-				foreach ($clip_path as $cp) {
-					$this->startSVGElementHandler('clip-path', $cp['name'], $cp['attribs']);
-				}
-			}
-			// opacity
-			if ($svgstyle['opacity'] != 1) {
-				$this->SetAlpha($svgstyle['opacity']);
-			}
-			// color
-			$fill_color = $this->convertHTMLColorToDec($svgstyle['color']);
 			$this->SetFillColorArray($fill_color);
-			// text color
-			$text_color = $this->convertHTMLColorToDec($svgstyle['text-color']);
-			$this->SetTextColorArray($text_color);
-			// clip
-			if (preg_match('/rect\(([a-z0-9\-\.]*)[\s]*([a-z0-9\-\.]*)[\s]*([a-z0-9\-\.]*)[\s]*([a-z0-9\-\.]*)\)/si', $svgstyle['clip'], $regs)) {
-				$top = (isset($regs[1])?$this->getHTMLUnitToUnits($regs[1], 0, $this->svgunit, false):0);
-				$right = (isset($regs[2])?$this->getHTMLUnitToUnits($regs[2], 0, $this->svgunit, false):0);
-				$bottom = (isset($regs[3])?$this->getHTMLUnitToUnits($regs[3], 0, $this->svgunit, false):0);
-				$left = (isset($regs[4])?$this->getHTMLUnitToUnits($regs[4], 0, $this->svgunit, false):0);
-				$cx = $x + $left;
-				$cy = $y + $top;
-				$cw = $w - $left - $right;
-				$ch = $h - $top - $bottom;
-				if ($svgstyle['clip-rule'] == 'evenodd') {
-					$clip_rule = 'CNZ';
-				} else {
-					$clip_rule = 'CEO';
-				}
-				$this->Rect($cx, $cy, $cw, $ch, $clip_rule, array(), array());
-			}
-			// fill
-			$regs = array();
-			if (preg_match('/url\([\s]*\#([^\)]*)\)/si', $svgstyle['fill'], $regs)) {
-				// gradient
-				$gradient = $this->svggradients[$regs[1]];
-				if (isset($gradient['xref'])) {
-					// reference to another gradient definition
-					$newgradient = $this->svggradients[$gradient['xref']];
-					$newgradient['coords'] = $gradient['coords'];
-					$newgradient['mode'] = $gradient['mode'];
-					$newgradient['gradientUnits'] = $gradient['gradientUnits'];
-					if (isset($gradient['gradientTransform'])) {
-						$newgradient['gradientTransform'] = $gradient['gradientTransform'];
-					}
-					$gradient = $newgradient;
-				}
-				//save current Graphic State
-				$this->_out('q');
-				//set clipping area
-				if (!empty($clip_function) AND method_exists($this, $clip_function)) {
-					$bbox = call_user_func_array(array($this, $clip_function), $clip_params);
-					if (is_array($bbox) AND (count($bbox) == 4)) {
-						list($x, $y, $w, $h) = $bbox;
-					}
-				}
-				if ($gradient['mode'] == 'measure') {
-					if (isset($gradient['gradientTransform']) AND !empty($gradient['gradientTransform'])) {
-						$gtm = $gradient['gradientTransform'];
-						// apply transformation matrix
-						$xa = ($gtm[0] * $gradient['coords'][0]) + ($gtm[2] * $gradient['coords'][1]) + $gtm[4];
-						$ya = ($gtm[1] * $gradient['coords'][0]) + ($gtm[3] * $gradient['coords'][1]) + $gtm[5];
-						$xb = ($gtm[0] * $gradient['coords'][2]) + ($gtm[2] * $gradient['coords'][3]) + $gtm[4];
-						$yb = ($gtm[1] * $gradient['coords'][2]) + ($gtm[3] * $gradient['coords'][3]) + $gtm[5];
-						if (isset($gradient['coords'][4])) {
-							$gradient['coords'][4] = sqrt(pow(($gtm[0] * $gradient['coords'][4]), 2) + pow(($gtm[1] * $gradient['coords'][4]), 2));
-						}
-						$gradient['coords'][0] = $xa;
-						$gradient['coords'][1] = $ya;
-						$gradient['coords'][2] = $xb;
-						$gradient['coords'][3] = $yb;
-
-					}
-					// convert SVG coordinates to user units
-					$gradient['coords'][0] = $this->getHTMLUnitToUnits($gradient['coords'][0], 0, $this->svgunit, false);
-					$gradient['coords'][1] = $this->getHTMLUnitToUnits($gradient['coords'][1], 0, $this->svgunit, false);
-					$gradient['coords'][2] = $this->getHTMLUnitToUnits($gradient['coords'][2], 0, $this->svgunit, false);
-					$gradient['coords'][3] = $this->getHTMLUnitToUnits($gradient['coords'][3], 0, $this->svgunit, false);
-					if (isset($gradient['coords'][4])) {
-						$gradient['coords'][4] = $this->getHTMLUnitToUnits($gradient['coords'][4], 0, $this->svgunit, false);
-					}
-					// shift units
-					if ($gradient['gradientUnits'] == 'objectBoundingBox') {
-						// convert to SVG coordinate system
-						$gradient['coords'][0] += $x;
-						$gradient['coords'][1] += $y;
-						$gradient['coords'][2] += $x;
-						$gradient['coords'][3] += $y;
-					}
-					// calculate percentages
-					$gradient['coords'][0] = ($gradient['coords'][0] - $x) / $w;
-					$gradient['coords'][1] = ($gradient['coords'][1] - $y) / $h;
-					$gradient['coords'][2] = ($gradient['coords'][2] - $x) / $w;
-					$gradient['coords'][3] = ($gradient['coords'][3] - $y) / $h;
-					if (isset($gradient['coords'][4])) {
-						$gradient['coords'][4] /= $w;
-					}
-					// fix values
-					foreach($gradient['coords'] as $key => $val) {
-						if ($val < 0) {
-							$gradient['coords'][$key] = 0;
-						} elseif ($val > 1) {
-							$gradient['coords'][$key] = 1;
-						}
-					}
-					if (($gradient['type'] == 2) AND ($gradient['coords'][0] == $gradient['coords'][2]) AND ($gradient['coords'][1] == $gradient['coords'][3])) {
-						// single color (no shading)
-						$gradient['coords'][0] = 1;
-						$gradient['coords'][1] = 0;
-						$gradient['coords'][2] = 0.999;
-						$gradient['coords'][3] = 0;
-					}
-				}
-				// swap Y coordinates
-				$tmp = $gradient['coords'][1];
-				$gradient['coords'][1] = $gradient['coords'][3];
-				$gradient['coords'][3] = $tmp;
-				// set transformation map for gradient
-				if (($gradient['type'] == 3) AND ($gradient['mode'] == 'measure')) {
-					// gradient is always circular
-					$cy = $this->h - $y - ($gradient['coords'][1] * ($w + $h));
-					$this->_out(sprintf('%.3F 0 0 %.3F %.3F %.3F cm', $w*$this->k, $w*$this->k, $x*$this->k, $cy*$this->k));
-				} else {
-					$this->_out(sprintf('%.3F 0 0 %.3F %.3F %.3F cm', $w*$this->k, $h*$this->k, $x*$this->k, ($this->h-($y+$h))*$this->k));
-				}
-				if (count($gradient['stops']) > 1) {
-					$this->Gradient($gradient['type'], $gradient['coords'], $gradient['stops'], array(), false);
-				}
-			} elseif ($svgstyle['fill'] != 'none') {
-				$fill_color = $this->convertHTMLColorToDec($svgstyle['fill']);
-				if ($svgstyle['fill-opacity'] != 1) {
-					$this->SetAlpha($svgstyle['fill-opacity']);
-				}
-				$this->SetFillColorArray($fill_color);
-				if ($svgstyle['fill-rule'] == 'evenodd') {
-					$objstyle .= 'F*';
-				} else {
-					$objstyle .= 'F';
-				}
-			}
-			// stroke
-			if ($svgstyle['stroke'] != 'none') {
-				$stroke_style = array(
-					'color' => $this->convertHTMLColorToDec($svgstyle['stroke']),
-					'width' => $this->getHTMLUnitToUnits($svgstyle['stroke-width'], 0, $this->svgunit, false),
-					'cap' => $svgstyle['stroke-linecap'],
-					'join' => $svgstyle['stroke-linejoin']
-					);
-				if (isset($svgstyle['stroke-dasharray']) AND !empty($svgstyle['stroke-dasharray']) AND ($svgstyle['stroke-dasharray'] != 'none')) {
-					$stroke_style['dash'] = $svgstyle['stroke-dasharray'];
-				}
-				$this->SetLineStyle($stroke_style);
-				$objstyle .= 'D';
-			}
-			// font
-			$regs = array();
-			if (!empty($svgstyle['font'])) {
-				if (preg_match('/font-family[\s]*:[\s]*([^\s\;\"]*)/si', $svgstyle['font'], $regs)) {
-					$font_family = trim($regs[1]);
-				} else {
-					$font_family = $svgstyle['font-family'];
-				}
-				if (preg_match('/font-size[\s]*:[\s]*([^\s\;\"]*)/si', $svgstyle['font'], $regs)) {
-					$font_size = trim($regs[1]);
-				} else {
-					$font_size = $svgstyle['font-size'];
-				}
-				if (preg_match('/font-style[\s]*:[\s]*([^\s\;\"]*)/si', $svgstyle['font'], $regs)) {
-					$font_style = trim($regs[1]);
-				} else {
-					$font_style = $svgstyle['font-style'];
-				}
-				if (preg_match('/font-weight[\s]*:[\s]*([^\s\;\"]*)/si', $svgstyle['font'], $regs)) {
-					$font_weight = trim($regs[1]);
-				} else {
-					$font_weight = $svgstyle['font-weight'];
-				}
+			if ($svgstyle['fill-rule'] == 'evenodd') {
+				$objstyle .= 'F*';
+			} else {
+				$objstyle .= 'F';
+			}
+		}
+		// stroke
+		if ($svgstyle['stroke'] != 'none') {
+			$stroke_style = array(
+				'color' => $this->convertHTMLColorToDec($svgstyle['stroke']),
+				'width' => $this->getHTMLUnitToUnits($svgstyle['stroke-width'], 0, $this->svgunit, false),
+				'cap' => $svgstyle['stroke-linecap'],
+				'join' => $svgstyle['stroke-linejoin']
+				);
+			if (isset($svgstyle['stroke-dasharray']) AND !empty($svgstyle['stroke-dasharray']) AND ($svgstyle['stroke-dasharray'] != 'none')) {
+				$stroke_style['dash'] = $svgstyle['stroke-dasharray'];
+			}
+			$this->SetLineStyle($stroke_style);
+			$objstyle .= 'D';
+		}
+		// font
+		$regs = array();
+		if (!empty($svgstyle['font'])) {
+			if (preg_match('/font-family[\s]*:[\s]*([^\;\"]*)/si', $svgstyle['font'], $regs)) {
+				$font_family = $this->getFontFamilyName($regs[1]);
 			} else {
 				$font_family = $svgstyle['font-family'];
+			}
+			if (preg_match('/font-size[\s]*:[\s]*([^\s\;\"]*)/si', $svgstyle['font'], $regs)) {
+				$font_size = trim($regs[1]);
+			} else {
 				$font_size = $svgstyle['font-size'];
+			}
+			if (preg_match('/font-style[\s]*:[\s]*([^\s\;\"]*)/si', $svgstyle['font'], $regs)) {
+				$font_style = trim($regs[1]);
+			} else {
 				$font_style = $svgstyle['font-style'];
+			}
+			if (preg_match('/font-weight[\s]*:[\s]*([^\s\;\"]*)/si', $svgstyle['font'], $regs)) {
+				$font_weight = trim($regs[1]);
+			} else {
 				$font_weight = $svgstyle['font-weight'];
 			}
-			$font_size = $this->getHTMLUnitToUnits($font_size, $prevsvgstyle['font-size'], $this->svgunit, false) * $this->k;
-			switch ($font_style) {
-				case 'italic': {
-					$font_style = 'I';
-					break;
-				}
-				case 'oblique': {
-					$font_style = 'I';
-					break;
-				}
-				default:
-				case 'normal': {
-					$font_style = '';
-					break;
-				}
+			if (preg_match('/font-stretch[\s]*:[\s]*([^\s\;\"]*)/si', $svgstyle['font'], $regs)) {
+				$font_stretch = trim($regs[1]);
+			} else {
+				$font_stretch = $svgstyle['font-stretch'];
 			}
-			switch ($font_weight) {
-				case 'bold':
-				case 'bolder': {
-					$font_style .= 'B';
-					break;
-				}
+			if (preg_match('/letter-spacing[\s]*:[\s]*([^\s\;\"]*)/si', $svgstyle['font'], $regs)) {
+				$font_spacing = trim($regs[1]);
+			} else {
+				$font_spacing = $svgstyle['letter-spacing'];
 			}
-			switch ($svgstyle['text-decoration']) {
-				case 'underline': {
-					$font_style .= 'U';
-					break;
-				}
-				case 'overline': {
-					$font_style .= 'O';
-					break;
-				}
-				case 'line-through': {
-					$font_style .= 'D';
-					break;
-				}
-				default:
-				case 'none': {
-					break;
-				}
+		} else {
+			$font_family = $this->getFontFamilyName($svgstyle['font-family']);
+			$font_size = $svgstyle['font-size'];
+			$font_style = $svgstyle['font-style'];
+			$font_weight = $svgstyle['font-weight'];
+			$font_stretch = $svgstyle['font-stretch'];
+			$font_spacing = $svgstyle['letter-spacing'];
+		}
+		$font_size = $this->getHTMLUnitToUnits($font_size, $prevsvgstyle['font-size'], $this->svgunit, false) * $this->k;
+		$font_stretch = $this->getCSSFontStretching($font_stretch, $svgstyle['font-stretch']);
+		$font_spacing = $this->getCSSFontSpacing($font_spacing, $svgstyle['letter-spacing']);
+		switch ($font_style) {
+			case 'italic': {
+				$font_style = 'I';
+				break;
+			}
+			case 'oblique': {
+				$font_style = 'I';
+				break;
+			}
+			default:
+			case 'normal': {
+				$font_style = '';
+				break;
 			}
-			$this->SetFont($font_family, $font_style, $font_size);
-			return $objstyle;
 		}
-
-		/**
-		 * Draws an SVG path
-		 * @param string $d attribute d of the path SVG element
-		 * @param string $style Style of rendering. Possible values are:
-		 * <ul>
-		 *	 <li>D or empty string: Draw (default).</li>
-		 *	 <li>F: Fill.</li>
-		 *	 <li>F*: Fill using the even-odd rule to determine which regions lie inside the clipping path.</li>
-		 *	 <li>DF or FD: Draw and fill.</li>
-		 *	 <li>DF* or FD*: Draw and fill using the even-odd rule to determine which regions lie inside the clipping path.</li>
-		 *	 <li>CNZ: Clipping mode (using the even-odd rule to determine which regions lie inside the clipping path).</li>
-		 *	 <li>CEO: Clipping mode (using the nonzero winding number rule to determine which regions lie inside the clipping path).</li>
-		 * </ul>
-		 * @return array of container box measures (x, y, w, h)
-		 * @author Nicola Asuni
-		 * @since 5.0.000 (2010-05-02)
-		 * @access protected
-		 */
-		protected function SVGPath($d, $style='') {
-			// set fill/stroke style
-			$op = $this->getPathPaintOperator($style, '');
-			if (empty($op)) {
-				return;
+		switch ($font_weight) {
+			case 'bold':
+			case 'bolder': {
+				$font_style .= 'B';
+				break;
 			}
-			$paths = array();
-			preg_match_all('/([a-zA-Z])[\s]*([^a-zA-Z\"]*)/si', $d, $paths, PREG_SET_ORDER);
-			$x = 0;
-			$y = 0;
-			$x1 = 0;
-			$y1 = 0;
-			$x2 = 0;
-			$y2 = 0;
-			$xmin = 2147483647;
-			$xmax = 0;
-			$ymin = 2147483647;
-			$ymax = 0;
-			$relcoord = false;
-			// draw curve pieces
-			foreach ($paths as $key => $val) {
-				// get curve type
-				$cmd = trim($val[1]);
-				if (strtolower($cmd) == $cmd) {
-					// use relative coordinated instead of absolute
-					$relcoord = true;
-					$xoffset = $x;
-					$yoffset = $y;
-				} else {
-					$relcoord = false;
-					$xoffset = 0;
-					$yoffset = 0;
-				}
+		}
+		switch ($svgstyle['text-decoration']) {
+			case 'underline': {
+				$font_style .= 'U';
+				break;
+			}
+			case 'overline': {
+				$font_style .= 'O';
+				break;
+			}
+			case 'line-through': {
+				$font_style .= 'D';
+				break;
+			}
+			default:
+			case 'none': {
+				break;
+			}
+		}
+		$this->SetFont($font_family, $font_style, $font_size);
+		$this->setFontStretching($font_stretch);
+		$this->setFontSpacing($font_spacing);
+		return $objstyle;
+	}
+
+	/**
+	 * Draws an SVG path
+	 * @param $d (string) attribute d of the path SVG element
+	 * @param $style (string) Style of rendering. Possible values are:
+	 * <ul>
+	 *	 <li>D or empty string: Draw (default).</li>
+	 *	 <li>F: Fill.</li>
+	 *	 <li>F*: Fill using the even-odd rule to determine which regions lie inside the clipping path.</li>
+	 *	 <li>DF or FD: Draw and fill.</li>
+	 *	 <li>DF* or FD*: Draw and fill using the even-odd rule to determine which regions lie inside the clipping path.</li>
+	 *	 <li>CNZ: Clipping mode (using the even-odd rule to determine which regions lie inside the clipping path).</li>
+	 *	 <li>CEO: Clipping mode (using the nonzero winding number rule to determine which regions lie inside the clipping path).</li>
+	 * </ul>
+	 * @return array of container box measures (x, y, w, h)
+	 * @author Nicola Asuni
+	 * @since 5.0.000 (2010-05-02)
+	 * @protected
+	 */
+	protected function SVGPath($d, $style='') {
+		// set fill/stroke style
+		$op = $this->getPathPaintOperator($style, '');
+		if (empty($op)) {
+			return;
+		}
+		$paths = array();
+		$d = preg_replace('/([0-9ACHLMQSTVZ])([\-\+])/si', '\\1 \\2', $d);
+		preg_match_all('/([ACHLMQSTVZ])[\s]*([^ACHLMQSTVZ\"]*)/si', $d, $paths, PREG_SET_ORDER);
+		$x = 0;
+		$y = 0;
+		$x1 = 0;
+		$y1 = 0;
+		$x2 = 0;
+		$y2 = 0;
+		$xmin = 2147483647;
+		$xmax = 0;
+		$ymin = 2147483647;
+		$ymax = 0;
+		$relcoord = false;
+		// draw curve pieces
+		foreach ($paths as $key => $val) {
+			// get curve type
+			$cmd = trim($val[1]);
+			if (strtolower($cmd) == $cmd) {
+				// use relative coordinated instead of absolute
+				$relcoord = true;
+				$xoffset = $x;
+				$yoffset = $y;
+			} else {
+				$relcoord = false;
+				$xoffset = 0;
+				$yoffset = 0;
+			}
+			$params = array();
+			if (isset($val[2])) {
+				// get curve parameters
+				$rawparams = preg_split('/([\,\s]+)/si', trim($val[2]));
 				$params = array();
-				if (isset($val[2])) {
-					// get curve parameters
-					$rawparams = preg_split('/([\,\s]+)/si', trim($val[2]));
-					$params = array();
-					foreach ($rawparams as $ck => $cp) {
-						$params[$ck] = $this->getHTMLUnitToUnits($cp, 0, $this->svgunit, false);
-					}
-				}
-				switch (strtoupper($cmd)) {
-					case 'M': { // moveto
-						foreach ($params as $ck => $cp) {
-							if (($ck % 2) == 0) {
-								$x = $cp + $xoffset;
-							} else {
-								$y = $cp + $yoffset;
-								if ($ck == 1) {
-									$this->_outPoint($x, $y);
-								} else {
-									$this->_outLine($x, $y);
-								}
-								$xmin = min($xmin, $x);
-								$ymin = min($ymin, $y);
-								$xmax = max($xmax, $x);
-								$ymax = max($ymax, $y);
-								if ($relcoord) {
-									$xoffset = $x;
-									$yoffset = $y;
-								}
-							}
-						}
-						break;
-					}
-					case 'L': { // lineto
-						foreach ($params as $ck => $cp) {
-							if (($ck % 2) == 0) {
-								$x = $cp + $xoffset;
+				foreach ($rawparams as $ck => $cp) {
+					$params[$ck] = $this->getHTMLUnitToUnits($cp, 0, $this->svgunit, false);
+				}
+			}
+			switch (strtoupper($cmd)) {
+				case 'M': { // moveto
+					foreach ($params as $ck => $cp) {
+						if (($ck % 2) == 0) {
+							$x = $cp + $xoffset;
+						} else {
+							$y = $cp + $yoffset;
+							if ($ck == 1) {
+								$this->_outPoint($x, $y);
 							} else {
-								$y = $cp + $yoffset;
 								$this->_outLine($x, $y);
-								$xmin = min($xmin, $x);
-								$ymin = min($ymin, $y);
-								$xmax = max($xmax, $x);
-								$ymax = max($ymax, $y);
-								if ($relcoord) {
-									$xoffset = $x;
-									$yoffset = $y;
-								}
 							}
-						}
-						break;
-					}
-					case 'H': { // horizontal lineto
-						foreach ($params as $ck => $cp) {
-							$x = $cp + $xoffset;
-							$this->_outLine($x, $y);
 							$xmin = min($xmin, $x);
+							$ymin = min($ymin, $y);
 							$xmax = max($xmax, $x);
+							$ymax = max($ymax, $y);
 							if ($relcoord) {
 								$xoffset = $x;
+								$yoffset = $y;
 							}
 						}
-						break;
 					}
-					case 'V': { // vertical lineto
-						foreach ($params as $ck => $cp) {
+					break;
+				}
+				case 'L': { // lineto
+					foreach ($params as $ck => $cp) {
+						if (($ck % 2) == 0) {
+							$x = $cp + $xoffset;
+						} else {
 							$y = $cp + $yoffset;
 							$this->_outLine($x, $y);
+							$xmin = min($xmin, $x);
 							$ymin = min($ymin, $y);
+							$xmax = max($xmax, $x);
 							$ymax = max($ymax, $y);
 							if ($relcoord) {
+								$xoffset = $x;
 								$yoffset = $y;
 							}
 						}
-						break;
 					}
-					case 'C': { // curveto
-						foreach ($params as $ck => $cp) {
-							$params[$ck] = $cp;
-							if ((($ck + 1) % 6) == 0) {
-								$x1 = $params[($ck - 5)] + $xoffset;
-								$y1 = $params[($ck - 4)] + $yoffset;
-								$x2 = $params[($ck - 3)] + $xoffset;
-								$y2 = $params[($ck - 2)] + $yoffset;
-								$x = $params[($ck - 1)] + $xoffset;
-								$y = $params[($ck)] + $yoffset;
-								$this->_outCurve($x1, $y1, $x2, $y2, $x, $y);
-								$xmin = min($xmin, $x, $x1, $x2);
-								$ymin = min($ymin, $y, $y1, $y2);
-								$xmax = max($xmax, $x, $x1, $x2);
-								$ymax = max($ymax, $y, $y1, $y2);
-								if ($relcoord) {
-									$xoffset = $x;
-									$yoffset = $y;
-								}
+					break;
+				}
+				case 'H': { // horizontal lineto
+					foreach ($params as $ck => $cp) {
+						$x = $cp + $xoffset;
+						$this->_outLine($x, $y);
+						$xmin = min($xmin, $x);
+						$xmax = max($xmax, $x);
+						if ($relcoord) {
+							$xoffset = $x;
+						}
+					}
+					break;
+				}
+				case 'V': { // vertical lineto
+					foreach ($params as $ck => $cp) {
+						$y = $cp + $yoffset;
+						$this->_outLine($x, $y);
+						$ymin = min($ymin, $y);
+						$ymax = max($ymax, $y);
+						if ($relcoord) {
+							$yoffset = $y;
+						}
+					}
+					break;
+				}
+				case 'C': { // curveto
+					foreach ($params as $ck => $cp) {
+						$params[$ck] = $cp;
+						if ((($ck + 1) % 6) == 0) {
+							$x1 = $params[($ck - 5)] + $xoffset;
+							$y1 = $params[($ck - 4)] + $yoffset;
+							$x2 = $params[($ck - 3)] + $xoffset;
+							$y2 = $params[($ck - 2)] + $yoffset;
+							$x = $params[($ck - 1)] + $xoffset;
+							$y = $params[($ck)] + $yoffset;
+							$this->_outCurve($x1, $y1, $x2, $y2, $x, $y);
+							$xmin = min($xmin, $x, $x1, $x2);
+							$ymin = min($ymin, $y, $y1, $y2);
+							$xmax = max($xmax, $x, $x1, $x2);
+							$ymax = max($ymax, $y, $y1, $y2);
+							if ($relcoord) {
+								$xoffset = $x;
+								$yoffset = $y;
 							}
 						}
-						break;
 					}
-					case 'S': { // shorthand/smooth curveto
-						foreach ($params as $ck => $cp) {
-							$params[$ck] = $cp;
-							if ((($ck + 1) % 4) == 0) {
-								if (($key > 0) AND ((strtoupper($paths[($key - 1)][1]) == 'C') OR (strtoupper($paths[($key - 1)][1]) == 'S'))) {
-									$x1 = (2 * $x) - $x2;
-									$y1 = (2 * $y) - $y2;
-								} else {
-									$x1 = $x;
-									$y1 = $y;
-								}
-								$x2 = $params[($ck - 3)] + $xoffset;
-								$y2 = $params[($ck - 2)] + $yoffset;
-								$x = $params[($ck - 1)] + $xoffset;
-								$y = $params[($ck)] + $yoffset;
-								$this->_outCurve($x1, $y1, $x2, $y2, $x, $y);
-								$xmin = min($xmin, $x, $x1, $x2);
-								$ymin = min($ymin, $y, $y1, $y2);
-								$xmax = max($xmax, $x, $x1, $x2);
-								$ymax = max($ymax, $y, $y1, $y2);
-								if ($relcoord) {
-									$xoffset = $x;
-									$yoffset = $y;
-								}
+					break;
+				}
+				case 'S': { // shorthand/smooth curveto
+					foreach ($params as $ck => $cp) {
+						$params[$ck] = $cp;
+						if ((($ck + 1) % 4) == 0) {
+							if (($key > 0) AND ((strtoupper($paths[($key - 1)][1]) == 'C') OR (strtoupper($paths[($key - 1)][1]) == 'S'))) {
+								$x1 = (2 * $x) - $x2;
+								$y1 = (2 * $y) - $y2;
+							} else {
+								$x1 = $x;
+								$y1 = $y;
+							}
+							$x2 = $params[($ck - 3)] + $xoffset;
+							$y2 = $params[($ck - 2)] + $yoffset;
+							$x = $params[($ck - 1)] + $xoffset;
+							$y = $params[($ck)] + $yoffset;
+							$this->_outCurve($x1, $y1, $x2, $y2, $x, $y);
+							$xmin = min($xmin, $x, $x1, $x2);
+							$ymin = min($ymin, $y, $y1, $y2);
+							$xmax = max($xmax, $x, $x1, $x2);
+							$ymax = max($ymax, $y, $y1, $y2);
+							if ($relcoord) {
+								$xoffset = $x;
+								$yoffset = $y;
 							}
 						}
-						break;
 					}
-					case 'Q': { // quadratic B�zier curveto
-						foreach ($params as $ck => $cp) {
-							$params[$ck] = $cp;
-							if ((($ck + 1) % 4) == 0) {
-								// convert quadratic points to cubic points
-								$x1 = $params[($ck - 3)] + $xoffset;
-								$y1 = $params[($ck - 2)] + $yoffset;
-								$xa = ($x + (2 * $x1)) / 3;
-								$ya = ($y + (2 * $y1)) / 3;
-								$x = $params[($ck - 1)] + $xoffset;
-								$y = $params[($ck)] + $yoffset;
-								$xb = ($x + (2 * $x1)) / 3;
-								$yb = ($y + (2 * $y1)) / 3;
-								$this->_outCurve($xa, $ya, $xb, $yb, $x, $y);
-								$xmin = min($xmin, $x, $xa, $xb);
-								$ymin = min($ymin, $y, $ya, $yb);
-								$xmax = max($xmax, $x, $xa, $xb);
-								$ymax = max($ymax, $y, $ya, $yb);
-								if ($relcoord) {
-									$xoffset = $x;
-									$yoffset = $y;
-								}
+					break;
+				}
+				case 'Q': { // quadratic Bézier curveto
+					foreach ($params as $ck => $cp) {
+						$params[$ck] = $cp;
+						if ((($ck + 1) % 4) == 0) {
+							// convert quadratic points to cubic points
+							$x1 = $params[($ck - 3)] + $xoffset;
+							$y1 = $params[($ck - 2)] + $yoffset;
+							$xa = ($x + (2 * $x1)) / 3;
+							$ya = ($y + (2 * $y1)) / 3;
+							$x = $params[($ck - 1)] + $xoffset;
+							$y = $params[($ck)] + $yoffset;
+							$xb = ($x + (2 * $x1)) / 3;
+							$yb = ($y + (2 * $y1)) / 3;
+							$this->_outCurve($xa, $ya, $xb, $yb, $x, $y);
+							$xmin = min($xmin, $x, $xa, $xb);
+							$ymin = min($ymin, $y, $ya, $yb);
+							$xmax = max($xmax, $x, $xa, $xb);
+							$ymax = max($ymax, $y, $ya, $yb);
+							if ($relcoord) {
+								$xoffset = $x;
+								$yoffset = $y;
 							}
 						}
-						break;
 					}
-					case 'T': { // shorthand/smooth quadratic B�zier curveto
-						foreach ($params as $ck => $cp) {
-							$params[$ck] = $cp;
-							if (($ck % 2) != 0) {
-								if (($key > 0) AND ((strtoupper($paths[($key - 1)][1]) == 'Q') OR (strtoupper($paths[($key - 1)][1]) == 'T'))) {
-									$x1 = (2 * $x) - $x1;
-									$y1 = (2 * $y) - $y1;
-								} else {
-									$x1 = $x;
-									$y1 = $y;
-								}
-								// convert quadratic points to cubic points
-								$xa = ($x + (2 * $x1)) / 3;
-								$ya = ($y + (2 * $y1)) / 3;
-								$x = $params[($ck - 1)] + $xoffset;
-								$y = $params[($ck)] + $yoffset;
-								$xb = ($x + (2 * $x1)) / 3;
-								$yb = ($y + (2 * $y1)) / 3;
-								$this->_outCurve($xa, $ya, $xb, $yb, $x, $y);
-								$xmin = min($xmin, $x, $x1, $x2);
-								$ymin = min($ymin, $y, $y1, $y2);
-								$xmax = max($xmax, $x, $x1, $x2);
-								$ymax = max($ymax, $y, $y1, $y2);
-								if ($relcoord) {
-									$xoffset = $x;
-									$yoffset = $y;
-								}
+					break;
+				}
+				case 'T': { // shorthand/smooth quadratic Bézier curveto
+					foreach ($params as $ck => $cp) {
+						$params[$ck] = $cp;
+						if (($ck % 2) != 0) {
+							if (($key > 0) AND ((strtoupper($paths[($key - 1)][1]) == 'Q') OR (strtoupper($paths[($key - 1)][1]) == 'T'))) {
+								$x1 = (2 * $x) - $x1;
+								$y1 = (2 * $y) - $y1;
+							} else {
+								$x1 = $x;
+								$y1 = $y;
+							}
+							// convert quadratic points to cubic points
+							$xa = ($x + (2 * $x1)) / 3;
+							$ya = ($y + (2 * $y1)) / 3;
+							$x = $params[($ck - 1)] + $xoffset;
+							$y = $params[($ck)] + $yoffset;
+							$xb = ($x + (2 * $x1)) / 3;
+							$yb = ($y + (2 * $y1)) / 3;
+							$this->_outCurve($xa, $ya, $xb, $yb, $x, $y);
+							$xmin = min($xmin, $x, $xa, $xb);
+							$ymin = min($ymin, $y, $ya, $yb);
+							$xmax = max($xmax, $x, $xa, $xb);
+							$ymax = max($ymax, $y, $ya, $yb);
+							if ($relcoord) {
+								$xoffset = $x;
+								$yoffset = $y;
 							}
 						}
-						break;
 					}
-					case 'A': { // elliptical arc
-						foreach ($params as $ck => $cp) {
-							$params[$ck] = $cp;
-							if ((($ck + 1) % 7) == 0) {
-								$x0 = $x;
-								$y0 = $y;
-								$rx = abs($params[($ck - 6)]);
-								$ry = abs($params[($ck - 5)]);
-								$ang = -$rawparams[($ck - 4)];
-								$angle = deg2rad($ang);
-								$fa = $rawparams[($ck - 3)]; // large-arc-flag
-								$fs = $rawparams[($ck - 2)]; // sweep-flag
-								$x = $params[($ck - 1)] + $xoffset;
-								$y = $params[$ck] + $yoffset;
-								$cos_ang = cos($angle);
-								$sin_ang = sin($angle);
-								$a = ($x0 - $x) / 2;
-								$b = ($y0 - $y) / 2;
-								$xa = ($a * $cos_ang) - ($b * $sin_ang);
-								$ya = ($a * $sin_ang) + ($b * $cos_ang);
+					break;
+				}
+				case 'A': { // elliptical arc
+					foreach ($params as $ck => $cp) {
+						$params[$ck] = $cp;
+						if ((($ck + 1) % 7) == 0) {
+							$x0 = $x;
+							$y0 = $y;
+							$rx = abs($params[($ck - 6)]);
+							$ry = abs($params[($ck - 5)]);
+							$ang = -$rawparams[($ck - 4)];
+							$angle = deg2rad($ang);
+							$fa = $rawparams[($ck - 3)]; // large-arc-flag
+							$fs = $rawparams[($ck - 2)]; // sweep-flag
+							$x = $params[($ck - 1)] + $xoffset;
+							$y = $params[$ck] + $yoffset;
+							$cos_ang = cos($angle);
+							$sin_ang = sin($angle);
+							$a = ($x0 - $x) / 2;
+							$b = ($y0 - $y) / 2;
+							$xa = ($a * $cos_ang) - ($b * $sin_ang);
+							$ya = ($a * $sin_ang) + ($b * $cos_ang);
+							$rx2 = $rx * $rx;
+							$ry2 = $ry * $ry;
+							$xa2 = $xa * $xa;
+							$ya2 = $ya * $ya;
+							$delta = ($xa2 / $rx2) + ($ya2 / $ry2);
+							if ($delta > 1) {
+								$rx *= sqrt($delta);
+								$ry *= sqrt($delta);
 								$rx2 = $rx * $rx;
 								$ry2 = $ry * $ry;
-								$xa2 = $xa * $xa;
-								$ya2 = $ya * $ya;
-								$delta = ($xa2 / $rx2) + ($ya2 / $ry2);
-								if ($delta > 1) {
-									$rx *= sqrt($delta);
-									$ry *= sqrt($delta);
-									$rx2 = $rx * $rx;
-									$ry2 = $ry * $ry;
-								}
-								$numerator = (($rx2 * $ry2) - ($rx2 * $ya2) - ($ry2 * $xa2));
-								if ($numerator < 0) {
-									$root = 0;
-								} else {
-									$root = sqrt($numerator / (($rx2 * $ya2) + ($ry2 * $xa2)));
-								}
-								if ($fa == $fs) {
-									$root *= -1;
-								}
-								$cax = $root * (($rx * $ya) / $ry);
-								$cay = -$root * (($ry * $xa) / $rx);
-								// coordinates of ellipse center
-								$cx = ($cax * $cos_ang) - ($cay * $sin_ang) + (($x0 + $x) / 2);
-								$cy = ($cax * $sin_ang) + ($cay * $cos_ang) + (($y0 + $y) / 2);
-								// get angles
-								$angs = $this->getVectorsAngle(1, 0, (($xa - $cax) / $rx), (($cay - $ya) / $ry));
-								$dang = $this->getVectorsAngle((($xa - $cax) / $rx), (($ya - $cay) / $ry), ((-$xa - $cax) / $rx), ((-$ya - $cay) / $ry));
-								if (($fs == 0) AND ($dang > 0)) {
-									$dang -= (2 * M_PI);
-								} elseif (($fs == 1) AND ($dang < 0)) {
-									$dang += (2 * M_PI);
-								}
-								$angf = $angs - $dang;
-								if (($fs == 1) AND ($angs > $angf)) {
-									$tmp = $angs;
-									$angs = $angf;
-									$angf = $tmp;
-								}
-								$angs = rad2deg($angs);
-								$angf = rad2deg($angf);
-								$pie = false;
-								if ((isset($paths[($key + 1)][1])) AND (trim($paths[($key + 1)][1]) == 'z')) {
-									$pie = true;
-								}
-								$this->_outellipticalarc($cx, $cy, $rx, $ry, $ang, $angs, $angf, $pie, 2);
-								$this->_outPoint($x, $y);
-								$xmin = min($xmin, $x);
-								$ymin = min($ymin, $y);
-								$xmax = max($xmax, $x);
-								$ymax = max($ymax, $y);
-								if ($relcoord) {
-									$xoffset = $x;
-									$yoffset = $y;
-								}
+							}
+							$numerator = (($rx2 * $ry2) - ($rx2 * $ya2) - ($ry2 * $xa2));
+							if ($numerator < 0) {
+								$root = 0;
+							} else {
+								$root = sqrt($numerator / (($rx2 * $ya2) + ($ry2 * $xa2)));
+							}
+							if ($fa == $fs) {
+								$root *= -1;
+							}
+							$cax = $root * (($rx * $ya) / $ry);
+							$cay = -$root * (($ry * $xa) / $rx);
+							// coordinates of ellipse center
+							$cx = ($cax * $cos_ang) - ($cay * $sin_ang) + (($x0 + $x) / 2);
+							$cy = ($cax * $sin_ang) + ($cay * $cos_ang) + (($y0 + $y) / 2);
+							// get angles
+							$angs = $this->getVectorsAngle(1, 0, (($xa - $cax) / $rx), (($cay - $ya) / $ry));
+							$dang = $this->getVectorsAngle((($xa - $cax) / $rx), (($ya - $cay) / $ry), ((-$xa - $cax) / $rx), ((-$ya - $cay) / $ry));
+							if (($fs == 0) AND ($dang > 0)) {
+								$dang -= (2 * M_PI);
+							} elseif (($fs == 1) AND ($dang < 0)) {
+								$dang += (2 * M_PI);
+							}
+							$angf = $angs - $dang;
+							if ((($fs == 0) AND ($angs > $angf)) OR (($fs == 1) AND ($angs < $angf))) {
+								// reverse angles
+								$tmp = $angs;
+								$angs = $angf;
+								$angf = $tmp;
+							}
+							$angs = round(rad2deg($angs), 6);
+							$angf = round(rad2deg($angf), 6);
+							// covent angles to positive values
+							if (($angs < 0) AND ($angf < 0)) {
+								$angs += 360;
+								$angf += 360;
+							}
+							$pie = false;
+							if (($key==0) AND (isset($paths[($key + 1)][1])) AND (trim($paths[($key + 1)][1]) == 'z')) {
+								$pie = true;
+							}
+							list($axmin, $aymin, $axmax, $aymax) = $this->_outellipticalarc($cx, $cy, $rx, $ry, $ang, $angs, $angf, $pie, 2, false, ($fs == 0));
+							$xmin = min($xmin, $x, $axmin);
+							$ymin = min($ymin, $y, $aymin);
+							$xmax = max($xmax, $x, $axmax);
+							$ymax = max($ymax, $y, $aymax);
+							if ($relcoord) {
+								$xoffset = $x;
+								$yoffset = $y;
 							}
 						}
-						break;
-					}
-					case 'Z': {
-						$this->_out('h');
-						break;
 					}
+					break;
+				}
+				case 'Z': {
+					$this->_out('h');
+					break;
 				}
-			} // end foreach
-			if (!empty($op)) {
-				$this->_out($op);
-			}
-			return array($xmin, $ymin, ($xmax - $xmin), ($ymax - $ymin));
-		}
-
-		/**
-		 * Returns the angle in  radiants between two vectors
-		 * @param int $x1 X coordiante of first vector point
-		 * @param int $y1 Y coordiante of first vector point
-		 * @param int $x2 X coordiante of second vector point
-		 * @param int $y2 Y coordiante of second vector point
-		 * @author Nicola Asuni
-		 * @since 5.0.000 (2010-05-04)
-		 * @access protected
-		 */
-		protected function getVectorsAngle($x1, $y1, $x2, $y2) {
-			$dprod = ($x1 * $x2) + ($y1 * $y2);
-			$dist1 = sqrt(($x1 * $x1) + ($y1 * $y1));
-			$dist2 = sqrt(($x2 * $x2) + ($y2 * $y2));
-			$angle = acos($dprod / ($dist1 * $dist2));
-			if (is_nan($angle)) {
-				$angle = M_PI;
-			}
-			if ((($x1 * $y2) - ($x2 * $y1)) < 0) {
-				$angle *= -1;
-			}
-			return $angle;
-		}
-
-		/**
-		 * Sets the opening SVG element handler function for the XML parser. (*** TO BE COMPLETED ***)
-		 * @param resource $parser The first parameter, parser, is a reference to the XML parser calling the handler.
-		 * @param string $name The second parameter, name, contains the name of the element for which this handler is called. If case-folding is in effect for this parser, the element name will be in uppercase letters.
-		 * @param array $attribs The third parameter, attribs, contains an associative array with the element's attributes (if any). The keys of this array are the attribute names, the values are the attribute values. Attribute names are case-folded on the same criteria as element names. Attribute values are not case-folded. The original order of the attributes can be retrieved by walking through attribs the normal way, using each(). The first key in the array was the first attribute, and so on.
-		 * @author Nicola Asuni
-		 * @since 5.0.000 (2010-05-02)
-		 * @access protected
-		 */
-		protected function startSVGElementHandler($parser, $name, $attribs) {
-			// check if we are in clip mode
-			if ($this->svgclipmode) {
-				$this->svgclippaths[$this->svgclipid][] = array('name' => $name, 'attribs' => $attribs);
-				return;
-			}
-			if ($this->svgdefsmode AND !in_array($name, array('clipPath', 'linearGradient', 'radialGradient', 'stop'))) {
-				$this->svgdefs[$attribs['id']] = array('name' => $name, 'attribs' => $attribs);
-				return;
-			}
-			$clipping = false;
-			if ($parser == 'clip-path') {
-				// set clipping mode
-				$clipping = true;
-			}
-			// get styling properties
-			$prev_svgstyle = $this->svgstyles[(count($this->svgstyles) - 1)]; // previous style
-			$svgstyle = array(); // current style
-			if (isset($attribs['style'])) {
-				$attribs['style'] = ';'.$attribs['style'];
 			}
-			foreach ($prev_svgstyle as $key => $val) {
-				if (isset($attribs[$key])) {
-					if ($attribs[$key] == 'inherit') {
-						$svgstyle[$key] = $val;
-					} else {
-						$svgstyle[$key] = $attribs[$key];
-					}
-				} elseif (isset($attribs['style'])) {
-					// CSS style syntax
-					$attrval = array();
-					if (preg_match('/[;\"\s]{1}'.$key.'[\s]*:[\s]*([^;\"\s]*)/si', $attribs['style'], $attrval) AND isset($attrval[1])) {
-						if ($attrval[1] == 'inherit') {
-							$svgstyle[$key] = $val;
-						} else {
-							$svgstyle[$key] = $attrval[1];
-						}
-					} else {
-						// default value
-						$svgstyle[$key] = $this->svgstyles[0][$key];
-					}
+		} // end foreach
+		if (!empty($op)) {
+			$this->_out($op);
+		}
+		return array($xmin, $ymin, ($xmax - $xmin), ($ymax - $ymin));
+	}
+
+	/**
+	 * Returns the angle in radiants between two vectors
+	 * @param $x1 (int) X coordiante of first vector point
+	 * @param $y1 (int) Y coordiante of first vector point
+	 * @param $x2 (int) X coordiante of second vector point
+	 * @param $y2 (int) Y coordiante of second vector point
+	 * @author Nicola Asuni
+	 * @since 5.0.000 (2010-05-04)
+	 * @protected
+	 */
+	protected function getVectorsAngle($x1, $y1, $x2, $y2) {
+		$dprod = ($x1 * $x2) + ($y1 * $y2);
+		$dist1 = sqrt(($x1 * $x1) + ($y1 * $y1));
+		$dist2 = sqrt(($x2 * $x2) + ($y2 * $y2));
+		$angle = acos($dprod / ($dist1 * $dist2));
+		if (is_nan($angle)) {
+			$angle = M_PI;
+		}
+		if ((($x1 * $y2) - ($x2 * $y1)) < 0) {
+			$angle *= -1;
+		}
+		return $angle;
+	}
+
+	/**
+	 * Sets the opening SVG element handler function for the XML parser. (*** TO BE COMPLETED ***)
+	 * @param $parser (resource) The first parameter, parser, is a reference to the XML parser calling the handler.
+	 * @param $name (string) The second parameter, name, contains the name of the element for which this handler is called. If case-folding is in effect for this parser, the element name will be in uppercase letters.
+	 * @param $attribs (array) The third parameter, attribs, contains an associative array with the element's attributes (if any). The keys of this array are the attribute names, the values are the attribute values. Attribute names are case-folded on the same criteria as element names. Attribute values are not case-folded. The original order of the attributes can be retrieved by walking through attribs the normal way, using each(). The first key in the array was the first attribute, and so on.
+	 * @param $ctm (array) tranformation matrix for clipping mode (starting transformation matrix).
+	 * @author Nicola Asuni
+	 * @since 5.0.000 (2010-05-02)
+	 * @protected
+	 */
+	protected function startSVGElementHandler($parser, $name, $attribs, $ctm=array()) {
+		// check if we are in clip mode
+		if ($this->svgclipmode) {
+			$this->svgclippaths[$this->svgclipid][] = array('name' => $name, 'attribs' => $attribs, 'tm' => $this->svgcliptm[$this->svgclipid]);
+			return;
+		}
+		if ($this->svgdefsmode AND !in_array($name, array('clipPath', 'linearGradient', 'radialGradient', 'stop'))) {
+			if (!isset($attribs['id'])) {
+				$attribs['id'] = 'DF_'.(count($this->svgdefs) + 1);
+			}
+			$this->svgdefs[$attribs['id']] = array('name' => $name, 'attribs' => $attribs);
+			return;
+		}
+		$clipping = false;
+		if ($parser == 'clip-path') {
+			// set clipping mode
+			$clipping = true;
+		}
+		// get styling properties
+		$prev_svgstyle = $this->svgstyles[(count($this->svgstyles) - 1)]; // previous style
+		$svgstyle = $this->svgstyles[0]; // set default style
+		if (isset($attribs['style']) AND !$this->empty_string($attribs['style'])) {
+			// fix style for regular expression
+			$attribs['style'] = ';'.$attribs['style'];
+		}
+		foreach ($prev_svgstyle as $key => $val) {
+			if (in_array($key, $this->svginheritprop)) {
+				// inherit previous value
+				$svgstyle[$key] = $val;
+			}
+			if (isset($attribs[$key]) AND !$this->empty_string($attribs[$key])) {
+				// specific attribute settings
+				if ($attribs[$key] == 'inherit') {
+					$svgstyle[$key] = $val;
 				} else {
-					if (in_array($key, $this->svginheritprop)) {
-						// inherit previous value
+					$svgstyle[$key] = $attribs[$key];
+				}
+			} elseif (isset($attribs['style']) AND !$this->empty_string($attribs['style'])) {
+				// CSS style syntax
+				$attrval = array();
+				if (preg_match('/[;\"\s]{1}'.$key.'[\s]*:[\s]*([^;\"]*)/si', $attribs['style'], $attrval) AND isset($attrval[1])) {
+					if ($attrval[1] == 'inherit') {
 						$svgstyle[$key] = $val;
 					} else {
-						// default value
-						$svgstyle[$key] = $this->svgstyles[0][$key];
+						$svgstyle[$key] = $attrval[1];
 					}
 				}
 			}
-			// transformation matrix
+		}
+		// transformation matrix
+		if (!empty($ctm)) {
+			$tm = $ctm;
+		} else {
 			$tm = $this->svgstyles[(count($this->svgstyles) - 1)]['transfmatrix'];
-			if (isset($attribs['transform']) AND !empty($attribs['transform'])) {
-				$tm = $this->getTransformationMatrixProduct($tm, $this->getSVGTransformMatrix($attribs['transform']));
-			}
-			$svgstyle['transfmatrix'] = $tm;
-			// process tag
-			switch($name) {
-				case 'defs': {
-					$this->svgdefsmode = true;
+		}
+		if (isset($attribs['transform']) AND !empty($attribs['transform'])) {
+			$tm = $this->getTransformationMatrixProduct($tm, $this->getSVGTransformMatrix($attribs['transform']));
+		}
+		$svgstyle['transfmatrix'] = $tm;
+		$invisible = false;
+		if (($svgstyle['visibility'] == 'hidden') OR ($svgstyle['visibility'] == 'collapse') OR ($svgstyle['display'] == 'none')) {
+			// the current graphics element is invisible (nothing is painted)
+			$invisible = true;
+		}
+		// process tag
+		switch($name) {
+			case 'defs': {
+				$this->svgdefsmode = true;
+				break;
+			}
+			// clipPath
+			case 'clipPath': {
+				if ($invisible) {
 					break;
 				}
-				// clipPath
-				case 'clipPath': {
-					$this->svgclipmode = true;
-					$this->svgclipid = $attribs['id'];
-					$this->svgclippaths[$this->svgclipid] = array();
-					break;
+				$this->svgclipmode = true;
+				if (!isset($attribs['id'])) {
+					$attribs['id'] = 'CP_'.(count($this->svgcliptm) + 1);
+				}
+				$this->svgclipid = $attribs['id'];
+				$this->svgclippaths[$this->svgclipid] = array();
+				$this->svgcliptm[$this->svgclipid] = $tm;
+				break;
+			}
+			case 'svg': {
+				// start of SVG object
+				break;
+			}
+			case 'g': {
+				// group together related graphics elements
+				array_push($this->svgstyles, $svgstyle);
+				$this->StartTransform();
+				$this->setSVGStyles($svgstyle, $prev_svgstyle);
+				break;
+			}
+			case 'linearGradient': {
+				if (!isset($attribs['id'])) {
+					$attribs['id'] = 'GR_'.(count($this->svggradients) + 1);
+				}
+				$this->svggradientid = $attribs['id'];
+				$this->svggradients[$this->svggradientid] = array();
+				$this->svggradients[$this->svggradientid]['type'] = 2;
+				$this->svggradients[$this->svggradientid]['stops'] = array();
+				if (isset($attribs['gradientUnits'])) {
+					$this->svggradients[$this->svggradientid]['gradientUnits'] = $attribs['gradientUnits'];
+				} else {
+					$this->svggradients[$this->svggradientid]['gradientUnits'] = 'objectBoundingBox';
+				}
+				//$attribs['spreadMethod']
+				$x1 = (isset($attribs['x1'])?$attribs['x1']:'0%');
+				$y1 = (isset($attribs['y1'])?$attribs['y1']:'0%');
+				$x2 = (isset($attribs['x2'])?$attribs['x2']:'100%');
+				$y2 = (isset($attribs['y2'])?$attribs['y2']:'0%');
+				if (substr($x1, -1) != '%') {
+					$this->svggradients[$this->svggradientid]['mode'] = 'measure';
+				} else {
+					$this->svggradients[$this->svggradientid]['mode'] = 'percentage';
 				}
-				case 'svg': {
-					// start of SVG object
-					break;
+				if (isset($attribs['gradientTransform'])) {
+					$this->svggradients[$this->svggradientid]['gradientTransform'] = $this->getSVGTransformMatrix($attribs['gradientTransform']);
 				}
-				case 'g': {
-					// group together related graphics elements
-					array_push($this->svgstyles, $svgstyle);
-					$this->StartTransform();
-					$this->setSVGStyles($svgstyle, $prev_svgstyle);
-					break;
+				$this->svggradients[$this->svggradientid]['coords'] = array($x1, $y1, $x2, $y2);
+				if (isset($attribs['xlink:href']) AND !empty($attribs['xlink:href'])) {
+					// gradient is defined on another place
+					$this->svggradients[$this->svggradientid]['xref'] = substr($attribs['xlink:href'], 1);
 				}
-				case 'linearGradient': {
-					$this->svggradientid = $attribs['id'];
-					$this->svggradients[$this->svggradientid] = array();
-					$this->svggradients[$this->svggradientid]['type'] = 2;
-					$this->svggradients[$this->svggradientid]['stops'] = array();
-					if (isset($attribs['gradientUnits'])) {
-						$this->svggradients[$this->svggradientid]['gradientUnits'] = $attribs['gradientUnits'];
-					} else {
-						$this->svggradients[$this->svggradientid]['gradientUnits'] = 'objectBoundingBox';
-					}
-					//$attribs['spreadMethod']
-					$x1 = (isset($attribs['x1'])?$attribs['x1']:0);
-					$y1 = (isset($attribs['y1'])?$attribs['y1']:0);
-					$x2 = (isset($attribs['x2'])?$attribs['x2']:1);
-					$y2 = (isset($attribs['y2'])?$attribs['y2']:0);
-					if (isset($attribs['x1']) AND (substr($attribs['x1'], -1) != '%')) {
-						$this->svggradients[$this->svggradientid]['mode'] = 'measure';
-					} else {
-						$this->svggradients[$this->svggradientid]['mode'] = 'percentage';
-					}
-					if (isset($attribs['gradientTransform'])) {
-						$this->svggradients[$this->svggradientid]['gradientTransform'] = $this->getSVGTransformMatrix($attribs['gradientTransform']);
-					}
-					$this->svggradients[$this->svggradientid]['coords'] = array($x1, $y1, $x2, $y2);
-					if (isset($attribs['xlink:href']) AND !empty($attribs['xlink:href'])) {
-						// gradient is defined on another place
-						$this->svggradients[$this->svggradientid]['xref'] = substr($attribs['xlink:href'], 1);
+				break;
+			}
+			case 'radialGradient': {
+				if (!isset($attribs['id'])) {
+					$attribs['id'] = 'GR_'.(count($this->svggradients) + 1);
+				}
+				$this->svggradientid = $attribs['id'];
+				$this->svggradients[$this->svggradientid] = array();
+				$this->svggradients[$this->svggradientid]['type'] = 3;
+				$this->svggradients[$this->svggradientid]['stops'] = array();
+				if (isset($attribs['gradientUnits'])) {
+					$this->svggradients[$this->svggradientid]['gradientUnits'] = $attribs['gradientUnits'];
+				} else {
+					$this->svggradients[$this->svggradientid]['gradientUnits'] = 'objectBoundingBox';
+				}
+				//$attribs['spreadMethod']
+				$cx = (isset($attribs['cx'])?$attribs['cx']:0.5);
+				$cy = (isset($attribs['cy'])?$attribs['cy']:0.5);
+				$fx = (isset($attribs['fx'])?$attribs['fx']:$cx);
+				$fy = (isset($attribs['fy'])?$attribs['fy']:$cy);
+				$r = (isset($attribs['r'])?$attribs['r']:0.5);
+				if (isset($attribs['cx']) AND (substr($attribs['cx'], -1) != '%')) {
+					$this->svggradients[$this->svggradientid]['mode'] = 'measure';
+				} else {
+					$this->svggradients[$this->svggradientid]['mode'] = 'percentage';
+				}
+				if (isset($attribs['gradientTransform'])) {
+					$this->svggradients[$this->svggradientid]['gradientTransform'] = $this->getSVGTransformMatrix($attribs['gradientTransform']);
+				}
+				$this->svggradients[$this->svggradientid]['coords'] = array($cx, $cy, $fx, $fy, $r);
+				if (isset($attribs['xlink:href']) AND !empty($attribs['xlink:href'])) {
+					// gradient is defined on another place
+					$this->svggradients[$this->svggradientid]['xref'] = substr($attribs['xlink:href'], 1);
+				}
+				break;
+			}
+			case 'stop': {
+				// gradient stops
+				if (substr($attribs['offset'], -1) == '%') {
+					$offset = floatval(substr($attribs['offset'], -1)) / 100;
+				} else {
+					$offset = floatval($attribs['offset']);
+					if ($offset > 1) {
+						$offset /= 100;
 					}
+				}
+				$stop_color = isset($svgstyle['stop-color'])?$this->convertHTMLColorToDec($svgstyle['stop-color']):'black';
+				$opacity = isset($svgstyle['stop-opacity'])?$svgstyle['stop-opacity']:1;
+				$this->svggradients[$this->svggradientid]['stops'][] = array('offset' => $offset, 'color' => $stop_color, 'opacity' => $opacity);
+				break;
+			}
+			// paths
+			case 'path': {
+				if ($invisible) {
 					break;
 				}
-				case 'radialGradient': {
-					$this->svggradientid = $attribs['id'];
-					$this->svggradients[$this->svggradientid] = array();
-					$this->svggradients[$this->svggradientid]['type'] = 3;
-					$this->svggradients[$this->svggradientid]['stops'] = array();
-					if (isset($attribs['gradientUnits'])) {
-						$this->svggradients[$this->svggradientid]['gradientUnits'] = $attribs['gradientUnits'];
-					} else {
-						$this->svggradients[$this->svggradientid]['gradientUnits'] = 'objectBoundingBox';
-					}
-					//$attribs['spreadMethod']
-					$cx = (isset($attribs['cx'])?$attribs['cx']:0.5);
-					$cy = (isset($attribs['cy'])?$attribs['cy']:0.5);
-					$fx = (isset($attribs['fx'])?$attribs['fx']:$cx);
-					$fy = (isset($attribs['fy'])?$attribs['fy']:$cy);
-					$r = (isset($attribs['r'])?$attribs['r']:0.5);
-					if (isset($attribs['cx']) AND (substr($attribs['cx'], -1) != '%')) {
-						$this->svggradients[$this->svggradientid]['mode'] = 'measure';
-					} else {
-						$this->svggradients[$this->svggradientid]['mode'] = 'percentage';
-					}
-					if (isset($attribs['gradientTransform'])) {
-						$this->svggradients[$this->svggradientid]['gradientTransform'] = $this->getSVGTransformMatrix($attribs['gradientTransform']);
-					}
-					$this->svggradients[$this->svggradientid]['coords'] = array($cx, $cy, $fx, $fy, $r);
-					if (isset($attribs['xlink:href']) AND !empty($attribs['xlink:href'])) {
-						// gradient is defined on another place
-						$this->svggradients[$this->svggradientid]['xref'] = substr($attribs['xlink:href'], 1);
+				if (isset($attribs['d'])) {
+					$d = trim($attribs['d']);
+					if (!empty($d)) {
+						if ($clipping) {
+							$this->SVGTransform($tm);
+							$this->SVGPath($d, 'CNZ');
+						} else {
+							$this->StartTransform();
+							$this->SVGTransform($tm);
+							$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, 0, 0, 1, 1, 'SVGPath', array($d, 'CNZ'));
+							if (!empty($obstyle)) {
+								$this->SVGPath($d, $obstyle);
+							}
+							$this->StopTransform();
+						}
 					}
+				}
+				break;
+			}
+			// shapes
+			case 'rect': {
+				if ($invisible) {
 					break;
 				}
-				case 'stop': {
-					// gradient stops
-					if (substr($attribs['offset'], -1) == '%') {
-						$offset = floatval(substr($attribs['offset'], -1)) / 100;
-					} else {
-						$offset = floatval($attribs['offset']);
-						if ($offset > 1) {
-							$offset /= 100;
-						}
+				$x = (isset($attribs['x'])?$this->getHTMLUnitToUnits($attribs['x'], 0, $this->svgunit, false):0);
+				$y = (isset($attribs['y'])?$this->getHTMLUnitToUnits($attribs['y'], 0, $this->svgunit, false):0);
+				$w = (isset($attribs['width'])?$this->getHTMLUnitToUnits($attribs['width'], 0, $this->svgunit, false):0);
+				$h = (isset($attribs['height'])?$this->getHTMLUnitToUnits($attribs['height'], 0, $this->svgunit, false):0);
+				$rx = (isset($attribs['rx'])?$this->getHTMLUnitToUnits($attribs['rx'], 0, $this->svgunit, false):0);
+				$ry = (isset($attribs['ry'])?$this->getHTMLUnitToUnits($attribs['ry'], 0, $this->svgunit, false):$rx);
+				if ($clipping) {
+					$this->SVGTransform($tm);
+					$this->RoundedRectXY($x, $y, $w, $h, $rx, $ry, '1111', 'CNZ', array(), array());
+				} else {
+					$this->StartTransform();
+					$this->SVGTransform($tm);
+					$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h, 'RoundedRectXY', array($x, $y, $w, $h, $rx, $ry, '1111', 'CNZ'));
+					if (!empty($obstyle)) {
+						$this->RoundedRectXY($x, $y, $w, $h, $rx, $ry, '1111', $obstyle, array(), array());
 					}
-					$stop_color = isset($svgstyle['stop-color'])?$this->convertHTMLColorToDec($svgstyle['stop-color']):'black';
-					$opacity = isset($svgstyle['stop-opacity'])?$svgstyle['stop-opacity']:1;
-					$this->svggradients[$this->svggradientid]['stops'][] = array('offset' => $offset, 'color' => $stop_color, 'opacity' => $opacity);
+					$this->StopTransform();
+				}
+				break;
+			}
+			case 'circle': {
+				if ($invisible) {
 					break;
 				}
-				// paths
-				case 'path': {
-					$d = trim($attribs['d']);
-					if ($clipping) {
-						$this->SVGTransform($tm);
-						$this->SVGPath($d, 'CNZ');
-					} else {
-						$this->StartTransform();
-						$this->SVGTransform($tm);
-						$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, 0, 0, 1, 1, 'SVGPath', array($d, 'CNZ'));
-						if (!empty($obstyle)) {
-							$this->SVGPath($d, $obstyle);
-						}
-						$this->StopTransform();
+				$cx = (isset($attribs['cx'])?$this->getHTMLUnitToUnits($attribs['cx'], 0, $this->svgunit, false):0);
+				$cy = (isset($attribs['cy'])?$this->getHTMLUnitToUnits($attribs['cy'], 0, $this->svgunit, false):0);
+				$r = (isset($attribs['r'])?$this->getHTMLUnitToUnits($attribs['r'], 0, $this->svgunit, false):0);
+				$x = $cx - $r;
+				$y = $cy - $r;
+				$w = 2 * $r;
+				$h = $w;
+				if ($clipping) {
+					$this->SVGTransform($tm);
+					$this->Circle($cx, $cy, $r, 0, 360, 'CNZ', array(), array(), 8);
+				} else {
+					$this->StartTransform();
+					$this->SVGTransform($tm);
+					$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h, 'Circle', array($cx, $cy, $r, 0, 360, 'CNZ'));
+					if (!empty($obstyle)) {
+						$this->Circle($cx, $cy, $r, 0, 360, $obstyle, array(), array(), 8);
 					}
+					$this->StopTransform();
+				}
+				break;
+			}
+			case 'ellipse': {
+				if ($invisible) {
 					break;
 				}
-				// shapes
-				case 'rect': {
-					$x = (isset($attribs['x'])?$this->getHTMLUnitToUnits($attribs['x'], 0, $this->svgunit, false):0);
-					$y = (isset($attribs['y'])?$this->getHTMLUnitToUnits($attribs['y'], 0, $this->svgunit, false):0);
-					$w = (isset($attribs['width'])?$this->getHTMLUnitToUnits($attribs['width'], 0, $this->svgunit, false):0);
-					$h = (isset($attribs['height'])?$this->getHTMLUnitToUnits($attribs['height'], 0, $this->svgunit, false):0);
-					$rx = (isset($attribs['rx'])?$this->getHTMLUnitToUnits($attribs['rx'], 0, $this->svgunit, false):0);
-					$ry = (isset($attribs['ry'])?$this->getHTMLUnitToUnits($attribs['ry'], 0, $this->svgunit, false):$rx);
-					if ($clipping) {
-						$this->SVGTransform($tm);
-						$this->RoundedRectXY($x, $y, $w, $h, $rx, $ry, '1111', 'CNZ', array(), array());
-					} else {
-						$this->StartTransform();
-						$this->SVGTransform($tm);
-						$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h, 'RoundedRectXY', array($x, $y, $w, $h, $rx, $ry, '1111', 'CNZ'));
-						if (!empty($obstyle)) {
-							$this->RoundedRectXY($x, $y, $w, $h, $rx, $ry, '1111', $obstyle, array(), array());
-						}
-						$this->StopTransform();
+				$cx = (isset($attribs['cx'])?$this->getHTMLUnitToUnits($attribs['cx'], 0, $this->svgunit, false):0);
+				$cy = (isset($attribs['cy'])?$this->getHTMLUnitToUnits($attribs['cy'], 0, $this->svgunit, false):0);
+				$rx = (isset($attribs['rx'])?$this->getHTMLUnitToUnits($attribs['rx'], 0, $this->svgunit, false):0);
+				$ry = (isset($attribs['ry'])?$this->getHTMLUnitToUnits($attribs['ry'], 0, $this->svgunit, false):0);
+				$x = $cx - $rx;
+				$y = $cy - $ry;
+				$w = 2 * $rx;
+				$h = 2 * $ry;
+				if ($clipping) {
+					$this->SVGTransform($tm);
+					$this->Ellipse($cx, $cy, $rx, $ry, 0, 0, 360, 'CNZ', array(), array(), 8);
+				} else {
+					$this->StartTransform();
+					$this->SVGTransform($tm);
+					$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h, 'Ellipse', array($cx, $cy, $rx, $ry, 0, 0, 360, 'CNZ'));
+					if (!empty($obstyle)) {
+						$this->Ellipse($cx, $cy, $rx, $ry, 0, 0, 360, $obstyle, array(), array(), 8);
 					}
+					$this->StopTransform();
+				}
+				break;
+			}
+			case 'line': {
+				if ($invisible) {
 					break;
 				}
-				case 'circle': {
-					$cx = (isset($attribs['cx'])?$this->getHTMLUnitToUnits($attribs['cx'], 0, $this->svgunit, false):0);
-					$cy = (isset($attribs['cy'])?$this->getHTMLUnitToUnits($attribs['cy'], 0, $this->svgunit, false):0);
-					$r = (isset($attribs['r'])?$this->getHTMLUnitToUnits($attribs['r'], 0, $this->svgunit, false):0);
-					$x = $cx - $r;
-					$y = $cy - $r;
-					$w = 2 * $r;
-					$h = $w;
-					if ($clipping) {
-						$this->SVGTransform($tm);
-						$this->Circle($cx, $cy, $r, 0, 360, 'CNZ', array(), array(), 8);
+				$x1 = (isset($attribs['x1'])?$this->getHTMLUnitToUnits($attribs['x1'], 0, $this->svgunit, false):0);
+				$y1 = (isset($attribs['y1'])?$this->getHTMLUnitToUnits($attribs['y1'], 0, $this->svgunit, false):0);
+				$x2 = (isset($attribs['x2'])?$this->getHTMLUnitToUnits($attribs['x2'], 0, $this->svgunit, false):0);
+				$y2 = (isset($attribs['y2'])?$this->getHTMLUnitToUnits($attribs['y2'], 0, $this->svgunit, false):0);
+				$x = $x1;
+				$y = $y1;
+				$w = abs($x2 - $x1);
+				$h = abs($y2 - $y1);
+				if (!$clipping) {
+					$this->StartTransform();
+					$this->SVGTransform($tm);
+					$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h, 'Line', array($x1, $y1, $x2, $y2));
+					$this->Line($x1, $y1, $x2, $y2);
+					$this->StopTransform();
+				}
+				break;
+			}
+			case 'polyline':
+			case 'polygon': {
+				if ($invisible) {
+					break;
+				}
+				$points = (isset($attribs['points'])?$attribs['points']:'0 0');
+				$points = trim($points);
+				// note that point may use a complex syntax not covered here
+				$points = preg_split('/[\,\s]+/si', $points);
+				if (count($points) < 4) {
+					break;
+				}
+				$p = array();
+				$xmin = 2147483647;
+				$xmax = 0;
+				$ymin = 2147483647;
+				$ymax = 0;
+				foreach ($points as $key => $val) {
+					$p[$key] = $this->getHTMLUnitToUnits($val, 0, $this->svgunit, false);
+					if (($key % 2) == 0) {
+						// X coordinate
+						$xmin = min($xmin, $p[$key]);
+						$xmax = max($xmax, $p[$key]);
 					} else {
-						$this->StartTransform();
-						$this->SVGTransform($tm);
-						$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h, 'Circle', array($cx, $cy, $r, 0, 360, 'CNZ'));
-						if (!empty($obstyle)) {
-							$this->Circle($cx, $cy, $r, 0, 360, $obstyle, array(), array(), 8);
-						}
-						$this->StopTransform();
+						// Y coordinate
+						$ymin = min($ymin, $p[$key]);
+						$ymax = max($ymax, $p[$key]);
 					}
-					break;
 				}
-				case 'ellipse': {
-					$cx = (isset($attribs['cx'])?$this->getHTMLUnitToUnits($attribs['cx'], 0, $this->svgunit, false):0);
-					$cy = (isset($attribs['cy'])?$this->getHTMLUnitToUnits($attribs['cy'], 0, $this->svgunit, false):0);
-					$rx = (isset($attribs['rx'])?$this->getHTMLUnitToUnits($attribs['rx'], 0, $this->svgunit, false):0);
-					$ry = (isset($attribs['ry'])?$this->getHTMLUnitToUnits($attribs['ry'], 0, $this->svgunit, false):0);
-					$x = $cx - $rx;
-					$y = $cy - $ry;
-					$w = 2 * $rx;
-					$h = 2 * $ry;
+				$x = $xmin;
+				$y = $ymin;
+				$w = ($xmax - $xmin);
+				$h = ($ymax - $ymin);
+				if ($name == 'polyline') {
+					$this->StartTransform();
+					$this->SVGTransform($tm);
+					$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h, 'PolyLine', array($p, 'CNZ'));
+					$this->PolyLine($p, 'D', array(), array());
+					$this->StopTransform();
+				} else { // polygon
 					if ($clipping) {
 						$this->SVGTransform($tm);
-						$this->Ellipse($cx, $cy, $rx, $ry, 0, 0, 360, 'CNZ', array(), array(), 8);
+						$this->Polygon($p, 'CNZ', array(), array(), true);
 					} else {
 						$this->StartTransform();
 						$this->SVGTransform($tm);
-						$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h, 'Ellipse', array($cx, $cy, $rx, $ry, 0, 0, 360, 'CNZ'));
+						$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h, 'Polygon', array($p, 'CNZ'));
 						if (!empty($obstyle)) {
-							$this->Ellipse($cx, $cy, $rx, $ry, 0, 0, 360, $obstyle, array(), array(), 8);
+							$this->Polygon($p, $obstyle, array(), array(), true);
 						}
 						$this->StopTransform();
 					}
+				}
+				break;
+			}
+			// image
+			case 'image': {
+				if ($invisible) {
 					break;
 				}
-				case 'line': {
-					$x1 = (isset($attribs['x1'])?$this->getHTMLUnitToUnits($attribs['x1'], 0, $this->svgunit, false):0);
-					$y1 = (isset($attribs['y1'])?$this->getHTMLUnitToUnits($attribs['y1'], 0, $this->svgunit, false):0);
-					$x2 = (isset($attribs['x2'])?$this->getHTMLUnitToUnits($attribs['x2'], 0, $this->svgunit, false):0);
-					$y2 = (isset($attribs['y2'])?$this->getHTMLUnitToUnits($attribs['y2'], 0, $this->svgunit, false):0);
-					$x = $x1;
-					$y = $y1;
-					$w = abs($x2 - $x1);
-					$h = abs($y2 - $y1);
-					if (!$clipping) {
-						$this->StartTransform();
-						$this->SVGTransform($tm);
-						$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h, 'Line', array($x1, $y1, $x2, $y2));
-						$this->Line($x1, $y1, $x2, $y2);
-						$this->StopTransform();
-					}
+				if (!isset($attribs['xlink:href']) OR empty($attribs['xlink:href'])) {
 					break;
 				}
-				case 'polyline':
-				case 'polygon': {
-					$points = (isset($attribs['points'])?$attribs['points']:'0 0');
-					$points = trim($points);
-					// note that point may use a complex syntax not covered here
-					$points = preg_split('/[\,\s]+/si', $points);
-					if (count($points) < 4) {
-						break;
-					}
-					$p = array();
-					$xmin = 2147483647;
-					$xmax = 0;
-					$ymin = 2147483647;
-					$ymax = 0;
-					foreach ($points as $key => $val) {
-						$p[$key] = $this->getHTMLUnitToUnits($val, 0, $this->svgunit, false);
-						if (($key % 2) == 0) {
-							// X coordinate
-							$xmin = min($xmin, $p[$key]);
-							$xmax = max($xmax, $p[$key]);
-						} else {
-							// Y coordinate
-							$ymin = min($ymin, $p[$key]);
-							$ymax = max($ymax, $p[$key]);
+				$x = (isset($attribs['x'])?$this->getHTMLUnitToUnits($attribs['x'], 0, $this->svgunit, false):0);
+				$y = (isset($attribs['y'])?$this->getHTMLUnitToUnits($attribs['y'], 0, $this->svgunit, false):0);
+				$w = (isset($attribs['width'])?$this->getHTMLUnitToUnits($attribs['width'], 0, $this->svgunit, false):0);
+				$h = (isset($attribs['height'])?$this->getHTMLUnitToUnits($attribs['height'], 0, $this->svgunit, false):0);
+				$img = $attribs['xlink:href'];
+				if (!$clipping) {
+					$this->StartTransform();
+					$this->SVGTransform($tm);
+					$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h);
+					// fix image path
+					if (!$this->empty_string($this->svgdir) AND (($img{0} == '.') OR (basename($img) == $img))) {
+						// replace relative path with full server path
+						$img = $this->svgdir.'/'.$img;
+					}
+					if (($img{0} == '/') AND ($_SERVER['DOCUMENT_ROOT'] != '/')) {
+						$findroot = strpos($img, $_SERVER['DOCUMENT_ROOT']);
+						if (($findroot === false) OR ($findroot > 1)) {
+							// replace relative path with full server path
+							$img = $_SERVER['DOCUMENT_ROOT'].$img;
 						}
 					}
-					$x = $xmin;
-					$y = $ymin;
-					$w = ($xmax - $xmin);
-					$h = ($ymax - $ymin);
-					if ($name == 'polyline') {
-						$this->StartTransform();
-						$this->SVGTransform($tm);
-						$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h, 'PolyLine', array($p, 'CNZ'));
-						$this->PolyLine($p, 'D', array(), array());
-						$this->StopTransform();
-					} else { // polygon
-						if ($clipping) {
-							$this->SVGTransform($tm);
-							$this->Polygon($p, 'CNZ', array(), array(), true);
-						} else {
-							$this->StartTransform();
-							$this->SVGTransform($tm);
-							$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h, 'Polygon', array($p, 'CNZ'));
-							if (!empty($obstyle)) {
-								$this->Polygon($p, $obstyle, array(), array(), true);
-							}
-							$this->StopTransform();
-						}
+					$img = urldecode($img);
+					$testscrtype = @parse_url($img);
+					if (!isset($testscrtype['query']) OR empty($testscrtype['query'])) {
+						// convert URL to server path
+						$img = str_replace(K_PATH_URL, K_PATH_MAIN, $img);
 					}
+					$this->Image($img, $x, $y, $w, $h);
+					$this->StopTransform();
+				}
+				break;
+			}
+			// text
+			case 'text':
+			case 'tspan': {
+				$this->svgtextmode['invisible'] = $invisible;
+				if ($invisible) {
 					break;
 				}
-				// image
-				case 'image': {
-					if (!isset($attribs['xlink:href']) OR empty($attribs['xlink:href'])) {
-						break;
-					}
-					$x = (isset($attribs['x'])?$this->getHTMLUnitToUnits($attribs['x'], 0, $this->svgunit, false):0);
-					$y = (isset($attribs['y'])?$this->getHTMLUnitToUnits($attribs['y'], 0, $this->svgunit, false):0);
-					$w = (isset($attribs['width'])?$this->getHTMLUnitToUnits($attribs['width'], 0, $this->svgunit, false):0);
-					$h = (isset($attribs['height'])?$this->getHTMLUnitToUnits($attribs['height'], 0, $this->svgunit, false):0);
-					$img = $attribs['xlink:href'];
-					if (!$clipping) {
-						$this->StartTransform();
-						$this->SVGTransform($tm);
-						$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, $w, $h);
-						// fix image path
-						if (!$this->empty_string($this->svgdir) AND (($img{0} == '.') OR (basename($img) == $img))) {
-							// replace relative path with full server path
-							$img = $this->svgdir.'/'.$img;
-						}
-						if (($img{0} == '/') AND ($_SERVER['DOCUMENT_ROOT'] != '/')) {
-							$findroot = strpos($img, $_SERVER['DOCUMENT_ROOT']);
-							if (($findroot === false) OR ($findroot > 1)) {
-								// replace relative path with full server path
-								$img = $_SERVER['DOCUMENT_ROOT'].$img;
-							}
-						}
-						$img = urldecode($img);
-						$testscrtype = @parse_url($img);
-						if (!isset($testscrtype['query']) OR empty($testscrtype['query'])) {
-							// convert URL to server path
-							$img = str_replace(K_PATH_URL, K_PATH_MAIN, $img);
-						}
-						$this->Image($img, $x, $y, $w, $h);
-						$this->StopTransform();
+				array_push($this->svgstyles, $svgstyle);
+				// only basic support - advanced features must be implemented
+				$x = (isset($attribs['x'])?$this->getHTMLUnitToUnits($attribs['x'], 0, $this->svgunit, false):$this->x);
+				$y = (isset($attribs['y'])?$this->getHTMLUnitToUnits($attribs['y'], 0, $this->svgunit, false):$this->y);
+				$svgstyle['text-color'] = $svgstyle['fill'];
+				$this->svgtext = '';
+				if (isset($svgstyle['text-anchor'])) {
+					$this->svgtextmode['text-anchor'] = $svgstyle['text-anchor'];
+				} else {
+					$this->svgtextmode['text-anchor'] = 'start';
+				}
+				if (isset($svgstyle['direction'])) {
+					if ($svgstyle['direction'] == 'rtl') {
+						$this->svgtextmode['rtl'] = true;
+					} else {
+						$this->svgtextmode['rtl'] = false;
 					}
-					break;
+				} else {
+					$this->svgtextmode['rtl'] = false;
 				}
-				// text
-				case 'text':
-				case 'tspan': {
-					// only basic support - advanced features must be implemented
-					$x = (isset($attribs['x'])?$this->getHTMLUnitToUnits($attribs['x'], 0, $this->svgunit, false):0);
-					$y = (isset($attribs['y'])?$this->getHTMLUnitToUnits($attribs['y'], 0, $this->svgunit, false):0);
-					$svgstyle['text-color'] = $svgstyle['fill'];
-					$this->svgtext = '';
-					$this->StartTransform();
-					$this->SVGTransform($tm);
-					$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, 1, 1);
-					$this->SetXY($x, $y, true);
-					break;
+				if (isset($svgstyle['stroke']) AND ($svgstyle['stroke'] != 'none') AND isset($svgstyle['stroke-width']) AND ($svgstyle['stroke-width'] > 0)) {
+					$this->svgtextmode['stroke'] = $this->getHTMLUnitToUnits($svgstyle['stroke-width'], 0, $this->svgunit, false);
+				} else {
+					$this->svgtextmode['stroke'] = false;
 				}
-				// use
-				case 'use': {
+				$this->StartTransform();
+				$this->SVGTransform($tm);
+				$obstyle = $this->setSVGStyles($svgstyle, $prev_svgstyle, $x, $y, 1, 1);
+				$this->x = $x;
+				$this->y = $y;
+				break;
+			}
+			// use
+			case 'use': {
+				if (isset($attribs['xlink:href'])) {
+					$use = $this->svgdefs[substr($attribs['xlink:href'], 1)];
 					if (isset($attribs['xlink:href'])) {
-						$use = $this->svgdefs[substr($attribs['xlink:href'], 1)];
-						if (isset($attribs['xlink:href'])) {
-							unset($attribs['xlink:href']);
-						}
-						if (isset($attribs['id'])) {
-							unset($attribs['id']);
-						}
-						$attribs = array_merge($use['attribs'], $attribs);
-						$this->startSVGElementHandler($parser, $use['name'], $use['attribs']);
+						unset($attribs['xlink:href']);
 					}
-					break;
-				}
-				default: {
-					break;
+					if (isset($attribs['id'])) {
+						unset($attribs['id']);
+					}
+					$attribs = array_merge($use['attribs'], $attribs);
+					$this->startSVGElementHandler($parser, $use['name'], $use['attribs']);
 				}
+				break;
 			}
-		}
+			default: {
+				break;
+			}
+		} // end of switch
+	}
 
-		/**
-		 * Sets the closing SVG element handler function for the XML parser.
-		 * @param resource $parser The first parameter, parser, is a reference to the XML parser calling the handler.
-		 * @param string $name The second parameter, name, contains the name of the element for which this handler is called. If case-folding is in effect for this parser, the element name will be in uppercase letters.
-		 * @author Nicola Asuni
-		 * @since 5.0.000 (2010-05-02)
-		 * @access protected
-		 */
-		protected function endSVGElementHandler($parser, $name) {
-			switch($name) {
-				case 'defs': {
-					$this->svgdefsmode = false;
-					break;
-				}
-				// clipPath
-				case 'clipPath': {
-					$this->svgclipmode = false;
-					break;
-				}
-				case 'g': {
-					// ungroup: remove last style from array
-					array_pop($this->svgstyles);
-					$this->StopTransform();
-					break;
-				}
-				case 'text':
-				case 'tspan': {
-					// print text
-					$this->Cell(0, 0, trim($this->svgtext), 0, 0, '', 0, '', 0, false, 'L', 'T');
-					$this->svgtext = '';
-					$this->StopTransform();
+	/**
+	 * Sets the closing SVG element handler function for the XML parser.
+	 * @param $parser (resource) The first parameter, parser, is a reference to the XML parser calling the handler.
+	 * @param $name (string) The second parameter, name, contains the name of the element for which this handler is called. If case-folding is in effect for this parser, the element name will be in uppercase letters.
+	 * @author Nicola Asuni
+	 * @since 5.0.000 (2010-05-02)
+	 * @protected
+	 */
+	protected function endSVGElementHandler($parser, $name) {
+		switch($name) {
+			case 'defs': {
+				$this->svgdefsmode = false;
+				break;
+			}
+			// clipPath
+			case 'clipPath': {
+				$this->svgclipmode = false;
+				break;
+			}
+			case 'g': {
+				// ungroup: remove last style from array
+				array_pop($this->svgstyles);
+				$this->StopTransform();
+				break;
+			}
+			case 'text':
+			case 'tspan': {
+				if ($this->svgtextmode['invisible']) {
+					// This implementation must be fixed to following the rule:
+					// If the 'visibility' property is set to hidden on a 'tspan', 'tref' or 'altGlyph' element, then the text is invisible but still takes up space in text layout calculations.
 					break;
 				}
-				default: {
-					break;
+				// print text
+				$text = $this->stringTrim($this->svgtext);
+				if ($this->svgtextmode['text-anchor'] != 'start') {
+					$textlen = $this->GetStringWidth($text);
+					// check if string is RTL text
+					if ($this->svgtextmode['text-anchor'] == 'end') {
+						if ($this->svgtextmode['rtl']) {
+							$this->x += $textlen;
+						} else {
+							$this->x -= $textlen;
+						}
+					} elseif ($this->svgtextmode['text-anchor'] == 'middle') {
+						if ($this->svgtextmode['rtl']) {
+							$this->x += ($textlen / 2);
+						} else {
+							$this->x -= ($textlen / 2);
+						}
+					}
 				}
+				$textrendermode = $this->textrendermode;
+				$textstrokewidth = $this->textstrokewidth;
+				$this->setTextRenderingMode($this->svgtextmode['stroke'], true, false);
+				$this->Cell(0, 0, $text, 0, 0, '', false, '', 0, false, 'L', 'T');
+				// restore previous rendering mode
+				$this->textrendermode = $textrendermode;
+				$this->textstrokewidth = $textstrokewidth;
+				$this->svgtext = '';
+				$this->StopTransform();
+				array_pop($this->svgstyles);
+				break;
+			}
+			default: {
+				break;
 			}
 		}
+	}
 
-		/**
-		 * Sets the character data handler function for the XML parser.
-		 * @param resource $parser The first parameter, parser, is a reference to the XML parser calling the handler.
-		 * @param string $data The second parameter, data, contains the character data as a string.
-		 * @author Nicola Asuni
-		 * @since 5.0.000 (2010-05-02)
-		 * @access protected
-		 */
-		protected function segSVGContentHandler($parser, $data) {
-			$this->svgtext .= $data;
-		}
+	/**
+	 * Sets the character data handler function for the XML parser.
+	 * @param $parser (resource) The first parameter, parser, is a reference to the XML parser calling the handler.
+	 * @param $data (string) The second parameter, data, contains the character data as a string.
+	 * @author Nicola Asuni
+	 * @since 5.0.000 (2010-05-02)
+	 * @protected
+	 */
+	protected function segSVGContentHandler($parser, $data) {
+		$this->svgtext .= $data;
+	}
+
+	// --- END SVG METHODS -----------------------------
 
-		// --- END SVG METHODS -----------------------------
+} // END OF TCPDF CLASS
 
-	} // END OF TCPDF CLASS
-}
 //============================================================+
 // END OF FILE
 //============================================================+
-?>
diff --git a/libs/tcpdf/unicode_data.php b/libs/tcpdf/unicode_data.php
index 9a50fa37080eec26d62f6f3913cfd237a07ee9fc..926ce7bc8debef402f0521749bb5bbe77d6240bb 100644
--- a/libs/tcpdf/unicode_data.php
+++ b/libs/tcpdf/unicode_data.php
@@ -1,9 +1,9 @@
 <?php
 //============================================================+
 // File name   : unicode_data.php
-// Version     : 1.0.004
+// Version     : 1.0.007
 // Begin       : 2008-01-01
-// Last Update : 2010-06-03
+// Last Update : 2010-12-16
 // 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)
 // -------------------------------------------------------------------
@@ -35,48 +35,69 @@
 // Saleh AlMatrafe
 
 /**
- * Unicode data for TCPDF library.
+ * @file
+ * Unicode data class for TCPDF library.
  * @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
  * @package com.tecnick.tcpdf
- * @link http://www.tcpdf.org
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
  * @since 2.1.000 (2008-01-08)
-*/
+ */
 
 /**
-* Left-to-Right Mark
-*/
-define('K_LRM', 8206);
+ * @class TCPDF_UNICODE_DATA
+ * This is a PHP class containing Unicde data for TCPDF library
+ * @package com.tecnick.tcpdf
+ * @version 1.0.007
+ * @author Nicola Asuni - info@tecnick.com
+ */
+class TCPDF_UNICODE_DATA {
+
 /**
-* Right-to-Left Mark
-*/
-define('K_RLM', 8207);
+ * Unicode code for Left-to-Right Mark.
+ * @public
+ */
+public $uni_LRM = 8206;
+
 /**
-* Left-to-Right Embedding
-*/
-define('K_LRE', 8234);
+ * Unicode code for Right-to-Left Mark.
+ * @public
+ */
+public $uni_RLM = 8207;
+
 /**
-* Right-to-Left Embedding
-*/
-define('K_RLE', 8235);
+ * Unicode code for Left-to-Right Embedding.
+ * @public
+ */
+public $uni_LRE = 8234;
+
 /**
-* Pop Directional Format
-*/
-define('K_PDF', 8236);
+ * Unicode code for Right-to-Left Embedding.
+ * @public
+ */
+public $uni_RLE = 8235;
+
 /**
-* Left-to-Right Override
-*/
-define('K_LRO', 8237);
+ * Unicode code for Pop Directional Format.
+ * @public
+ */
+public $uni_PDF = 8236;
+
+/**
+ * Unicode code for Left-to-Right Override.
+ * @public
+ */
+public $uni_LRO = 8237;
+
 /**
-* Right-to-Left Override
-*/
-define('K_RLO', 8238);
+ * Unicode code for Right-to-Left Override.
+ * @public
+ */
+public $uni_RLO = 8238;
 
-/*
+/**
  * Pattern to test RTL (Righ-To-Left) strings using regular expressions.
+ * @public
  */
-define('K_RE_PATTERN_RTL', "/(
+public $uni_RE_PATTERN_RTL = "/(
 	  \xD6\xBE                                             # R
 	| \xD7[\x80\x83\x86\x90-\xAA\xB0-\xB4]                 # R
 	| \xDF[\x80-\xAA\xB4\xB5\xBA]                          # R
@@ -88,13 +109,13 @@ define('K_RE_PATTERN_RTL', "/(
 	| \xF0\x90\xA8[\x80\x90-\x93\x95-\x97\x99-\xB3]        # R
 	| \xF0\x90\xA9[\x80-\x87\x90-\x98]                     # R
 	| \xE2\x80[\xAB\xAE]                                   # RLE & RLO
-	)/x");
+	)/x";
 
-/*
- * Pattern to test Arabic strings using regular expressions.
- * source: http://www.w3.org/International/questions/qa-forms-utf-8
+/**
+ * Pattern to test Arabic strings using regular expressions. Source: http://www.w3.org/International/questions/qa-forms-utf-8
+ * @public
  */
-define("K_RE_PATTERN_ARABIC", "/(
+public $uni_RE_PATTERN_ARABIC = "/(
 		  \xD8[\x80-\x83\x8B\x8D\x9B\x9E\x9F\xA1-\xBA]  # AL
 		| \xD9[\x80-\x8A\xAD-\xAF\xB1-\xBF]             # AL
 		| \xDA[\x80-\xBF]                               # AL
@@ -114,13 +135,13 @@ define("K_RE_PATTERN_ARABIC", "/(
 		| \xEF\xBA[\x80-\xBF]                           # AL
 		| \xEF\xBB[\x80-\xBC]                           # AL
 		| \xD9[\xA0-\xA9\xAB\xAC]                       # AN
-		)/x");
+		)/x";
 
 /**
- * Array of unicode types
+ * Array of Unicode types.
+ * @public
  */
-global $unicode;
-$unicode = array(
+public $uni_type = array(
 0=>'BN',
 1=>'BN',
 2=>'BN',
@@ -17844,12 +17865,10 @@ $unicode = array(
 );
 
 /**
- * Mirror unicode characters.
- * For information on bidi mirroring, see UAX #9: Bidirectional Algorithm,
- * at http://www.unicode.org/unicode/reports/tr9/
+ * Mirror unicode characters. For information on bidi mirroring, see UAX #9: Bidirectional Algorithm, at http://www.unicode.org/unicode/reports/tr9/
+ * @public
  */
-global $unicode_mirror;
-$unicode_mirror = array (
+public $uni_mirror = array (
 0x0028=>0x0029,
 0x0029=>0x0028,
 0x003C=>0x003E,
@@ -18204,11 +18223,10 @@ $unicode_mirror = array (
 0xFF63=>0xFF62);
 
 /**
- * Arabic shape subtitutions
- * char code=>isolated, final, initial, medial
+ * Arabic shape substitutions: char code => (isolated, final, initial, medial).
+ * @public
  */
-global $unicode_arlet;
-$unicode_arlet = array(
+public $uni_arabicsubst = array(
 1569=>array(65152),
 1570=>array(65153, 65154, 65153, 65154),
 1571=>array(65155, 65156, 65155, 65156),
@@ -18288,11 +18306,10 @@ $unicode_arlet = array(
 );
 
 /**
- * Arabic laa letter
- * char code=>isolated, final, initial, medial
+ * Arabic laa letter: (char code => isolated, final, initial, medial).
+ * @public
  */
-global $laa_array;
-$laa_array = array (
+public $uni_laa_array = array (
 1570 =>array(65269, 65270, 65269, 65270),
 1571 =>array(65271, 65272, 65271, 65272),
 1573 =>array(65273, 65274, 65273, 65274),
@@ -18302,10 +18319,10 @@ $laa_array = array (
 /**
  * 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.
- * second NSM char code=>substitution char
+ * second NSM char code => substitution char
+ * @public
  */
-global $diacritics;
-$diacritics = array (
+public $uni_diacritics = array (
 1612=>64606, # Shadda + Dammatan
 1613=>64607, # Shadda + Kasratan
 1614=>64608, # Shadda + Fatha
@@ -18314,10 +18331,10 @@ $diacritics = array (
 );
 
 /**
- * Array of character substitutions from UTF-8 unicode to latin1
+ * Array of character substitutions from UTF-8 Unicode to Latin1.
+ * @public
  */
-global $utf8tolatin;
-$utf8tolatin = array (
+public $uni_utf8tolatin = array (
 8364=>128, # Euro1
 338=>140,  # OE
 352=>138,  # Scaron
@@ -18347,7 +18364,8 @@ $utf8tolatin = array (
 382=>158   # zcaron2
 );
 
+} // --- END OF CLASS ---
+
 //============================================================+
 // END OF FILE
 //============================================================+
-?>
diff --git a/piwik.php b/piwik.php
index f36b8433397cdf88ab19a2a4b82a1199f40ffdff..a74a6cba6797afe732e16650464529adac79613c 100644
--- a/piwik.php
+++ b/piwik.php
@@ -55,6 +55,7 @@ if($GLOBALS['PIWIK_TRACKER_DEBUG'] === true)
 	require_once PIWIK_INCLUDE_PATH .'/core/Loader.php';
 	require_once PIWIK_INCLUDE_PATH .'/core/ErrorHandler.php';
 	require_once PIWIK_INCLUDE_PATH .'/core/ExceptionHandler.php';
+	$timer = new Piwik_Timer();
 	set_error_handler('Piwik_ErrorHandler');
 	set_exception_handler('Piwik_ExceptionHandler');
 	printDebug($_GET);
@@ -74,4 +75,5 @@ if(!defined('PIWIK_ENABLE_TRACKING') || PIWIK_ENABLE_TRACKING)
 	$process->main();
 	ob_end_flush();
 	printDebug($_COOKIE);
+	printDebug($timer);
 }
diff --git a/plugins/PDFReports/API.php b/plugins/PDFReports/API.php
index 372442dcdeae88d9485345fb37e1d10392fb40ba..b1c06ef80de704e02072b8da125d29afd62e6f76 100644
--- a/plugins/PDFReports/API.php
+++ b/plugins/PDFReports/API.php
@@ -276,7 +276,7 @@ class Piwik_PDFReports_API
         }
 	
         // Generates the PDF Report
-		$pdf = new Piwik_PDFReports_PDFRenderer($websiteName, $prettyDate, $description);
+		$pdf = new Piwik_PDFReports_PDFRenderer($websiteName, $prettyDate, $description, $language);
         $pdf->paintFirstPage();
         foreach($processedReports as $report)
         {
diff --git a/plugins/PDFReports/PDFRenderer.php b/plugins/PDFReports/PDFRenderer.php
index ba3fbc1239a4ce90a803720e038fddd96b7851b1..c4a53579a83b346cf1d49246a07ccec4001a02d3 100644
--- a/plugins/PDFReports/PDFRenderer.php
+++ b/plugins/PDFReports/PDFRenderer.php
@@ -15,7 +15,6 @@ require_once PIWIK_INCLUDE_PATH . '/libs/tcpdf/tcpdf.php';
 
 class Piwik_PDFReports_PDFRenderer extends TCPDF
 {
-	private $reportFont     	   = 'helvetica';
 	private $reportFontBold 	   = 'B';
 	private $reportSimpleFontSize = '12';
 	private $reportHeaderFontSize = '22';
@@ -41,12 +40,38 @@ class Piwik_PDFReports_PDFRenderer extends TCPDF
 	private $currentPage = 0;
 	private $lastTableIsSimpleReport = false;
 
-	public function __construct($websiteName, $prettyDate, $description)
+	public function __construct($websiteName, $prettyDate, $description, $language)
 	{
 		parent::__construct();
 		$this->websiteName = $websiteName;
 		$this->prettyDate = $prettyDate;
 		$this->description = $description;
+		
+		switch($language)
+		{
+			case 'zh-tw':
+			case 'ja':
+				$reportFont = 'msungstdlight';
+				break;
+			
+			case 'zh-cn':
+				$reportFont = 'stsongstdlight';
+			break;
+			
+			case 'ko':
+				$reportFont = 'hysmyeongjostdmedium';
+				break;
+			
+			case 'ar':
+				$reportFont = 'almohanad';
+				break;
+				
+			case 'en':
+			default:
+				$reportFont = 'dejavusans';
+				break;
+		}
+		$this->reportFont = $reportFont;
 	}
 
 	public function setReport($reportMetadata, $report, $columns, $rowsMetadata)