Welcome Guest, Not a member yet? Register   Sign In
image resize library issues
#1

[eluser]bennyhill[/eluser]
I am using the image resize upon upload library. After the picture is resized, the quality is really bad. It's pixelated and sometimes the colors are off.
Here is my config array:

Code:
$config['upload_path'] = './productImages/';
        $config['allowed_types'] = 'gif|jpg|png';
        $config['max_size'] = '200';
        $config['remove_spaces'] = true;
        $config['overwrite'] = false;

And then I have a resize function which is called from the upload function:

Code:
function resizeImage($image)
  {
    $config['image_library'] = 'gd2';
    $config['source_image'] = "./productImages/".$image;
    $config['width'] = 100;
    $config['height'] = 100;
    $config['master_dim'] = 'width';
    
    $this->load->library('image_lib', $config);
    if(! $this->image_lib->resize()){
        echo $this->image_lib->display_errors();
    }
    
  }
Anything I can add/change/remove here to make the resized images not lose their quality?


Messages In This Thread
image resize library issues - by El Forum - 03-21-2009, 08:52 AM
image resize library issues - by El Forum - 03-21-2009, 09:00 AM
image resize library issues - by El Forum - 03-21-2009, 09:05 AM
image resize library issues - by El Forum - 03-23-2009, 02:00 PM
image resize library issues - by El Forum - 03-29-2009, 06:06 PM
image resize library issues - by El Forum - 03-29-2009, 06:26 PM
image resize library issues - by El Forum - 03-30-2009, 07:17 AM
image resize library issues - by El Forum - 03-30-2009, 07:23 AM
image resize library issues - by El Forum - 03-30-2009, 07:43 AM
image resize library issues - by El Forum - 03-30-2009, 08:05 AM
image resize library issues - by El Forum - 03-31-2009, 05:40 PM
image resize library issues - by El Forum - 03-31-2009, 05:45 PM
image resize library issues - by El Forum - 03-31-2009, 06:00 PM
image resize library issues - by El Forum - 03-31-2009, 06:23 PM
image resize library issues - by El Forum - 03-31-2009, 07:00 PM
image resize library issues - by El Forum - 04-02-2009, 07:30 AM
image resize library issues - by El Forum - 04-02-2009, 08:18 AM
image resize library issues - by El Forum - 03-23-2010, 06:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB