
03/12/2003, 13:42
|
| | Fecha de Ingreso: octubre-2003
Mensajes: 96
Antigüedad: 21 años, 5 meses Puntos: 0 | |
ok
el error:
Fatal error: Call to undefined function: imagecreate() in C:\Inetpub\wwwroot\prueba\image.php on line 4
el código:
<?php
//phpInfo();
$im=ImageCreate(200,200);
$black=ImageColorAllocate($im,0,0,0);
ImageFill($im,00,$black);
Header('Content-type: image/png');
ImagePng($im);
ImageDestroy($im);
?>
estoy en WindowsXP |