GD Version 1.6.2 or higher 
 
ya descubri el problema me pide como minimo la Version 2.0 
y ahora como adaptaria el codigo para que funcione  
 Código PHP:
    <?php
 
$image = $_GET['image'] ; 
$newwidth = $_GET['newwidth'];
$newheight = $_GET['newheight'];
$height = $_GET['height'];
$width = $_GET['width'];
 
 
$src = imagecreatefromjpeg("$image");
$im = imagecreatetruecolor($newwidth,$newheight);  
imagecopyresampled($im,$src,0,0,0,0,$newwidth,$newheight,$width,$height); 
imagejpeg($im, '',85); 
imagedestroy($im); 
 
?>    
  Que solucion me aconsejan
Gracias  
