Robnei
Beta
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Hola que tal programadores de Betas, haber si me dan una ayudita con este script quiero centrar el texto pero no me sale el codigo es este:
<?php
header('Content-Type: image/jpeg');
$nombre=ucfirst($_GET['nombre']);
$imagen=imagecreatefromjpeg("diploma-borracho.jpg");
$gris = imagecolorallocate($imagen,3,27,150);
$fuente = "akadora.ttf";
$total=strlen($nombre);
$t_fuente=20;
$ancho = 20*$total;
$x = (800 - $ancho)/2;
$tamano = $t_fuente;
imagettftext($imagen,$tamano,0,$x,260,$gris,$fuente, $nombre);
imagejpeg($imagen);
imagedestroy($imagen);
?>
Genera de esta forma:
http://www.robnei.com/diploma/borracho.php?nombre=Miguel Angel Tenorio
Pero hay nombres largo y se va al lado izquiero como este:
http://www.robnei.com/diploma/borracho.php?nombre=Juano Luis Choquecota Ccussi
<?php
header('Content-Type: image/jpeg');
$nombre=ucfirst($_GET['nombre']);
$imagen=imagecreatefromjpeg("diploma-borracho.jpg");
$gris = imagecolorallocate($imagen,3,27,150);
$fuente = "akadora.ttf";
$total=strlen($nombre);
$t_fuente=20;
$ancho = 20*$total;
$x = (800 - $ancho)/2;
$tamano = $t_fuente;
imagettftext($imagen,$tamano,0,$x,260,$gris,$fuente, $nombre);
imagejpeg($imagen);
imagedestroy($imagen);
?>
Genera de esta forma:
http://www.robnei.com/diploma/borracho.php?nombre=Miguel Angel Tenorio
Pero hay nombres largo y se va al lado izquiero como este:
http://www.robnei.com/diploma/borracho.php?nombre=Juano Luis Choquecota Ccussi

