Ver Mensaje Individual
  #7 (permalink)  
Antiguo 25/03/2010, 06:37
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

Código PHP:

header
("Content-type: image/png");
$im imagecreatetruecolor(200100);
$color imagecolorallocate($im255255255);

imagefill($im00$color);

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