php基于CodeIgniter实现图片上传、剪切功能的方法
程序员文章站
2022-04-20 09:37:40
...
这篇文章主要为大家详细介绍了php基于CodeIgniter实现图片上传、剪切功能,具有参考价值,感兴趣的朋友可以参考一下
具体内容如下
<?php defined('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基于CodeIgniter实现图片上传、剪切功能的方法的详细内容,更多请关注其它相关文章!
上一篇: php 生成缩略图代码可自动填充空白处
下一篇: 微信公众平台Php版php开发(转)
推荐阅读
-
php简单实现批量上传图片的方法 android 批量上传图片 jquery上传图片插件 上传图片
-
基于WebUploader实现单图片和多图片上传,上传回显,编辑加载,图片删除,位置切换以及基于PhotoSwipe框架的图片预览功能
-
Ajax上传图片及先预览功能的实现方法
-
两种php实现图片上传的方法_PHP
-
KindEditor在php环境下上传图片功能集成的方法示例
-
两种php实现图片上传的方法_PHP
-
PHP批量上传图片的具体实现方法介绍.
-
PHP批量上传图片的具体实现方法介绍._PHP教程
-
php_imagick实现图片剪切、旋转、锐化、减色或增加特效的方法_PHP
-
php实现上传图片保存到数据库的方法_PHP教程