|
CI2.0生成缩略图有问题,急求助,在线等。
PHP复制代码
$config['image_library'] = 'gd2';
$config['source_image'] = './data/attachment/product/'.date("Ymd",time())."/".$imgname.".jpg";
$newimg_path = './data/attachment/product/'.date("Ymd",time())."/thumb";
if(!file_exists($newimg_path))
{
@mkdir($newimg_path,0700);
}
$config['new_image'] = $newimg_path."/".$imgname.'.jpg';
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = TRUE;
$config['width'] = 100;
$config['height'] = 100;
$this->load->library('image_lib',$config);
if(!$this->image_lib->resize()){
echo $this->image_lib->display_errors('<p>','<p>');
}
复制代码
生成的缩略图不成功,没有生成缩略图。但是图片已经上传好了。
|
|