Ver Mensaje Individual
  #7 (permalink)  
Antiguo 08/07/2010, 21:06
PLC8407
 
Fecha de Ingreso: marzo-2010
Mensajes: 38
Antigüedad: 14 años, 1 mes
Puntos: 0
Respuesta: problema con funcion de GD

ok al desmarcar esa opcion pude ver que no eran jpeg sino jpg y arregle el codigo y me funciono muchas gracias

<?php
$im = imagecreatefromjpeg("image.jpg");
header("Content-type: image/jpg");
imagejpeg($im);
imagedestroy($im);
?>