Ver Mensaje Individual
  #5 (permalink)  
Antiguo 25/03/2010, 06:07
Kristt
 
Fecha de Ingreso: diciembre-2008
Mensajes: 118
Antigüedad: 15 años, 4 meses
Puntos: 6
Respuesta: PHP GD - No hay manera... Recuadro negro

y mas acertado creo que será esto:

Código PHP:
header("Content-type: image/png");
$im imagecreatetruecolor(200100);
$color imagecolorallocate($im255255255);
imagedestroy($im); 

imagefill($im00$color);

$fuente "GoodDogCool.otf";
imagettftext($im1501520$color$fuente"TEXTO!");
imagepng($im);