Ver Mensaje Individual
  #7 (permalink)  
Antiguo 05/02/2008, 14:21
kokoou
 
Fecha de Ingreso: enero-2008
Ubicación: Buenos Aires
Mensajes: 305
Antigüedad: 16 años, 3 meses
Puntos: 14
Re: Subir archivo condicion

probe redimencionandola, pero no me funciona :(

Código PHP:
            $filename $url;
            
header("Content-type: image/jpeg");
            list(
$width$height) = getimagesize($filename);
            
$width2 120;
            
$height2 120;
            
$thumb imagecreate($width2$height2);
            
$source imagecreatefromjpeg($filename);
            
imagecopyresized($thumb$source0000$width2$height2$width$height);
            
imagejpeg($thumb);