valeeeeeeeee
Código PHP:
<?php
$text1 = $_GET["nombre"];
$text2 = $_GET["numero"];
$image = imagecreatefromPng("camiseta.png"); // Buscas la imagen para el fondo
$font = "impact.ttf"; // buscas la fuente que quieras
$textcolor = imagecolorallocate($image,255,255,255); // seleccionas el color para el texto
$largo = strlen($text1);
$centro = 100 - ($largo*6);
imagettftext($image, 18, 0, $centro, 100, $textcolor, $font, $text1); // este es el texto que necesito centrar
imagettftext($image, 35, 0, 75, 150, $textcolor, $font, $text2); // este tambien
header("Content-type: image/png"); // envia al navegador la imagen
$nombre_archivo=time().".png"; // asignar nombre
imagePng($image, $nombre_archivo);
header ("Location: http://www.extend.cl/facebook/pagina2.php?imagen=".$nombre_archivo);
//imagedestroy($image); // destruimos la imagen del servidor
?>