Can anyone give me code to center text on an image using the GD Library? -Enigma
B Brandon Guest Feb 20, 2006 #1 Can anyone give me code to center text on an image using the GD Library? -Enigma
Chris S Retired Messages 2,055 Reaction score 1 Points 38 Feb 20, 2006 #2 try this PHP: function CenterText($string, $font, $imgwidth, $fontsize) { list($lx,$ly,$rx,$ry) = imagepsbbox($string,$font,$fontsize,0,0,0); $textwidth = $rx - $lx; $imw = ($imgwidth-$textwidth); return $imw; }
try this PHP: function CenterText($string, $font, $imgwidth, $fontsize) { list($lx,$ly,$rx,$ry) = imagepsbbox($string,$font,$fontsize,0,0,0); $textwidth = $rx - $lx; $imw = ($imgwidth-$textwidth); return $imw; }
B Brandon Guest Feb 20, 2006 #3 Ok can you just make it so I can just plug in an image, Im working on my site right now.
Chris S Retired Messages 2,055 Reaction score 1 Points 38 Feb 20, 2006 #4 i have no idea to tell u the truth i took that off of php.net
Bryon I Fix Things Messages 8,149 Reaction score 101 Points 48 Feb 20, 2006 #7 Umm. I don't think there really is an accurate way to center the text automatically. Maybe using something like imagettfbbox(). Try looking at the comments on that page.
Umm. I don't think there really is an accurate way to center the text automatically. Maybe using something like imagettfbbox(). Try looking at the comments on that page.