class pictest extends CI_Controller{
public function __construct()
{
parent::__construct();
$this->load->library('image_lib');
}
public function test()
{
$config['image_library'] = 'gd2';
$config['source_image'] = 'E:\\Web\\products_imgs\\index\\001-test.jpg';
$config['x_axis'] = '100';
$config['y_axis'] = '60';
$this->image_lib->initialize($config);
if (!$this->image_lib->crop())
{
echo $this->image_lib->display_errors();
}
else
{
echo 'OK';
}
}
}