Posted by: pvibeesh on: March 2, 2009
$this->load->library(“image_lib/”,$config);
for loop:
$this->image_lib->initialize($config);
end for loop
When using this library repeatedly it will initialize the image properties at once only.
It uses the existing instance for the remaining calls
To solve this problem call the initalize fucnction manually.
Thank you very much, that solved my multiple resize problem too!
August 29, 2009 at 10:01 am
you are a lifesaver, thank you so much.