php,imageresizing
        Posted  
        
            by tismon
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by tismon
        
        
        
        Published on 2010-05-28T05:55:44Z
        Indexed on 
            2010/05/28
            6:01 UTC
        
        
        Read the original article
        Hit count: 245
        
function rezizecode()
     {   
     $config['image_library'] = 'gd2';
     $config['source_image']    = 'system/application/images/manu.jpg';
     $config['create_thumb'] = TRUE;
    $config['maintain_ratio'] = TRUE;
    $config['width']= 25;
    $config['height']= 30;
    $this->load->library('image_lib', $config); 
    $this->image_lib->resize();
     } 
using this code image resizing is not working ?
© Stack Overflow or respective owner