crop-demo.php 458 B

1234567891011121314151617181920
  1. <?php
  2. if ($_SERVER['REQUEST_METHOD'] == 'POST')
  3. {
  4. $targ_w = $targ_h = 150;
  5. $jpeg_quality = 90;
  6. $src = './demos/demo_files/image5.jpg';
  7. $img_r = imagecreatefromjpeg($src);
  8. $dst_r = ImageCreateTrueColor( $targ_w, $targ_h );
  9. imagecopyresampled($dst_r,$img_r,0,0,intval($_POST['x']),intval($_POST['y']), $targ_w,$targ_h, intval($_POST['w']),intval($_POST['h']));
  10. header('Content-type: image/jpeg');
  11. imagejpeg($dst_r,null,$jpeg_quality);
  12. exit;
  13. }
  14. ?>