当前位置:Gxlcms > PHP教程 > jQuery图片剪裁插件Jcrop示例脚本

jQuery图片剪裁插件Jcrop示例脚本

时间:2021-07-01 10:21:17 帮助过:18人阅读

<无详细内容>
  1. /**
  2. * jQuery图片剪裁插件Jcrop示例脚本
  3. * @copyright 2008 Kelly Hallman
  4. * 此处由张鑫旭翻译以及删改,使更方便理解与掌握
  5. */
  6. if ($_SERVER['REQUEST_METHOD'] == 'POST'){
  7. //$targ_w = $targ_h = 150; //保存的图片的大小
  8. $jpeg_quality = 90;
  9. $src = '../image/xuwanting.jpg';
  10. $img_r = imagecreatefromjpeg($src);
  11. $dst_r = ImageCreateTrueColor( $_POST['w'], $_POST['h'] );
  12. imagecopyresampled($dst_r,$img_r,0,0,$_POST['x'],$_POST['y'],
  13. $_POST['w'],$_POST['h'],$_POST['w'],$_POST['h']);
  14. header('Content-type: image/jpeg');
  15. imagejpeg($dst_r,null,$jpeg_quality);
  16. exit;
  17. }
  18. ?>

人气教程排行