Can anyone give me code to center text on an image using the GD Library?
-Enigma
Can anyone give me code to center text on an image using the GD Library?
-Enigma
try this
PHP Code: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;
}
I would love to change the world, but they won't give me the source code
Ok can you just make it so I can just plug in an image, Im working on my site right now.
i have no idea
to tell u the truth i took that off of php.net
I would love to change the world, but they won't give me the source code
Ok, ill try it.
No maybe NedreN will see this thread.
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.