Tema: Imagenes
Ver Mensaje Individual
  #5 (permalink)  
Antiguo 12/06/2009, 10:23
GreyFOX
 
Fecha de Ingreso: febrero-2008
Mensajes: 49
Antigüedad: 16 años, 2 meses
Puntos: 0
Respuesta: Imagenes

Sorry puse el codigo que no era,,

Es este


$_FILES['archivo_usuario']['name']="$id01";
$file =( $_FILES['archivo_usuario']['tmp_name'] );
$image = imagecreatefromjpeg($file);

$width = imagesx($image) ;
$height = imagesy($image) ;

$new_width = 100;
$new_height = ($new_width * $height) / $width ;

$thumb = imagecreate($new_width,$new_height);



imagecopyresized($thumb,$image,0,0,0,0,$new_width, $new_height,$width,$height);

imagejpeg($thumb);
imagedestroy($image);

move_uploaded_file(imagejpeg($thumb, $directorio .$id01))