Código PHP:
<?php
$image = $_GET['image'] ;
$newwidth = $_GET['newwidth'];
$newheight = $_GET['newheight'];
$height = $_GET['height'];
$width = $_GET['width'];
$src = @imagecreatefromjpeg("$image");
$im = imagecreate($newwidth,$newheight);
ImageCopyResized($im,$src,0,0,0,0,$newwidth,$newheight,$width,$height);
imagejpeg($im, '',85);
imagedestroy($im);
?>
Ahora si funciono la solucion estaba en casa, en
www.maestrosdelweb.com habia un tutorial muy bueno
con este codigo si funciona con el Gd 1.6
Gracias Cluster por incentivarme y a la vez enseñarnos a pescaR!!