100 Points

Status
Not open for further replies.
B

Brandon

Guest
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
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
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
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
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.
 
Status
Not open for further replies.
Top