Welcome Guest, Not a member yet? Register   Sign In
Codeigniter Crop
#8

[eluser]alexaaaaaaaaaa[/eluser]
Maybe i didn't explain myself well

I have this image ok like 1025x 400 that i upload after i upload i can move it around and then i have the x and y coords to crop, it doesn't have to be square crop it must be 697x183
and crop the image...
So first we resize the pic to 697x183 and then we crop where x = 9 and y = -255 now i use this code

Code:
$x = '9';
   $y = '-369';
   $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['height'] = '183';
   $config['width'] = '697';
   $config['y_axis'] = $y;
         $config['x_axis'] = 9;
   $this->image_lib->initialize($config);  
   $this->image_lib->resize();
   $this->image_lib->crop();
   $this->image_lib->clear();
ps. just to make sure we are on the same page here's a print screen


http://www.picz.ro/show-image.php?id=505...aa2bc1bdb1


Messages In This Thread
Codeigniter Crop - by El Forum - 05-11-2012, 07:45 AM
Codeigniter Crop - by El Forum - 05-11-2012, 08:39 AM
Codeigniter Crop - by El Forum - 05-11-2012, 09:08 AM
Codeigniter Crop - by El Forum - 05-11-2012, 09:33 AM
Codeigniter Crop - by El Forum - 05-11-2012, 11:57 AM
Codeigniter Crop - by El Forum - 05-11-2012, 12:26 PM
Codeigniter Crop - by El Forum - 05-11-2012, 12:31 PM
Codeigniter Crop - by El Forum - 05-12-2012, 12:10 AM
Codeigniter Crop - by El Forum - 05-12-2012, 03:35 AM
Codeigniter Crop - by El Forum - 05-12-2012, 03:46 AM
Codeigniter Crop - by El Forum - 05-12-2012, 03:50 AM
Codeigniter Crop - by El Forum - 05-12-2012, 04:51 AM
Codeigniter Crop - by El Forum - 05-12-2012, 05:26 AM



Theme © iAndrew 2016 - Forum software by © MyBB