$this->load->library('image_lib');
for ($i = 0; $i < count($upload_info); $i++)
{
echo $upload_info[$i]['fullname'];
$config['image_library'] = 'gd2';
$config['source_image'] = $upload_info[$i]['fullname'];
$config['new_image'] = "123123".$i.".jpg";
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = TRUE;
$config['width'] = 75;
$config['height'] = 50;
$this->image_lib->initialize($config);
$this->image_lib->resize();
$this->image_lib->clear();
} |