Welcome Guest, Not a member yet? Register   Sign In
Image resize manipulation?
#2

[eluser]CroNiX[/eluser]
Code:
$result = array_unique($filenames);
$this->load->library('image_lib'); //don't load the library in a loop; once is enough
//resize images into thumb size and save it into thumbs folder
$config['image_library'] = 'gd2';
$config['new_image'] = '/home/xeon9/public_html/barterswapping.com/thumbs/';    
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = TRUE;
$config['width'] = 150;
$config['height'] = 100;

foreach($result as $value)
{
  //Since you are doing this in a loop, you need to reinitialize as per the user guide
  $this->image_lib->clear();
  $config['source_image'] = '/home/xeon9/public_html/barterswapping.com/photo-product/'. $value;
  
  //Initialize with the new config for this loop
  $this->image_lib->initialize($config);
  
  if ( ! $this->image_lib->resize())
  {
    echo $this->image_lib->display_errors();
  } else {
    echo 'resize done!';  
  }
}


Messages In This Thread
Image resize manipulation? - by El Forum - 06-11-2012, 10:37 AM
Image resize manipulation? - by El Forum - 06-11-2012, 12:06 PM
Image resize manipulation? - by El Forum - 06-11-2012, 05:36 PM



Theme © iAndrew 2016 - Forum software by © MyBB