视频1 视频21 视频41 视频61 视频文章1 视频文章21 视频文章41 视频文章61 推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37 推荐39 推荐41 推荐43 推荐45 推荐47 推荐49 关键词1 关键词101 关键词201 关键词301 关键词401 关键词501 关键词601 关键词701 关键词801 关键词901 关键词1001 关键词1101 关键词1201 关键词1301 关键词1401 关键词1501 关键词1601 关键词1701 关键词1801 关键词1901 视频扩展1 视频扩展6 视频扩展11 视频扩展16 文章1 文章201 文章401 文章601 文章801 文章1001 资讯1 资讯501 资讯1001 资讯1501 标签1 标签501 标签1001 关键词1 关键词501 关键词1001 关键词1501 专题2001
php结合imgareaselect实现图片裁剪_jquery
2020-11-27 21:40:23 责编:小采
文档
 引用CSS

/js/jquery.imgareaselect-0.9.10/css/imgareaselect-default.css 

引用js



html


 


 

 

jQuery代码



确定裁剪



服务器端php代码

public function actionCrop($src_path,$x1,$x2,$y1,$y2){
 $pic =$src_path;

 $width = $x2-$x1;
 $height = $y2-$y1;

 $type=exif_imagetype($pic); //判断文件类型
 $support_type=array(IMAGETYPE_JPEG , IMAGETYPE_PNG , IMAGETYPE_GIF);
 if(!in_array($type, $support_type,true)) {
 echo "this type of image does not support! only support jpg , gif or png";
 exit();
 }
 switch($type) {
 case IMAGETYPE_JPEG :
 $image = imagecreatefromjpeg($pic);
 break;
 case IMAGETYPE_PNG :
 $image = imagecreatefrompng($pic);
 break;
 case IMAGETYPE_GIF :
 $image = imagecreatefromgif($pic);
 break;
 default:
 echo "Load image error!";
 exit();
 }

 $copy = $this->PIPHP_ImageCrop($image, $x1, $y1, $width, $height);//裁剪

 imagejpeg($copy, $src_path); //替换新图
 return ['result'=>'Success','path'=>$src_path]; //返回新图地址
 }
 function PIPHP_ImageCrop($image, $x, $y, $w, $h){
 $tw = imagesx($image); 
 $th = imagesy($image); 

 if ($x > $tw || $y > $th || $w > $tw || $h > $th) return FALSE; 

 $temp = imagecreatetruecolor($w, $h); 
 imagecopyresampled($temp, $image, 0, 0, $x, $y, $w, $h, $w, $h); 
 return $temp; 
 }

以上所述就是本文的全部内容了,希望大家能够喜欢。

下载本文
显示全文
专题