$config['image_library'] = 'gd2';
$config['source_image'] = $path_server;
$config['new_image'] = $path_thumb_server;
$config['create_thumb'] = TRUE;
$config['thumb_marker'] = "";
$config['width'] = 150;
$config['height'] = 100;
$this->load->library('image_lib', $config);
/*
* TODO delete debug info
*/
if ( ! $this->image_lib->resize()){
echo $this->image_lib->display_errors();
}
$this->image_lib->clear();
$config['image_library'] = 'gd2';
$config['source_image'] = $path_server;
$config['new_image'] = $path_server;
$config['create_thumb'] = FALSE;
$config['width'] = 600;
$config['height'] = 450;
$this->image_lib->initialize($config);
if ( ! $this->image_lib->resize()){
echo $this->image_lib->display_errors();
}