Welcome Guest, Not a member yet? Register   Sign In
image manipulation, resize adn unique name
#4

[eluser]the_unforgiven[/eluser]
write_file() helper not what i was after.

I have this code
Code:
function _do_upload_file()
{
     //upload path and config
  $config = array(
   'allowed_types' => 'jpg|jpeg|gif|png',
   'upload_path' => $this->gallery_path,
   'max_size' => 3000,
   'overwrite' => false,
      'remove_spaces' => true
  );

     $this->load->library('upload', $config);
  $this->upload->initialize($config);
  
     if (!$this->upload->do_upload())
     {
         $this->form_validation->set_message('_do_upload_file', $this->upload->display_errors());
         return FALSE;
     }
     else
     {
   $config = array(
    'image_library' => 'gd2',
    'create_thumb' => TRUE,
    'source_image' => $this->upload->upload_path.$this->upload->file_name,
    'new_image' => $this->gallery_path . '/thumbs',
    'maintain_ration' => true,
    'width' => 150,
    'height' => 100
   );
   $this->load->library('image_lib', $config);
    
   if (!$this->image_lib->resize()){
          $this->form_validation->set_message('_do_upload_file', $this->image_lib->display_errors());              
   }

  }
  

}

Which currently uploads files to assets/uploads/userfiles/imagename.jpg for example but now the code above should resize the image uploaded adn then place into a folder called thumbs inside assets/uploads/userfiles/thumbs for instance is what I have setup, can any one help me on this?

Have I missed something or done something wrong?


Messages In This Thread
image manipulation, resize adn unique name - by El Forum - 04-12-2012, 03:04 AM
image manipulation, resize adn unique name - by El Forum - 04-12-2012, 07:14 AM
image manipulation, resize adn unique name - by El Forum - 04-12-2012, 08:02 AM
image manipulation, resize adn unique name - by El Forum - 04-12-2012, 08:41 AM
image manipulation, resize adn unique name - by El Forum - 04-12-2012, 08:47 AM
image manipulation, resize adn unique name - by El Forum - 04-12-2012, 08:53 AM
image manipulation, resize adn unique name - by El Forum - 04-12-2012, 09:45 AM
image manipulation, resize adn unique name - by El Forum - 04-12-2012, 11:04 AM
image manipulation, resize adn unique name - by El Forum - 04-12-2012, 04:33 PM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 02:27 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 02:34 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 02:47 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 03:12 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 03:19 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 03:20 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 03:58 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 04:07 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 04:13 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 04:21 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 04:36 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 04:50 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 04:55 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 04:58 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 05:04 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 05:10 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 05:45 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 06:56 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 06:58 AM
image manipulation, resize adn unique name - by El Forum - 04-13-2012, 11:35 AM
image manipulation, resize adn unique name - by El Forum - 04-15-2012, 11:55 AM



Theme © iAndrew 2016 - Forum software by © MyBB