Код: Выделить всё
-application
-assets
-system
........
Мой код изменения размера выглядит следующим образом:
Код: Выделить всё
function __construct()
{
$this->load->library('image_lib');
$this->load->helper("url");
$this->load->helper('form');
}
public function resize()
{
$imgName ='939128_1523936489';
$config['image_library'] = 'gd2';
$config['source_image'] = './assets/admin/uploads/editionpages_img/'.$imgName.".jpg";
$config['new_image'] = './assets/admin/uploads/editionpages_img/'.$imgName."_new.jpg";
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = TRUE;
$config['width'] = 50;
$config['height'] = 50;
$this->load->library('image_lib', $config);
if (!$this->image_lib->resize()) {
echo $this->image_lib->display_errors();
}
$this->image_lib->clear();
}
Подробнее здесь: https://stackoverflow.com/questions/498 ... odeigniter
Мобильная версия