[eluser]Atharva[/eluser]
You will load the lib outside the loop without $config array
Code:
$this->load->library('image_lib');
And in loop, you will set the $config options with
Code:
$this->image_lib->initialize($config);
Edit: By outside, I meant before loop.