Lines Matching refs:mpdf

37 			if ($this->mpdf->onlyCoreFonts) {
38 $objattr['title'] = mb_convert_encoding($objattr['title'], $this->mpdf->mb_enc, 'UTF-8');
41 if ($this->mpdf->useActiveForms) {
62 $this->mpdf->InlineProperties['TEXTAREA'] = $this->mpdf->saveInlineProperties();
65 $this->mpdf->SetFont($properties['FONT-FAMILY'], '', 0, false);
68 $mmsize = $this->sizeConverter->convert($properties['FONT-SIZE'], $this->mpdf->default_font_size / Mpdf::SCALE);
69 $this->mpdf->SetFontSize($mmsize * Mpdf::SCALE, false);
72 $objattr['color'] = $this->colorConverter->convert($properties['COLOR'], $this->mpdf->PDFAXwarnings);
74 $objattr['fontfamily'] = $this->mpdf->FontFamily;
75 $objattr['fontsize'] = $this->mpdf->FontSizePt;
76 if ($this->mpdf->useActiveForms) {
86 $objattr['border-col'] = $this->colorConverter->convert($properties['BORDER-TOP-COLOR'], $this->mpdf->PDFAXwarnings);
89 $objattr['background-col'] = $this->colorConverter->convert($properties['BACKGROUND-COLOR'], $this->mpdf->PDFAXwarnings);
92 $this->mpdf->SetLineHeight('', $this->form->textarea_lineheight);
99 $this->mpdf->blk[$this->mpdf->blklvl]['inner_width'],
100 $this->mpdf->FontSize,
107 $this->mpdf->blk[$this->mpdf->blklvl]['inner_width'],
108 $this->mpdf->FontSize,
125 $charsize = $this->mpdf->GetCharWidth('w', false);
132 - ($this->form->form_element_spacing['textarea']['inner']['v'] * 2)) / $this->mpdf->lineheight);
139 $objattr['height'] = ($rowsize * $this->mpdf->lineheight)
146 $this->mpdf->specialcontent = serialize($objattr);
148 if ($this->mpdf->tableLevel) { // *TABLES*
149 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'] += $objattr['width']; // *TABLES*
155 $this->mpdf->ignorefollowingspaces = false;
156 $this->mpdf->specialcontent = '';
157 if ($this->mpdf->InlineProperties['TEXTAREA']) {
158 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties['TEXTAREA']);
160 unset($this->mpdf->InlineProperties['TEXTAREA']);