Image Resize |
Maybe use this code,
if you any problem read this link bro https://stackoverflow.com/questions/1921...age-resize On view use this: foreach($results as $row) { $config['image_library'] = 'gd2'; $config['source_image'] = '/img/proizvodi/'.$row->proizvodid.'.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(); } |
Messages In This Thread |
Image Resize - by bgr06 - 11-02-2017, 08:16 PM
RE: Image Resize - by wahyualikram - 11-03-2017, 12:33 AM
RE: Image Resize - by ribhi21 - 11-03-2017, 09:31 AM
|