De hecho, este script me funciona correctamente:
Código PHP:
header<?
header ("Content-type: image/png" );
$im2 = @ImageCreate ( 120, 20)//rectangulo de longitud 120 //si or die ("Cannot create a new GD image.");
$background_color = ImageColorAllocate ($im2, 210, 155, 100);
$text_color = ImageColorAllocate ($im2, 190, 14, 91);
ImageString ($im2, 8, 10, 3, "100%", $text_color );
ImagePng ($im2);
?>
¿TIENE EL PHP-NUKE 5.6 LA HABILIDAD DE DESHABILITARME LAS GD?
UN SALUDO.