$config['image_library'] = 'gd2';
$config['source_image'] = '/data/20130326070023_92872.jpg';
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = TRUE;
$config['width'] = 75;
$config['height'] = 50;
$this->load->library('image_lib', $config);
$this->image_lib->resize();
$this->image_lib->resize();
if ( ! $this->image_lib->resize())
{
echo $this->image_lib->display_errors();
}
运行后提示
The path to the image is not correct. Your server does not support the GD function required to process this type of image. Your server does not support the GD function required to process this type of image. Your server does not support the GD function required to process this type of image.
如果把$config['source_image'] 前面的“/”去掉就可以,这是怎么一回事?
|