HTTP headers
    
		    El siguiente script crea thumnail a partir de una imagen. 
$fuente = @imagecreatefromgif($ruta);
$imgAncho = imagesx ($fuente);
$imgAlto =imagesy($fuente);
$imagen = ImageCreate($ancho,$alto);
ImageCopyResized($imagen,$fuente,0,0,0,0,$ancho,$alto,$imgAncho,$imgAlto);
Header("Content-type: image/gif");
imageGif($imagen);
Pues bien cuando lo ejecuta dedes una etiqueta
<img src="imagen.php?ruta=burja.gif&ancho=200&alto=150">
en un fichero php da el siguiente erro.
The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are:
¿alquien sabe que le pasa?
    $fuente = @imagecreatefromgif($ruta);
$imgAncho = imagesx ($fuente);
$imgAlto =imagesy($fuente);
$imagen = ImageCreate($ancho,$alto);
ImageCopyResized($imagen,$fuente,0,0,0,0,$ancho,$alto,$imgAncho,$imgAlto);
Header("Content-type: image/gif");
imageGif($imagen);
Pues bien cuando lo ejecuta dedes una etiqueta
<img src="imagen.php?ruta=burja.gif&ancho=200&alto=150">
en un fichero php da el siguiente erro.
The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are:
¿alquien sabe que le pasa?
