php中文网怎么修改头像,thinkphp 头像上传在线剪切编辑问题 (使用美图秀秀头像编辑器组件)...

用的tp3.1,想用美图秀秀开放的头像编辑组件来编辑头像,可是不清楚该怎么用,thinkPHP中那个头像上传的接口怎么写,写在哪里,

下面是美图秀秀开放的示例 (http://open.web.meitu.com/products/#M4)

美图WEB开放平台

美图秀秀

回复讨论(解决方案)

未搞过。如搞好分享一下。

jquery.Jcrop插件/** * 裁剪图片 * @return [type] [description] */public function cutpic(){if(IS_POST){$targ_w = $_POST['w'];$targ_h = $_POST['h'];$pos_x = $_POST['x'];$pos_y = $_POST['y'];$pos_sw = $_POST['sw'];//选区宽$jpeg_quality = 90;$id = init_base64_decode($this->_post('imgid'));if(!$id) exit;$src = M('weipai_images')->where(array('id'=>$id))->getField('PicUrl');$sf =ltrim($src,'http://'.$_SERVER['HTTP_HOST'].__ROOT__.'/');$o_size = getimagesize($sf);$pct = ($o_size[0]>$o_size[1]?$o_size[1]:$o_size[0])/$pos_sw;if($pct!=1){$targ_w*=$pct;$targ_h*=$pct;$pos_x*=$pct;$pos_y*=$pct;}$img_r = imagecreatefromjpeg($src);$dst_r = ImageCreateTrueColor( $targ_w, $targ_h );imagecopyresampled($dst_r,$img_r,0,0,$pos_x,$pos_y,$targ_w,$targ_h,$targ_w,$targ_h);header('Content-type: image/jpeg');imagejpeg($dst_r,$sf,$jpeg_quality);// 释放内存imagedestroy($dst_r);redirect(U('Index/cutpicok',array('id'=>$id)));}else{$id = $this->_get('id');if(!$id) exit;$data = M('weipai_images')->where(array('id'=>$id))->find();if(preg_match("/Public\/Uploads\/medias/",$data['PicUrl'])==false){$sf = saveMedia($data['PicUrl']);$sf = 'http://'.$_SERVER['HTTP_HOST'].__ROOT__.'/'.ltrim($sf,'./');M('weipai_images')->where(array('id'=>$id))->save(array('PicUrl'=>$sf));$data['PicUrl'] = $sf;}$this->assign('data',$data);$this->display();}}

新建一个模版: face.html

模版中配置:xiuxiu.setUploadURL("处理上传图片的方法路径");

xiuxiu.setUploadDataFieldName("上传元素的名称,用来接值")

下面不是有服务器端的示例文档吗

未搞过。如搞好分享一下。

我做过的实例 去下载吧。

http://download.csdn.net/detail/h472591847/7980115

未搞过。如搞好分享一下。

我做过的实例 去下载吧。

http://download.csdn.net/detail/h472591847/7980115 谢谢你了

未搞过。如搞好分享一下。快去看看楼下的吧

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值