Ver Mensaje Individual
  #6 (permalink)  
Antiguo 06/07/2009, 22:00
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
Respuesta: problema redimencionador de imagenes

Pues como lo estas cargando directo desde un <img> puedes usar algo asi:
Código php:
Ver original
  1. if ($height < $max_height) {
  2.        readfile($the_file);
  3. } else {
  4.        redimensiona($the_file);
  5. }

Saludos.