Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/04/2007, 06:58
Raules
 
Fecha de Ingreso: mayo-2005
Ubicación: Murcia
Mensajes: 319
Antigüedad: 19 años, 8 meses
Puntos: 0
Ver Todo Tipo De Archivos

hola como podria con este codigo ver todo tipo de imagenes (jpg, JPG, gif, GIF..)

Código PHP:
<?
$fuente 
= @imagecreatefromjpeg($ruta);
$imgAncho imagesx($fuente); 
$imgAlto imagesy($fuente); 
$imagen imagecreatetruecolor($ancho,$alto); 
imagecopyresampled($imagen,$fuente,0,0,0,0,$ancho,$alto,$imgAncho,$imgAlto); 
Header("Content-type: image/jpeg");
imagejpeg($imagen);
imagedestroy($imagen);
?>
Gracias.