lib/FPDF/src/fpdf.php 1 location
|
@@ 635-636 (lines=2) @@
|
| 632 |
|
if($this->ColorFlag)
|
| 633 |
|
$s .= 'q '.$this->TextColor.' ';
|
| 634 |
|
$s .= sprintf('BT %.2F %.2F Td (%s) Tj ET',($this->x+$dx)*$k,($this->h-($this->y+.5*$h+.3*$this->FontSize))*$k,$this->_escape($txt));
|
| 635 |
|
if($this->underline)
|
| 636 |
|
$s .= ' '.$this->_dounderline($this->x+$dx,$this->y+.5*$h+.3*$this->FontSize,$txt);
|
| 637 |
|
if($this->ColorFlag)
|
| 638 |
|
$s .= ' Q';
|
| 639 |
|
if($link)
|
ufpdf/ufpdf.php 1 location
|
@@ 146-147 (lines=2) @@
|
| 143 |
|
$s.='q '.$this->TextColor.' ';
|
| 144 |
|
$txtstring=$this->_escapetext($txt);
|
| 145 |
|
$s.=sprintf('BT %.2f %.2f Td %s Tj ET',($this->x+$dx)*$k,($this->h-($this->y+.5*$h+.3*$this->FontSize))*$k,$txtstring);
|
| 146 |
|
if($this->underline)
|
| 147 |
|
$s.=' '.$this->_dounderline($this->x+$dx,$this->y+.5*$h+.3*$this->FontSize,$width,$txt);
|
| 148 |
|
if($this->ColorFlag)
|
| 149 |
|
$s.=' Q';
|
| 150 |
|
if($link)
|