/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function do_upload() { 'allowed_types' => 'jpg|jpeg|gif|png', 'upload_path' => $this->gallery_path, 'max_size' => 2000 ); $this->load->library('upload', $config); $this->upload->do_upload(); $image_data = $this->upload->data(); 'source_image' => $image_data['full_path'], 'new_image' => $this->gallery_path . '/thumbs', 'maintain_ration' => true, 'width' => 180, 'height' => 150 ); $this->load->library('image_lib', $config); $this->image_lib->resize(); }