toxic

备忘录

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
/**
  * 剪裁头像
  */
 public function facecrop(){
  $sourcefilename = $this -> input -> post('crop_filename');
  $sourcepath = UPLOADPATH.'/images/day_'.date('ymd').'/'.$sourcefilename;
  $x = $this -> input -> post('x');
  $y = $this -> input -> post('y');
  $w = $this -> input -> post('w');
  $h = $this -> input -> post('h');
  
  $config['image_library'] = 'gd2';
     $config['x_axis'] = $x;
        $config['y_axis'] = $y;
  $config['width'] = $w;
  $config['height'] = $h;
  $config['source_image'] = $sourcepath;
  $config['maintain_ratio'] = false;
  
  $this->load->library('Image_lib', $config);
  $r = $this->image_lib->crop();
  echo $r;
 }

 

posted on 2012-08-13 15:54  toxic  阅读(193)  评论(0编辑  收藏  举报