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

求教 image类

[复制链接]
发表于 2011-11-18 06:49:58 | 显示全部楼层 |阅读模式
我想把我数据里面 actions(表格)中logo(存储图片地址)这一列相关的图片全部设置成300*315的大小模式
不过我不知道如何设置$imagesoure
代码
$this->data['rows'] = $this->action_model->getArt();//rows 就是actions表格里面全部的数据
$imagesoure = $this->data['rows.logo'];//这一行怎么写?
                $config['image_library'] = 'gd2';
        $config['source_image'] = $imagesoure;
        $config['create_thumb'] = TRUE;
        $config['maintain_ratio'] = TRUE;
        $config['width'] =300;
        $config['height'] =315;
        $this->load->library('image_lib', $config);
   if ( ! $this->image_lib->resize())
   {
    echo $this->image_lib->display_errors();
   }
   $this->image_lib->display_errors('abc<p>', '</p>');
        }
 楼主| 发表于 2011-11-21 09:31:05 | 显示全部楼层
沙发

本版积分规则