photoclip 移动端多图片裁剪及上传+layer弹出层







 
        	
上传企业logo
上传营业执照
//会员头像上传 public function companyimg(){ $result=['status'=>0,'msg'=>'']; $img_base64=input('post.file'); $path = "./uploadfile/comimg/"; if(!is_writable($path)){ $result['msg']='目录没有写权限!'; goto _end; } if (preg_match('/^(data:\s*image\/(\w+);base64,)/', $img_base64, $img)){ $src=$path . time() . rand(1000000, 9999999); $pic_url =$src.'.jpg'; if (file_put_contents($pic_url, base64_decode(str_replace($img[1], '', $img_base64)))){ $image=Image::open($pic_url); $image1=Image::open($pic_url); $image->thumb(800,800)->save($pic_url,'jpg',100); $image1->thumb(120, 120)->save($src.'.png','png'); clearstatcache(); $result=['status'=>1,'msg'=>'图片上传成功!','url'=>substr($src.'.jpg',1)]; }else{ $result=['status'=>0,'msg'=>'图片上传失败!']; } } _end: exit(json_encode($result)); }


你可能感兴趣的:(JQ)