05-11-2012, 07:45 AM
[eluser]alexaaaaaaaaaa[/eluser]
Hi all i have this code but it's not working like i want and i know there's something easy to find and fix
here's my code
but it's not cropping right....can you help me?
Hi all i have this code but it's not working like i want and i know there's something easy to find and fix
here's my code
Code:
$x = '9';
$y = '-229';
$data = $this->upload->data();
$this->load->library('image_lib');
$config['image_library'] = 'gd2';
$config['source_image'] = 'uploads/111/05/'.$data['file_name'];
$config['new_image'] = 'uploads/111/05/rsz/'.$data['file_name'];
$config['maintain_ratio'] =FALSE;
$config['y_axis'] = $y;
$config['x_axis'] = '9';
$config['height'] = '183'-$y;
$config['width'] = '697';
$this->image_lib->initialize($config);
$this->image_lib->resize();
$this->image_lib->crop();