![]() |
Gd2 problem with resize? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Gd2 problem with resize? (/showthread.php?tid=60393) |
Gd2 problem with resize? - El Forum - 03-16-2014 [eluser]Pana_Ruplahlava[/eluser] Hi, im using gd2 on my local home server to first just resize and then make thumbnail of picture. But ony work just the first resize. Is it problem of my server, or my code is somehow broken? Im getting: Your server does not support the GD function required to process this type of image Output should be 2 images, one with thumb marker... Code: $config['image_library'] = 'gd2'; Gd2 problem with resize? - El Forum - 03-17-2014 [eluser]letsgolee[/eluser] I think you have wrong code: Wrong: Code: $this->load->initialize($config); Correct: Code: $this->image_lib->initialize($config); |