Code :
 Header("Content-type: image/jpg" );  $x1    = $_GET['x1']; $x2    = $_GET['x2']; $y1    = $_GET['y1']; $y2    = $_GET['y2']; $image = "../../../test/ups/avat/0.jpg"; $src_im = ImageCreateFromJpeg($image); $src_w = $size[0]; $src_h = $size[1]; $dst_w = 120;  $dst_h = 120; $dst_im = ImageCreateTrueColor($dst_w,$dst_h); ImageCopyResampled($dst_im,$src_im,"$x1","$x2","$y1","$y2",$dst_w,$dst_h,$src_w,$src_h); ImageJpeg($dst_im); ImageDestroy($dst_im); 
 
  |