diff --git a/lpdf.php b/lpdf.php index 95fad238..bcea2b33 100644 --- a/lpdf.php +++ b/lpdf.php @@ -748,17 +748,19 @@ class lpdf $h = $col_height * $line_height; $textstr=trim($dataline[$c]); - pdf_show_boxed($this->pdf,$textstr, + $notfit = pdf_show_boxed($this->pdf,$textstr, $this->loc($xpos+$table_padding),$this->loc($this->yloc-$h), $this->loc($width-2*$table_padding),$this->loc($h), $table['dataalign'][$c],null); - //put a little "..." at the end of the field if($notfit) { pdf_setfont($this->pdf,$this->normalfont,8); - pdf_show_boxed($this->pdf,"...",$this->loc($xpos+$width-0.10),$this->loc($this->yloc-0.05),$this->loc(0.10),$this->loc($line_height),$table['dataalign'][$c],null); + pdf_show_boxed($this->pdf,"...", + $this->loc($xpos+$width-0.10),$this->loc($this->yloc-$line_height-0.05), + $this->loc(0.10),$this->loc($line_height), + $table['dataalign'][$c],null); pdf_setfont($this->pdf,$this->normalfont,10); }