这是我第一次很好地使用 imagemagick,我试图裁剪图像,但问题是我得到了这个错误:
图像处理失败。请验证您的服务器是否支持所选协议以及您的图像库的路径是否正确。
这是我的代码
$config['image_library'] = 'imagemagick';
$config['library_path'] = '/usr/bin';
$config['source_image'] ="./assets/profile_pic.jpg";
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = FALSE;
$config['x_axis'] = 300;
$config['y_axis'] = 300;
//$config['width'] = 650;
//$config['height'] = 353;
$config['new_image'] = "./assets/profile_pic.jpg";
$this->load->library('image_lib', $config);
//$this->image_lib->crop();
$this->image_lib->initialize($config);
if (!$this->image_lib->crop()){
echo $this->image_lib->display_errors();
}
那么我应该下载 imagemagick 或类似的东西吗?
谢谢各位!