用户
 找回密码
 入住 CI 中国社区
搜索
查看: 1105|回复: 0
收起左侧

[HELP] 缩略图制作成功后服务器上没有缩略图文件

[复制链接]
发表于 2013-3-28 11:54:34 | 显示全部楼层 |阅读模式
   缩略图制作成功后但是服务器上没有缩略图文件
求大神 谢谢了
  public function do_thumb($path)
     {
            $jpg = strrchr($path,'.');
            $name = strrev(substr(strrchr(strrev($path),'.'),1));
            $new = '_thuumb'.$jpg;

            $config['image_library'] = 'gd2';
            $config['source_image'] = $path;
            $config['new_image'] = $new;
            $config['create_thumb'] = TRUE;
            $config['maintain_ratio'] = TRUE;
            $config['width'] = 100;
            $config['height'] = 150;

            $this->load->library('image_lib', $config);

            if($this->image_lib->resize()){

                    return $name.$new;

            }else{
                echo $this->image_lib->display_errors();
            }
     }


本版积分规则