我在CI中调整图像大小时遇到问题(顺便说一句,我是CI的新手)。 所以这是我的代码:
$config['image_library'] = 'gd2';
$config['source_image'] = base_url()."/uploads/test.png";
$config['maintain_ratio'] = TRUE;
$config['width'] = 800;
$config['height'] = 600;
$config['new_image'] = base_url().'/uploads/resized.jpg';
$this->load->library('image_lib');
$this->image_lib->initialize($config);
$this->image_lib->resize();
echo $this->image_lib->display_errors();
echo $config['source_image'];
它给了我这个错误:
图像的路径不正确。您的服务器不支持 处理此类图像所需的GD功能。
我使用MAMP作为服务器,我在phpinfo上看到GD已启用。 我也尝试回应图像网址,是的,确实存在。
请帮忙。 感谢
答案 0 :(得分:3)
你必须使用相对路径,你可以试试这个
$this->load->library('image_lib');
// Set your config up
$this->image_lib->initialize($config);
// Do your manipulation
$this->image_lib->clear();
请参阅this一个