php-CodeIgniter中的图像处理

我在使用CodeIgniter 1.7处理图像时遇到一些麻烦.使用以下代码,可以正确上传图像. las,不是制作新图像然后进行修改;现有图像被修改.有什么帮助吗?

//Upload image first
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png|bmp';

$this->load->library('upload', $config);        
$this->upload->do_upload();

//Now fix the image
$picloc = $this->upload->data();
$picloc = $picloc['file_name'];

$thumbnail = "thumb_".$picloc;

$imagemanip['image_library'] = 'gd2';
$imagemanip['source_image'] = './uploads/'.$picloc;
$imagemanip['new_img'] = './uploads/'.$thumbnail;
$imagemanip['maintain_ratio'] = TRUE;
$imagemanip['width'] = 250;
$imagemanip['height'] = 250;

$this->load->library('image_lib', $imagemanip);

$this->image_lib->resize();

解决方法:

问题很简单,您在一行中有一个错字:

$imagemanip['new_img'] = './uploads/'.$thumbnail;

索引应该是“ new_image”,而不是“ new_img”,因此该行变为.

$imagemanip['new_image'] = './uploads/'.$thumbnail;
上一篇:php-无法在codeigniter中按类别明智地过滤数据


下一篇:php-使用CodeIgniter更新MySQL表中的行