Exemplo n.º 1
0
 public function getWidth($text, Font $font)
 {
     $box = imagettfbbox($font->getSize(), 0, $font->getPath(), $text);
     return round(abs($box[2] - $box[0]), 1);
 }