]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/Sugarpdf/Sugarpdf.php
Release 6.5.10
[Github/sugarcrm.git] / include / Sugarpdf / Sugarpdf.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39
40 if(file_exists('custom/include/Sugarpdf/sugarpdf_config.php')){
41     require_once('custom/include/Sugarpdf/sugarpdf_config.php');
42 } else {
43     require_once('include/Sugarpdf/sugarpdf_config.php');
44 }
45
46 require_once('include/tcpdf/tcpdf.php');
47 require_once('include/Sugarpdf/SugarpdfHelper.php');
48
49 class Sugarpdf extends TCPDF
50 {
51     /**
52      * Stretch options constants
53      */
54     const STRETCH_NONE = 0;
55     const STRETCH_SCALE = 1;
56     const STRETCH_SCALE_FORCED = 2;
57     const STRETCH_SPACING = 3;
58     const STRETCH_SPACING_FORCED = 4;
59
60     /**
61      * This array is meant to hold an objects/data that we would like to pass between
62      * the controller and the view.  The bean will automatically be set for us, but this
63      * is meant to hold anything else.
64      */
65     var $sugarpdf_object_map = array();
66     /**
67      * The name of the current module.
68      */
69     var $module = '';
70     /**
71      * The name of the current action.
72      */
73     var $action = '';
74     /**
75      */
76     var $bean = null;
77      /**
78      * Any errors that occured this can either be set by the view or the controller or the model
79      */
80     var $errors = array();
81     /**
82      * Use to set the filename of the output pdf file.
83      */
84     var $fileName = PDF_FILENAME;
85     /**
86      * Use for the ACL access.
87      */
88     var $aclAction = PDF_ACL_ACCESS;
89     /**
90      * Constructor which will peform the setup.
91      */
92
93
94     function __construct($bean = null, $sugarpdf_object_map = array(),$orientation=PDF_PAGE_ORIENTATION, $unit=PDF_UNIT, $format=PDF_PAGE_FORMAT, $unicode=true, $encoding='UTF-8', $diskcache=false){
95         global $locale;
96       //  $encoding = $locale->getExportCharset();
97         if(empty($encoding)){
98             $encoding = "UTF-8";
99         }
100         parent::__construct($orientation,$unit,$format,$unicode,$encoding,$diskcache);
101         $this->module = $GLOBALS['module'];
102         $this->bean = $bean;
103         $this->sugarpdf_object_map = $sugarpdf_object_map;
104         if(!empty($_REQUEST["sugarpdf"])){
105             $this->action = $_REQUEST["sugarpdf"];
106         }
107     }
108
109     /**
110      * This method will be called from the controller and is not meant to be overridden.
111      */
112     function process(){
113         $this->preDisplay();
114         $this->display();
115
116     }
117
118     /**
119      * This method will display the errors on the page.
120      */
121     function displayErrors(){
122         foreach($this->errors as $error) {
123             echo '<span class="error">' . $error . '</span><br>';
124         }
125     }
126
127     /**
128      * [OVERRIDE] - This method is meant to overidden in a subclass. The purpose of this method is
129      * to allow a view to do some preprocessing before the display method is called. This becomes
130      * useful when you have a view defined at the application level and then within a module
131      * have a sub-view that extends from this application level view.  The application level
132      * view can do the setup in preDisplay() that is common to itself and any subviews
133      * and then the subview can just override display(). If it so desires, can also override
134      * preDisplay().
135      */
136     function preDisplay(){
137         // set document information
138         $this->SetCreator(PDF_CREATOR);
139         $this->SetAuthor(PDF_AUTHOR);
140         $this->SetTitle(PDF_TITLE);
141         $this->SetSubject(PDF_SUBJECT);
142         $this->SetKeywords(PDF_KEYWORDS);
143
144         // set other properties
145         $compression=false;
146         if(PDF_COMPRESSION == "on"){
147             $compression=true;
148         }
149         $this->SetCompression($compression);
150         $protection=array();
151         if(PDF_PROTECTION != ""){
152             $protection=explode(",",PDF_PROTECTION);
153         }
154
155         $this->SetProtection($protection,blowfishDecode(blowfishGetKey('sugarpdf_pdf_user_password'), PDF_USER_PASSWORD),blowfishDecode(blowfishGetKey('sugarpdf_pdf_owner_password'), PDF_OWNER_PASSWORD));
156         $this->setCellHeightRatio(K_CELL_HEIGHT_RATIO);
157         $this->setJPEGQuality(intval(PDF_JPEG_QUALITY));
158         $this->setPDFVersion(PDF_PDF_VERSION);
159
160         // set default header data
161         $this->setHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE, PDF_HEADER_STRING);
162
163         // set header and footer fonts
164         $this->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
165         $this->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
166
167         //set margins
168         $this->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
169         $this->setHeaderMargin(PDF_MARGIN_HEADER);
170         $this->setFooterMargin(PDF_MARGIN_FOOTER);
171
172         //set auto page breaks
173         $this->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
174
175         //set image scale factor
176         $this->setImageScale(PDF_IMAGE_SCALE_RATIO);
177
178         //set some language-dependent strings
179         //$this->setLanguageArray($l);
180
181         // ---------------------------------------------------------
182
183     }
184
185     /**
186      * [OVERRIDE] - This method is meant to overidden in a subclass.
187      */
188     function display(){
189         $this->AddPage();
190         $this->SetFont(PDF_FONT_NAME_MAIN,'B',16);
191         $this->MultiCell(0,0,'Tcpdf class for this module and action has not been implemented.',0,'C');
192         $this->Info();
193
194
195     }
196
197     /**
198      * [OVERRIDE]
199      * This method override the regular Header() method to enable the custom image directory in addition to the OOB image directory.
200      * This method is used to render the page header.
201      * It is automatically called by AddPage().
202      * @access public
203     * @see include/tcpdf/TCPDF#Header()
204      */
205     public function Header() {
206         $ormargins = $this->getOriginalMargins();
207         $headerfont = $this->getHeaderFont();
208         $headerdata = $this->getHeaderData();
209
210         if (($headerdata['logo']) AND ($headerdata['logo'] != K_BLANK_IMAGE)) {
211
212             // START SUGARPDF
213             $logo = K_PATH_CUSTOM_IMAGES.$headerdata['logo'];
214             $imsize = @getimagesize($logo);
215             if ($imsize === FALSE) {
216                 // encode spaces on filename
217                 $logo = str_replace(' ', '%20', $logo);
218                 $imsize = @getimagesize($logo);
219                 if ($imsize === FALSE) {
220                     $logo = K_PATH_IMAGES.$headerdata['logo'];
221                 }
222             }
223             // END SUGARPDF
224
225             $this->Image($logo, $this->GetX(), $this->getHeaderMargin(), $headerdata['logo_width']);
226             $imgy = $this->getImageRBY();
227         } else {
228             $imgy = $this->GetY();
229         }
230         $cell_height = round(($this->getCellHeightRatio() * $headerfont[2]) / $this->getScaleFactor(), 2);
231         // set starting margin for text data cell
232         if ($this->getRTL()) {
233             $header_x = $ormargins['right'] + ($headerdata['logo_width'] * 1.1);
234         } else {
235             $header_x = $ormargins['left'] + ($headerdata['logo_width'] * 1.1);
236         }
237         $this->SetTextColor(0, 0, 0);
238         // header title
239         $this->SetFont($headerfont[0], 'B', $headerfont[2] + 1);
240         $this->SetX($header_x);
241         $this->Cell(0, $cell_height, $headerdata['title'], 0, 1, '', 0, '', 0);
242         // header string
243         $this->SetFont($headerfont[0], $headerfont[1], $headerfont[2]);
244         $this->SetX($header_x);
245         $this->MultiCell(0, $cell_height, $headerdata['string'], 0, '', 0, 1, '', '', true, 0, false);
246         // print an ending header line
247         $this->SetLineStyle(array('width' => 0.85 / $this->getScaleFactor(), 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)));
248         $this->SetY((2.835 / $this->getScaleFactor()) + max($imgy, $this->GetY()));
249         if ($this->getRTL()) {
250             $this->SetX($ormargins['right']);
251         } else {
252             $this->SetX($ormargins['left']);
253         }
254         $this->Cell(0, 0, '', 'T', 0, 'C');
255     }
256
257     /**
258     * [OVERRIDE] SetFont method in TCPDF Library
259     * This method override the regular SetFont() method to enable the custom font directory in addition to the OOB font directory.
260     *
261     * @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.
262     * @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></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.
263     * @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
264     * @param string $fontfile The font definition file. By default, the name is built from the family and style, in lower case with no spaces.
265     * @access public
266     * @see include/tcpdf/TCPDF#SetFont()
267     */
268     public function SetFont($family, $style='', $size=0, $fontfile='') {
269
270         if(empty($fontfile) && defined('K_PATH_CUSTOM_FONTS')){
271             // This will force addFont to search the custom directory for font before the OOB directory
272             $fontfile = K_PATH_CUSTOM_FONTS."phantomFile.phantom";
273         }
274         parent::SetFont($family, $style, $size, $fontfile);
275     }
276
277     function Info(){
278
279         $this->SetFont(PDF_FONT_NAME_MAIN,'',12);
280         $this->MultiCell(0,0,'---',0,'L');
281         $this->MultiCell(0,0,'Class: '.get_class($this),0,'L');
282         $this->MultiCell(0,0,'Extends: '.get_parent_class($this),0,'L');
283         $this->MultiCell(0,0,'---',0,'L');
284         $this->MultiCell(0,0,'Module: '.$this->module,0,'L');
285         $this->MultiCell(0,0,'Tcpdf Action: '.$this->action,0,'L');
286         $this->MultiCell(0,0,'Bean ID: '.$this->bean->getFieldValue('id'),0,'L');
287         $this->SetFont(PDF_FONT_NAME_MAIN,'',12);
288         $this->MultiCell(0,0,'---',0,'L');
289
290     }
291
292     /**
293      * [OVERRIDE] Cell method in tcpdf library.
294      * Handle charset conversion and HTML entity decode.
295      * This method override the regular Cell() method to apply the prepare_string() function to
296      * the string to print in the PDF.
297      * The cell method is used by all the methods which print text (Write, MultiCell).
298      * @see include/tcpdf/TCPDF#Cell()
299      */
300     public function Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=0, $link='', $stretch=0) {
301         parent::Cell($w, $h, prepare_string($txt), $border, $ln, $align, $fill, $link, $stretch);
302     }
303
304     /**
305      * This Ln1() method will always print a line break of one line height.
306      * The regular Ln() method print a line break which has the height of the last printed cell.
307      */
308     public function Ln1() {
309         parent::Ln($this->FontSize * $this->cell_height_ratio + 2 * $this->cMargin, false);
310     }
311
312
313     /**
314      * This method allow printing a table using the MultiCell method with a formatted options array in parameter
315      * Options :
316      * header options override the regular options for the header's cells - $options['header']
317      * cell options override the regular options for the specific cell - Array[line number (0 to x)][cell header]['options']
318      * @param $item Array[line number (0 to x)][cell header] = Cell content OR
319      *              Array[line number (0 to x)][cell header]['value'] = Cell content AND
320      *              Array[line number (0 to x)][cell header]['options'] = Array[cell properties] = values
321      * @param $options Array which can contain : width (array 'column name'=>'width value + % OR nothing'), isheader (bool), header (array), fill (string: HTML color), ishtml (bool) default: false, border (0: no border (defaul), 1: frame or all of the following characters: L ,T ,R ,B), align (L: left align, C: center, R: right align, J: justification), stretch (array 'column name'=>stretch type)
322      * @see MultiCell()
323      */
324     public function writeCellTable($item, $options=NULL)
325     {
326         // Save initial font values
327         $fontFamily = $this->getFontFamily();
328         $fontSize = $this->getFontSizePt();
329         $fontStyle = $this->getFontStyle();
330         $this->SetTextColor(0, 0, 0);
331
332         $options = $this->initOptionsForWriteCellTable($options, $item);
333
334         // HEADER
335         if(!isset($options['isheader']) || $options['isheader'] == true){
336             $headerOptions = $options;
337             if(!empty($options['header']) && is_array($options['header'])){
338                 $headerOptions = $this->initOptionsForWriteCellTable($options['header'], $item);
339             }
340             foreach($item[0] as $k => $v){
341                 $header[$k]=$k;
342             }
343             $h = $this->getLineHeightFromArray($header, $options["width"]);
344             foreach ($header as $v)
345                 $this->MultiCell($options["width"][$v],$h,$v,$headerOptions['border'],$headerOptions['align'],$headerOptions['fillstate'],0,'','',true, $options['stretch'][$v], $headerOptions['ishtml']);
346             $this->SetFillColorArray($this->convertHTMLColorToDec($options['fill']));
347             $this->Ln();
348         }
349
350         // MAIN
351         // default font
352         $this->SetFont($fontFamily,$fontStyle,$fontSize);
353         $this->SetTextColor(0, 0, 0);
354         $even=true;
355         $firstrow = true;
356         // LINES
357         foreach($item as $k=>$line){
358             $even=!$even;
359             $h = $this->getLineHeightFromArray($line, $options["width"]);
360             // in the case when cell height is greater than page height
361             // need to adjust the current page number
362             // so the following output will not overlap the previous output
363             if ($this->getNumPages() != $this->getPage()) {
364                 $this->setPage($this->getNumPages());
365             }
366             $firstcell = true;
367             //CELLS
368             foreach($line as $kk=>$cell){
369                 $cellOptions = $options;
370                 $value = $cell;
371
372                 if(is_array($cell)){
373                     $value = $cell['value'];
374                     if(!empty($cell['options']) && is_array($cell['options'])){
375                         $cellOptions = $this->initOptionsForWriteCellTable($cell['options'], $item);
376                     }
377                 }
378
379                                 //Bug45077-replacing single quote entities
380                                         $value=str_replace("&#039;","'",$value);
381                                 //Bug45077-replacing double quote entities
382                                         $value=str_replace("&quot;",'"',$value);
383
384                 if($even && !empty($options['evencolor'])){
385                     $this->SetFillColorArray($this->convertHTMLColorToDec($options['evencolor']));
386                     $cellOptions['fillstate']=1;
387                 }else if(!$even && !empty($options['oddcolor'])){
388                     $this->SetFillColorArray($this->convertHTMLColorToDec($options['oddcolor']));
389                     $cellOptions['fillstate']=1;
390                 }
391
392                 if ($firstrow) {
393                     $this->MultiCell($options["width"][$kk],$h,$value,$cellOptions['border'],$cellOptions['align'],$cellOptions['fillstate'],0,'','',true, $options['stretch'][$kk], $cellOptions['ishtml'], true, 0, false);
394                 } else {
395                     if ($firstcell) {
396                         // add page only once (for the first cell)
397                         $this->MultiCell($options["width"][$kk],$h,$value,$cellOptions['border'],$cellOptions['align'],$cellOptions['fillstate'],0,'','',true,0,$cellOptions['ishtml'], true, 0, true);
398                         $firstcell = false;
399                     } else {
400                         $this->MultiCell($options["width"][$kk],$h,$value,$cellOptions['border'],$cellOptions['align'],$cellOptions['fillstate'],0,'','',true,0,$cellOptions['ishtml'], true, 0, false);
401                     }
402                 }
403
404                 $this->SetFillColorArray($this->convertHTMLColorToDec($options['fill']));
405             }
406             $this->Ln();
407             $firstrow = false;
408         }
409         $this->SetFont($fontFamily,$fontStyle,$fontSize);
410         $this->SetTextColor(0, 0, 0);
411     }
412
413     /**
414      * This method allow printing a table using the writeHTML method with a formatted array in parameter
415      * This method can also return the table as HTML code
416      * @param $item Array[line number (0 to x)][cell header] = Cell content OR
417      *              Array[line number (0 to x)][cell header]['value'] = Cell content AND
418      *              Array[line number (0 to x)][cell header]['options'] = Array[cell properties] = values
419      * @param $returnHtml (bool) Return the table as HTML code instead of printing the HTML table
420      * @param $options Array which can contain : table (array of "HTML proprty"=>"value"),td (array of "HTML proprty"=>"value"), tr (array of "HTML proprty"=>"value"), isheader(bool), header (array of "HTML proprty"=>"value"), width (array 'column name'=>'width value + unit OR nothing')
421      * @return the HTML code if $returnHtml set to true
422      */
423     public function writeHTMLTable($item, $returnHtml=false, $options=NULL){
424         //TODO ISSUE - width in % for the td have to be multiply by the number of column.
425         //     ex: for a width of 20% in a table of 6 columns the width will have to be 120% (20*6).
426         $html="";
427         $line="";
428         if(!empty($options)){
429             foreach($options as $k=>$v){
430                 $tmp[strtolower($k)]=$v;
431             }
432             $options=$tmp;
433         }else{
434             $options=array();
435         }
436         if(!isset($options["isheader"]) || $options["isheader"] == true){
437             if(!empty($options["header"])){
438                 foreach($options["header"] as $k=>$v){
439                     $tmp[strtolower($k)]=$v;
440                 }
441                 $options["header"]=$tmp;
442             }else{
443                 $options["header"]=array("tr"=>array("bgcolor"=>"#DCDCDC"),"td"=>array());
444             }
445
446             foreach($item[0] as $k => $v){
447                 if(!empty($options["width"]))$options["header"]["td"]["width"]=$options["width"][$k];
448                 $line.=$this->wrap("td", $k, $options["header"]);
449             }
450             $html.=$this->wrap("tr", $line, $options["header"]);
451         }
452         $even = true;
453         foreach ($item as $k=>$v){
454             $even = !$even;
455             $line="";
456             if($even){
457                 if (isset($options['evencolor']))
458                 {
459                     $options["tr"]["bgcolor"] = $options['evencolor'];
460                 }
461             } else {
462                 if (isset($options['oddcolor']))
463                 {
464                     $options["tr"]["bgcolor"] = $options['oddcolor'];
465                 }
466             }
467             foreach($v as $kk => $vv){
468                 if(!empty($options["width"]) && isset($options["width"][$kk]))$options["td"]["width"]=$options["width"][$kk];
469                 $line.=$this->wrap("td", $vv, $options);
470             }
471             $html.=$this->wrap("tr", $line, $options);
472         }
473         $html=$this->wrap("table", $html, $options);
474         if($returnHtml){
475             return $html;
476         }else{
477             $this->writeHTML($html);
478         }
479     }
480
481     /**
482      * return the HTML code of the value wrap with the tag $tag. This method handle options (general and specific)
483      * @param $tag
484      * @param $value
485      * @param $options
486      * @return the HTML wrapped code
487      */
488     private function wrap($tag, $value, $options){
489         if(empty($options[$tag])){
490             $options[$tag] = array();
491         }
492         if(is_array($value)){
493             if(isset($value["options"])){
494                 // The options of a specific entity overwrite the general options
495                 $options[$tag] = $value["options"];
496             }
497             if(isset($value["value"])){
498                 $value = $value["value"];
499             }else{
500                 $value = "";
501             }
502         }
503         return wrapTag($tag, $value, $options[$tag]);
504     }
505
506     /**
507      * Return the heigth of a line depending of the width, the font and the content
508      * @param $line Array containing the data of all the cells of the line
509      * @param $width Array containing the width of all the cells of the line
510      * @return The heigth of the line
511      */
512     private function getLineHeightFromArray($line, $width){
513         $h=0;
514         foreach($line as $kk=>$cell){
515             $cellValue = $cell;
516             if(is_array($cellValue)){
517                 $tmp = $cellValue['value'];
518                 $cellValue = $tmp;
519             }
520             if($h<$this->getNumLines($cellValue, $width[$kk])){
521                 $h=$this->getNumLines($cellValue, $width[$kk]);
522             }
523         }
524         return $h * $this->FontSize * $this->cell_height_ratio + 2 * $this->cMargin;
525     }
526
527     /**
528      * Private method for writeCellTable which format and initialize the options array.
529      * @param $options array
530      * @param $item array
531      * @return $options array
532      */
533     private function initOptionsForWriteCellTable($options, $item){
534        if(!empty($options)){
535             foreach($options as $k=>$v){
536                 $tmp[strtolower($k)]=$v;
537             }
538             $options=$tmp;
539         }else{
540             $options=array();
541         }
542         // set to default if empty
543         if(empty($options["width"]) || !is_array($options["width"])){
544             $colNum = count($item[0]);
545             $defaultWidth = $this->getRemainingWidth()/$colNum;
546             foreach($item[0] as $k => $v){
547                 $options["width"][$k]=$defaultWidth;
548             }
549         }else{
550             foreach($options["width"] as $k => $v){
551                 $options["width"][$k] = $this->getHTMLUnitToUnits($v, $this->getRemainingWidth());
552             }
553
554         }
555
556         if(empty($options["border"])){
557             $options["border"]=0;
558         }
559
560         if(empty($options["align"])){
561             $options["align"]="L";
562         }
563
564         if(empty($options['ishtml'])){
565             $options['ishtml'] = false;
566         }
567         if(empty($options['border'])){
568             $options['border'] = 0;
569         }
570         foreach($item[0] as $k => $v)
571             if (empty($options['stretch'][$k]))
572                 $options['stretch'][$k] = self::STRETCH_NONE;
573
574         if(!empty($options['fill'])){
575             $this->SetFillColorArray($this->convertHTMLColorToDec($options['fill']));
576             $options['fillstate']=1;
577         }else{
578             $options['fill']="#FFFFFF";//white
579             $options['fillstate']=0;
580         }
581
582         if(!empty($options['fontfamily'])){
583             $fontFamily = $options['fontfamily'];
584         }else{
585             $fontFamily = $this->getFontFamily();
586         }
587         if(!empty($options['fontsize'])){
588             $fontSize = $options['fontsize'];
589         }else{
590             $fontSize = $this->getFontSizePt();
591         }
592         if(!empty($options['fontstyle'])){
593             $fontStyle = $options['fontstyle'];
594         }else{
595             $fontStyle = $this->getFontStyle();
596         }
597         if(!empty($options['textcolor'])){
598             $this->SetTextColorArray($this->convertHTMLColorToDec($options['textcolor']));
599         }else{
600             $this->SetTextColor(0, 0, 0);//black
601         }
602
603         $this->SetFont($fontFamily, $fontStyle, $fontSize);
604
605         return $options;
606     }
607
608     /**
609     * This is method is fix for a better handling of the count. This method now handle the line break
610     * between words.
611     * This method returns the estimated number of lines required to print the text.
612     * @param string $txt text to print
613     * @param float $w width of cell. If 0, they extend up to the right margin of the page.
614     * @return int Return the estimated number of lines.
615     * @access public
616     * @since 4.5.011
617     * @OVERRIDE
618     */
619     public function getNumLines($txt, $w=0) {
620         $lines = 0;
621         if (empty($w) OR ($w <= 0)) {
622             if ($this->rtl) {
623                 $w = $this->x - $this->lMargin;
624             } else {
625                 $w = $this->w - $this->rMargin - $this->x;
626             }
627         }
628         // max column width
629         $wmax = $w - (2 * $this->cMargin);
630         // remove carriage returns
631         $txt = str_replace("\r", '', $txt);
632         // divide text in blocks
633         $txtblocks = explode("\n", $txt);
634         // for each block;
635         foreach ($txtblocks as $block) {
636             // estimate the number of lines
637             if(empty($block)){
638                 $lines++;
639             // If the block is in more than one line
640             }else if(ceil($this->GetStringWidth($block) / $wmax)>1){
641                 //divide into words
642                 $words = explode(" ", $block);
643                 //TODO explode with space is not the best things to do...
644                 $wordBlock = "";
645                 $first=true;
646                 $lastNum = 0;
647                 $run = false;
648
649                 for($i=0; $i<count($words); $i++){
650                     if($first){
651                         $wordBlock = $words[$i];
652                     }else{
653                         $wordBlock .= " ".$words[$i];
654                     }
655                     if(ceil($this->GetStringWidth($wordBlock) / $wmax)>1){
656                         if($first){
657                             $lastNum = ceil($this->GetStringWidth($wordBlock) / $wmax);
658                             $run = true;
659                             $first = false;
660                         }else{
661                             if($run && $lastNum == ceil($this->GetStringWidth($wordBlock) / $wmax)){
662                                 // save the number of line if it is the last loop
663                                 if($i+1 == count($words)){
664                                     $lines += ceil($this->GetStringWidth($wordBlock) / $wmax);
665                                 }
666                                 continue;
667                             }else{
668                                 $first = true;
669                                 $lines += ceil($this->GetStringWidth( substr($wordBlock, 0, (strlen($wordBlock) - strlen(" ".$words[$i]))) ) / $wmax);
670                                 $i--;
671                                 $lastNum = 0;
672                                 $run = false;
673                             }
674                         }
675
676                     }else{
677                         $first = false;
678                     }
679                     // save the number of line if it is the last loop
680                     if($i+1 == count($words)){
681                         $lines += ceil($this->GetStringWidth($wordBlock) / $wmax);
682                     }
683                 }
684
685             }else{
686                 $lines++;
687             }
688         }
689         return $lines;
690     }
691
692     /**
693      * Disable zlib output compression if we are downloading the PDF.
694      *
695      * @see TCPDF::Output()
696      */
697     public function Output($name='doc.pdf', $dest='I')
698     {
699         if ( $dest == 'I' || $dest == 'D') {
700             ini_set('zlib.output_compression', 'Off');
701         }
702
703         return parent::Output($name,$dest);
704     }
705 }
706