Welcome Guest, Not a member yet? Register   Sign In
Resizing an uploaded image
#6

[eluser]dmiden[/eluser]
Code:
function avatar3($upload_data){
    
        $config[] = 'GD2';
        $config['source_image'] = "./avatars/".$upload_data['file_name'];
        $config['new_image'] = 'thisisatest.jpg';
        $config['maintain_ratio'] = TRUE;
        $config['height'] = 60;
        $config['width'] = 60;
        $config['quality'] = 100;
            
        $this->load->library('image_lib', $config);
        $this->image_lib->resize();
        
}

Change $config[] = 'GD2';
To $config['image_library'] = 'gd2';

Also try changing $config['maintain_ratio'] to false.


Messages In This Thread
Resizing an uploaded image - by El Forum - 09-13-2008, 11:13 AM
Resizing an uploaded image - by El Forum - 09-13-2008, 11:30 AM
Resizing an uploaded image - by El Forum - 09-15-2008, 08:52 AM
Resizing an uploaded image - by El Forum - 09-15-2008, 10:22 AM
Resizing an uploaded image - by El Forum - 09-15-2008, 12:24 PM
Resizing an uploaded image - by El Forum - 09-20-2008, 08:31 AM
Resizing an uploaded image - by El Forum - 12-06-2008, 09:46 PM



Theme © iAndrew 2016 - Forum software by © MyBB