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

[eluser]the_unforgiven[/eluser]
Hi guys,

I currently have this code which uploads fine to the server folder in the config but i need to resize it them place into thumbs folder with a unqiue name, so can someone adviose how and best way to do it based on my code please?

Code:
function _do_upload_file()
{
     //upload path and config
  $config['upload_path']   = './assets/uploads/userfiles/';
     $config['allowed_types'] = 'png|jpg|gif|jpeg';
     $config['max_size'] = '3000';

     $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
     {
   $filedata = $this->upload->data();
   $this->filename = $filedata['file_name'];
  
         return TRUE;
  }
  

}


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