国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > PHP > 正文

php基于CodeIgniter實現圖片上傳、剪切功能

2024-05-04 23:45:59
字體:
來源:轉載
供稿:網友
這篇文章主要為大家詳細介紹了php基于CodeIgniter實現圖片上傳、剪切功能,具有參考價值,感興趣的朋友可以參考一下
 

本文實例為大家分享了codeigniter 圖片上傳、剪切,控制器類,供大家參考,具體內容如下

<?phpdefined('BASEPATH') OR exit('No direct script access allowed');class Index extends MY_Controller { function __construct(){    parent::__construct();    $this->load->helper(array('form', 'url'));  }  /**   * 首頁   */  public function index() {    $this->load->view('upload_form', array('error' => ' ' ));  }     public function do_upload()  {    $config['upload_path']   = './data/uploads/';    $config['allowed_types']  = 'gif|jpg|png';    $config['max_size']   = 100;    $config['max_width']    = 1024;    $config['max_height']    = 768;    $this->load->library('upload', $config);    if ( ! $this->upload->do_upload('userfile'))    {      $error = array('error' => $this->upload->display_errors());      $this->load->view('upload_form', $error);    }    else    {      $data = array('upload_data' => $this->upload->data());            $this->load->library('image_lib');         list($width, $height) = getimagesize($data['upload_data']['full_path']);   $config['image_library'] = 'gd2';   $config['source_image'] = $data['upload_data']['full_path'];   $config['maintain_ratio'] = TRUE;   if($width >= $height)   {     $config['master_dim'] = 'height';   }else{     $config['master_dim'] = 'width';   }   $config['width'] = 180;   $config['height'] = 180;   $this->image_lib->initialize($config);   $this->image_lib->resize();    $config['maintain_ratio'] = FALSE;   if($width >= $height)   {     $config['x_axis'] = floor(($width * 180 / $height - 180)/2);   }else{     $config['y_axis'] = floor(($height * 180 / $width - 180)/2);   }   $this->image_lib->initialize($config);   $this->image_lib->crop();         $this->load->view('upload_success', $data);    }  }}

 

以上就是本文的全部內容,希望對大家學習php程序設計有所幫助。



注:相關教程知識閱讀請移步到PHP教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 洛扎县| 海淀区| 贵州省| 平南县| 青铜峡市| 潞西市| 广平县| 河南省| 贡山| 奉贤区| 大城县| 龙岩市| 吉安市| 庆云县| 梅河口市| 霍山县| 景谷| 新邵县| 垣曲县| 淳化县| 龙里县| 长春市| 临武县| 和顺县| 鹤庆县| 蓝田县| 昭平县| 文登市| 长武县| 麟游县| 淳化县| 阿克陶县| 昌宁县| 阆中市| 昭通市| 东明县| 日照市| 大田县| 永嘉县| 嘉荫县| 兰坪|