アップロードした画像のサイズを 400 x 350 の比率に変更したい。これには以下のコードを使用します。
$config = array(
'image_library' => 'gd2',
'source_image' => $img_data['full_path'],
'new_image' => $this->upload_path. '/thumbs',
'maintain_ration' => FALSE,
'width' => 350,
'height' => 400
);
$this->load->library('image_lib', $config);
$this->image_lib->resize();
Codeigniter は、400 x 340 の比率で画像を提供してくれます。