07-14-2007, 01:24 PM
[eluser]brigham[/eluser]
I can't seem to get the image_lib library to generate a thumbnail. The following code generates an error message:
...and the error message is
Thanks,
Brigham
I can't seem to get the image_lib library to generate a thumbnail. The following code generates an error message:
Code:
function test()
{
// Create thumbnail
$config['image_library'] = 'GD';
$config['source_image'] = './public/images/avatars/brigham.jpg';
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = TRUE;
$config['width'] = 50;
$config['height'] = 50;
$this->load->library('image_lib', $config);
$this->image_lib->resize();
}
Quote:A PHP Error was encounteredWhat am I doing wrong? I've tried specifying 'dest_image' and 'new_image' in the config file, but the same error appears.
Severity: Notice
Message: Undefined property: CI_Image_lib::$dest_image
Filename: libraries/Image_lib.php
Line Number: 476
Thanks,
Brigham