Part of the EllisLab Network
   
 
Help with thumbnail generation
Posted: 14 July 2007 03:24 PM   [ Ignore ]  
Summer Student
Avatar
Total Posts:  11
Joined  03-14-2007

I can’t seem to get the image_lib library to generate a thumbnail.  The following code generates an error message:

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();
    

...and the error message is

A PHP Error was encountered
Severity: Notice
Message: Undefined property: CI_Image_lib::$dest_image
Filename: libraries/Image_lib.php
Line Number: 476

What am I doing wrong?  I’ve tried specifying ‘dest_image’ and ‘new_image’ in the config file, but the same error appears.
Thanks,
Brigham

Profile