Imagelib Thourgh Class In Codeigniter

[Solved] Imagelib Thourgh Class In Codeigniter | Php Frameworks Codeigniter - Code Explorer | yomemimo.com
Question : imagelib thourgh class in codeigniter

Answered by : ankur-prajapati

$config['image_library'] = 'gd2';
$config['source_image'] = '/path/to/image/mypic.jpg';
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = TRUE;
$config['width'] = 75;
$config['height'] = 50;
$this->load->library('image_lib', $config);
$this->image_lib->resize();

Source : | Last Update : Sat, 27 Feb 21

Answers related to imagelib thourgh class in codeigniter

Code Explorer Popular Question For Php Frameworks Codeigniter