D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
public_html
/
ci_panel
/
application
/
helpers
/
Filename :
common_helper.php
back
Copy
<?php function resizeFile($source_path, $new_path, $width, $height) { # code... $CI =& get_instance(); // code... $config['image_library'] = 'gd2'; $config['source_image'] = $source_path; $config['new_image'] = $new_path; $config['create_thumb'] = TRUE; $config['maintain_ratio'] = TRUE; $config['thumb_marker'] = ''; $config['width'] = $width; $config['height'] = $height; $CI->load->library('image_lib', $config); // If we will not use this line than this function will run only once at a time. $CI->image_lib->initialize($config); $CI->image_lib->resize(); $CI->image_lib->clear(); }