"Warning: Cannot modify header information - ........... on line 760". En la linea 760 tengo "Header ( "Content-type: image/gif" ) ;". Algo no estoy haciendo bien, evidentemente. ¿Alguien me puede ayudar? Gracias.
Código PHP:
$ruta = '......./r8vaulti.gif'; //imagen proviniente de URL
list($width, $height) = getimagesize($ruta);
$ancho = 480;
$alto = 530;
$imagen = ImageCreate ( $ancho , $alto ) ;
$source = imagecreatefromgif($ruta);
ImageCopyResized ( $imagen , $source , 0 , 0 , 0 , 0 , $ancho , $alto , $width , $height ) ;
Header ( "Content-type: image/gif" ) ;
imageGif ( $imagen ) ;