我上传了一张图片,我想将其重新调整为 200x200、70x70、40x40 的大小,每次调整大小时,它只会给我 2 张原始图片和 1 张拇指图片 200x200。我该怎么做呢?这是我的代码:
public function resize($path, $file)
{
$data = array(200, 70, 40);
foreach($data as $d) :
$config['image_library'] = 'gd2';
$config['source_image'] = $path;
$config['create_thumb'] = true;
$config['maintain_ratio'] = true;
$config['width'] = $d;
$config['height'] = $d;
$config['new_image'] = './uploads/' . $d . $file;
$this->load->library('image_lib', $config);
$this->image_lib->resize();
$this->image_lib->clear();
endforeach;
}