I'm working with PHP to create png images on the fly. I am having trouble centering multiple lines of text though. I have been using the following code to get the centered x coordinate for the $name variable.
//get font width for name
$font_width = ImageFontWidth(15);
$image_width = ImageSX($im);
$length = $font_width * strlen($name);
$image_center_x = ($image_width/2)-($length/2);
But I can't seem to get it to work for multiple lines of text. The first line is centered perfectly but the next line is not. Any ideas on how to get this to work?
Thanks alot!
Sung