Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/08/2008, 07:20
bruney3
 
Fecha de Ingreso: mayo-2008
Mensajes: 17
Antigüedad: 16 años
Puntos: 0
Respuesta: Pregunta sencilla sobre GD

Bueno, solucionado.

Código PHP:
if (!extension_loaded('gd'))
     return 
false;            //no esta instalada la libreria GD
else
     {
             if ((
imagetypes() & IMG_JPG)!=true)
                  return 
false;    //no esta soportado el tratamiento con JPEG
         
else 
         {    

               
CODIGO PARA IMAGEN
                 
...

     } 


Por si alguien más lo necesitara.