使用Codeigniter的图像裁剪库获取新图像

时间:2014-05-07 02:50:25

标签: php codeigniter imagelibrary

我想获取使用Codeigniter中的图像裁剪库创建的新图像的文件名,并将其保存在mysql数据库中。

这是我目前的裁剪代码:

$data['x'] = $this->input->post('x1');
$data['y'] = $this->input->post('y1');
$data['w'] = $this->input->post('width');
$data['h'] = $this->input->post('height');

$config['image_library'] = 'gd2';
$config['source_image'] = 'assets/images/supplier_photos/'.$this->input->post('img_file');
$config['create_thumb'] = TRUE;
$config['new_image'] = './assets/images/supplier_photos/crop/'.$this->input->post('img_file');
$config['maintain_ratio'] = FALSE;
$config['width']  = $data['w'];
$config['height'] = $data['h'];
$config['x_axis'] = $data['x'];
$config['y_axis'] = $data['y'];

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

if(!$this->image_lib->crop())
{
    echo $this->image_lib->display_errors();
}  
$this->suppliers_model->update_photos();

现在我想获取创建的新图像的文件名。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

图像名称存储在img_file的POST值中。您可以通过$this->input->post('img_file')访问它(实际上您的配置将其连接到路径)。您可以将此分配给这样的变量:

$file_name = $this->input->post('img_file');

然后,您可以使用$file_name在任何地方使用实际文件名而不使用路径。