Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/02/2006, 16:21
Avatar de vITTY
vITTY
 
Fecha de Ingreso: enero-2006
Mensajes: 139
Antigüedad: 18 años, 9 meses
Puntos: 1
lo agrego yo ke justo lo tengo a mano...

Código PHP:
if(!($this->error)) 
      {
        
## LOAD OUR IMAGE WITH CORRECT FUNCTION
        
$this->type strtolower(end(explode('.'$filename)));
        if (
$this->type == 'jpg' || $this->type == 'jpeg'
        {
          
$this->img = @imagecreatefromjpeg($file);
        } 
        else if (
$this->type == 'png'
        {
          
$this->img = @imagecreatefrompng($file);
        } 
        else if (
$this->type == 'gif'
        {
          
$this->img = @imagecreatefrompng($file);
        }
        
## SET OUR IMAGE VARIABLES
        
$this->imagesx($this->img);
        
$this->imagesy($this->img);
      }