Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/09/2007, 15:32
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: ¡Subir o no subir! (imágenes)

En lugar de gastar recursos en escribir en el disco duro te recomiendo lo siguiente:
Código PHP:
$datosfoto $_SESSION["imagenes"][$_GET["n"]];
$imagen imagecreatefromstring($datosfoto);
ob_start();
imagePng($imagen);
$foto ob_get_clean(); 
Saludos.