Ben bazı sorun CodeIgniter'ı 1.7 kullanarak görüntüleri manipüle yaşıyorum. Aşağıdaki kod ile görüntü doğru yüklenir. Ne yazık ki, yeni bir görüntü yapmış, sonra modifiye olmak yerine; Mevcut görüntü değiştirilir. Herhangi bir yardım?
//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();